SDTK-WIKI — Project Memory Shipped
SDTK-WIKI is the suite's cross-cutting memory layer: a local knowledge graph built from your repository, a browsable Atlas viewer, a docs wiki, a kanban board, and grounded Q&A over it all. Every other phase reads from it.
- CLI:
sdtk-wiki(packagesdtk-wiki-kit) - Full command list: sdtk-wiki reference
Build your project memory
sdtk-wiki init
sdtk-wiki ingest # read the repo into the graph
sdtk-wiki compile --mode safe # propose wiki pages (safe = no writes)
sdtk-wiki compile --mode safe --apply # apply the proposalWorkspace layout: wiki/ holds the canonical human-readable pages; .sdtk/wiki is internal state; a legacy .sdtk/atlas remains readable.
Atlas: graph viewer
sdtk-wiki atlas build # native Node — no Python needed
sdtk-wiki atlas open # browser viewer (stays alive until Ctrl+C)
sdtk-wiki atlas watch # rebuild on change
sdtk-wiki atlas statusThe viewer renders the knowledge graph, a docs view, and detail panels — your project's memory as a navigable map.
Query and search
sdtk-wiki query "<graph query>"
sdtk-wiki search "<text>"
sdtk-wiki lint # check wiki healthGrounded Ask Pro
sdtk-wiki ask "How does the payment flow handle retries?"Grounded Q&A over your built graph — answers cite graph nodes rather than free-associating. Requires the wiki.ask Pro entitlement and a built graph; also available inside the Atlas viewer. This invokes a model — one of the explicit points where an external call happens.
Kanban board
sdtk-wiki kanbanA local human-in-the-loop task board rendered from your workspace — track agent and human work items alongside the graph.
Maintenance verbs
sdtk-wiki discover --plan # propose what to document next
sdtk-wiki maintain --mode safe # propose maintenance actions
sdtk-wiki enrich --source github --mode review # review-mode enrichment
sdtk-wiki wiki ingest|prune|discover|extract|compile # wiki-level pipeline verbs
sdtk-wiki updateSafe/review modes propose; nothing destructive runs without explicit apply.
Boundaries (Foundation/Beta)
- No web fetch — the graph is built from your local repo.
- No destructive prune.
- No query history list/show/delete.
- Ask requires Pro entitlement and a built graph — it fails closed otherwise.
- Installs no skills — SDTK-WIKI is entirely CLI-driven (plain
init).