CORE · Error
E_NO_ADAPTER_FOR_CATEGORY
No adapter is registered for the requested category at runtime.
— · Resolution
How to recover
Run `agentry capabilities` to see what is registered. Add the missing adapter to `.agentry/workspace.json` and `npm install` it.
— · The shape
What an instance looks like
throw new AgentryError({
code: 'E_NO_ADAPTER_FOR_CATEGORY',
phase: 'init',
message: '…contextual message…',
context: { /* adapter-specific */ },
suggestedFix: 'Run `agentry capabilities` to see what is registered. Add the missing adapter to `.agentry/workspace.json` and `npm install` it.',
docs: 'https://openagentry.dev/errors/E_NO_ADAPTER_FOR_CATEGORY',
});
The context field carries adapter-specific
detail (HTTP status, missing env-var names, validation issues). It
never contains secret values.