openagentry

CORE · Error

E_PLUGIN_NO_MANIFEST

Plugin's package.json is missing the `openagentry` manifest block.

Package
@openagentry/cli
Category
core

— · Resolution

How to recover

The package author needs to add an `openagentry` block to package.json with `type`, `category`, `id`, and `protocolVersion`.

— · The shape

What an instance looks like

throw new AgentryError({
  code: 'E_PLUGIN_NO_MANIFEST',
  phase: 'init',
  message: '…contextual message…',
  context: { /* adapter-specific */ },
  suggestedFix: 'The package author needs to add an `openagentry` block to package.json with `type`, `category`, `id`, and `protocolVersion`.',
  docs: 'https://openagentry.dev/errors/E_PLUGIN_NO_MANIFEST',
});

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