openagentry

LLM · Error

E_LLM_CLI_NOT_FOUND

The configured CLI binary was not on PATH.

Package
@openagentry/adapter-llm-cli
Category
llm

— · Resolution

How to recover

Install the CLI (`brew install claude`, etc.) or set OA_LLM_CLI_BIN to an absolute path.

— · The shape

What an instance looks like

throw new AgentryError({
  code: 'E_LLM_CLI_NOT_FOUND',
  phase: 'init',
  message: '…contextual message…',
  context: { /* adapter-specific */ },
  suggestedFix: 'Install the CLI (`brew install claude`, etc.) or set OA_LLM_CLI_BIN to an absolute path.',
  docs: 'https://openagentry.dev/errors/E_LLM_CLI_NOT_FOUND',
});

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