WIKI · Error
E_WIKI_FS_OUT_OF_VAULT
Path resolved outside the configured vault root.
— · Resolution
How to recover
Avoid `..` segments. Pages must live within `workspaceVaultPath` or `projectVaultPath`.
— · The shape
What an instance looks like
throw new AgentryError({
code: 'E_WIKI_FS_OUT_OF_VAULT',
phase: 'init',
message: '…contextual message…',
context: { /* adapter-specific */ },
suggestedFix: 'Avoid `..` segments. Pages must live within `workspaceVaultPath` or `projectVaultPath`.',
docs: 'https://openagentry.dev/errors/E_WIKI_FS_OUT_OF_VAULT',
});
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-wiki-fs
-
E_WIKI_FS_NOT_FOUNDWiki page not found at the requested path. -
E_WIKI_FS_NO_PROJECT_VAULTA `project/` path was used but no `projectVaultPath` is configured. -
E_WIKI_FS_PERMISSIONFilesystem permission denied. -
E_WIKI_FS_PARSEPage frontmatter could not be parsed as YAML. -
E_WIKI_FS_SCHEMAInput failed Zod validation.