Autonomous upkeep specialist. Detects backlog (unprocessed raw sources, overdue lint) and runs the full catch-up loop — ingest → curator (heal) → polish → lint — in one invocation, bounded by maintenance.maxPerRun and git-checkpointed throughout. Dispatched by the orchestrator when maintenance.enabled and a backlog…
Guided first-run executor. Walks a brand-new user from a fresh project to a working, queryable wiki — health check → scaffold → add a source → ingest (git-checkpointed auto-heal) → first cited answer — one step at a time, with a plain-language explanation after each. Invoked by the claude-wiki-pages-orchestrator-agent…
Top-level orchestrator for /claude-wiki-pages:wiki. Probes vault state, then dispatches to the right specialist (init wizard, ingest pipeline, lint-fix, or analyst). Owns routing; specialists must not re-probe state. Invoked by the /claude-wiki-pages:wiki slash command. Power users can still call the specialist agents…
Tail-of-write specialist that keeps the Obsidian-side experience in sync after every ingest or curator pass. Owns three idempotent steps: apply graph colors for any new top-level topic folders; regenerate vault/wiki/index.md from per-folder folder notes ( / .md) with current page counts; reconcile every folder note's…
Complete the wiki — no empty pages, no dangling [[links]], graph clustered around the core topics. Stages repo sources, ingests, authors hub pages, resolves every dangling link, enriches, then heals + verifies.
Runs after a tool call finishes for Write, Edit and MultiEdit tool calls, executing post-wiki-write.sh and post-ingest-summary.sh via bash (2 commands). From odere-pro/claude-wiki-pages-plugin.
Runs when a subagent finishes, executing subagent-lint-gate.sh, subagent-ingest-gate.sh, subagent-tree-gate.sh and subagent-commit-gate.sh via bash (4 commands). From odere-pro/claude-wiki-pages-plugin.
The five operating modes (Query, Dashboard, Document Compile, Extract, Challenge) and the two write-gates for the claude-wiki-pages analyst. Documents each mode's procedure, output shape, and metric catalog, plus the dashboard/synthesis approval gates, so the analyst agent can run a mode without inlining the detail.…
The curator's supplemental diagnostic checks, the nine safe auto-fixes, the automatic judgment-fix procedure, and the lint-report template for claude-wiki-pages. Documents what the curator checks and how it repairs wiki structure under a git checkpoint, so the curator agent can apply fixes without inlining the…
Draft wiki pages with a local model (Ollama/LM Studio) into vault/proposed/ for human review, instead of writing wiki/ directly. Trigger when the user wants free/private/offline drafting, "draft with the local model", or invokes /claude-wiki-pages:draft. Off unless localModel.enabled — Claude Code remains the primary…
The LLM-facing contract for the deterministic claude-wiki-pages Bun engine — how ANY agent should call it. Documents each subcommand (verify, fix, heal, doctor, config, migrate, search, snapshot; plus planned index/link-suggest), its --json output shape, exit codes, and when to call it on a write-path. Trigger when an…
Complete the wiki: no empty pages, no dangling [[wikilinks]], with the graph clustered around the project's core topics. Stages curated repo sources, ingests them, authors topic hub pages, resolves every dangling link, enriches thin pages, then heals + verifies. Trigger when the user says "fill the knowledge gaps"…
Auto-repair what /claude-wiki-pages:lint reports. Idempotent — running twice on a clean tree produces no diff. Trigger when the user says "fix the lint errors", "repair the wiki", "auto-fix", or invokes /claude-wiki-pages:fix directly. Expects a fresh lint report in context, or runs its own lint pass internally.
Generate or refresh the vault MOC at vault/wiki/index.md — the top-level catalog of every topic folder and synthesis note in the vault. Trigger when the user says "refresh the index", "rebuild the vault MOC", "update the catalog", or after adding a new top-level topic or synthesis. Per-folder folder notes are owned by…
The ingest pipeline's topic-tree plan format and confirmation gate, the opt-in destructive optimize (restructure) procedure, and the final-report template for claude-wiki-pages. Documents the plan/approval and restructure steps so the ingest agent can drive them without inlining the detail. Trigger when an agent or…
Ingest one or more sources from vault/raw/ into typed wiki pages under vault/wiki/. Trigger when the user says "ingest this source", "process the file I just dropped in raw/", "add this to the wiki", or invokes /claude-wiki-pages:ingest directly. Prefer the pipeline (/claude-wiki-pages:claude-wiki-pages-ingest-agent)…