openagentry

CORE · Error

E_PLUGIN_NOT_FOUND

A plugin declared in `.agentry/workspace.json` is not installed in the workspace.

Package
@openagentry/cli
Category
core

— · Resolution

How to recover

Run `npm install <package>` from the workspace root. Verify the package name matches workspace.json exactly.

— · The shape

What an instance looks like

throw new AgentryError({
  code: 'E_PLUGIN_NOT_FOUND',
  phase: 'init',
  message: '…contextual message…',
  context: { /* adapter-specific */ },
  suggestedFix: 'Run `npm install <package>` from the workspace root. Verify the package name matches workspace.json exactly.',
  docs: 'https://openagentry.dev/errors/E_PLUGIN_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/cli