HOST · Error
E_VERCEL_AUTH
Vercel token missing or rejected.
— · Resolution
How to recover
Create a token at https://vercel.com/account/tokens. Export OA_VERCEL_TOKEN.
— · The shape
What an instance looks like
throw new AgentryError({
code: 'E_VERCEL_AUTH',
phase: 'init',
message: '…contextual message…',
context: { /* adapter-specific */ },
suggestedFix: 'Create a token at https://vercel.com/account/tokens. Export OA_VERCEL_TOKEN.',
docs: 'https://openagentry.dev/errors/E_VERCEL_AUTH',
});
The context field carries adapter-specific
detail (HTTP status, missing env-var names, validation issues). It
never contains secret values.
— · See also
Related codes from @openagentry/adapter-host-vercel
-
E_VERCEL_NOT_FOUNDVercel project, deployment, or domain not found. -
E_VERCEL_PERMISSIONThe Vercel token lacks permission for the operation. -
E_VERCEL_INVALIDVercel rejected the input. -
E_VERCEL_RATE_LIMITVercel API rate limit reached. -
E_VERCEL_NETWORKNetwork failure reaching Vercel. -
E_VERCEL_UPSTREAMVercel returned a non-2xx HTTP status. -
E_VERCEL_NO_GIT_LINKProject has no git source linked — deploy cannot proceed. -
E_VERCEL_BAD_STATEProject is in a state that doesn't accept this operation.