WIKI · Error
E_WIKI_FS_NO_PROJECT_VAULT
A `project/` path was used but no `projectVaultPath` is configured.
— · Resolution
How to recover
Pass `projectVaultPath` when constructing the adapter, or use `workspace/` paths only.
— · The shape
What an instance looks like
throw new AgentryError({
code: 'E_WIKI_FS_NO_PROJECT_VAULT',
phase: 'init',
message: '…contextual message…',
context: { /* adapter-specific */ },
suggestedFix: 'Pass `projectVaultPath` when constructing the adapter, or use `workspace/` paths only.',
docs: 'https://openagentry.dev/errors/E_WIKI_FS_NO_PROJECT_VAULT',
});
The context field carries adapter-specific
detail (HTTP status, missing env-var names, validation issues). It
never contains secret values.
— · See also