LLM · Error
E_LLM_CLI_PARSE
Could not parse the CLI's output as text/JSON.
— · Resolution
How to recover
Likely a CLI version skew — pin OA_LLM_CLI_BIN to a known version, or file an issue.
— · The shape
What an instance looks like
throw new AgentryError({
code: 'E_LLM_CLI_PARSE',
phase: 'init',
message: '…contextual message…',
context: { /* adapter-specific */ },
suggestedFix: 'Likely a CLI version skew — pin OA_LLM_CLI_BIN to a known version, or file an issue.',
docs: 'https://openagentry.dev/errors/E_LLM_CLI_PARSE',
});
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-llm-cli
-
E_LLM_CLI_AUTHThe CLI binary refused authentication or has no credentials configured. -
E_LLM_CLI_NOT_FOUNDThe configured CLI binary was not on PATH. -
E_LLM_CLI_NONZEROThe CLI exited with non-zero status. -
E_LLM_CLI_TIMEOUTThe CLI subprocess exceeded its timeout. -
E_LLM_CLI_SCHEMAInput failed Zod validation.