WIKI · Error
E_WIKI_FS_NOT_FOUND
Wiki page not found at the requested path.
— · Resolution
How to recover
Use `list()` to see available pages. Paths require `workspace/` or `project/` prefix.
— · The shape
What an instance looks like
throw new AgentryError({
code: 'E_WIKI_FS_NOT_FOUND',
phase: 'init',
message: '…contextual message…',
context: { /* adapter-specific */ },
suggestedFix: 'Use `list()` to see available pages. Paths require `workspace/` or `project/` prefix.',
docs: 'https://openagentry.dev/errors/E_WIKI_FS_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/adapter-wiki-fs
-
E_WIKI_FS_OUT_OF_VAULTPath resolved outside the configured vault root. -
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.