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 --no-open # index the repo docs into the atlas graph
sdtk-wiki search "<topic>" # grounded search (hits labeled atlas|wiki)
sdtk-wiki atlas open # docs + graph viewerWorkspace layout: your project docs are indexed in place; .sdtk/wiki holds the graph and machine state; a legacy .sdtk/atlas remains readable. (The old ingest/compile second-brain pipeline is deprecated — it moved to the standalone sdtk-brain tool.)
Atlas: graph viewer
sdtk-wiki atlas build # pure Node, zero dependencies
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 healthAsk
sdtk-wiki ask "How does the payment flow handle retries?"Ranks passages from your built graph against the question. It needs a built graph; it is also available inside the Atlas viewer.
Free returns the top-matching passages verbatim with their citations. No model runs, no key, no network — so it is retrieval, not a generated answer, and it says so in its own output.
Pro reformulates the question, writes an answer grounded in those same passages, and refuses with NOT IN SOURCES rather than guessing. This is the tier that 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 lint # wiki health findings, report-first
sdtk-wiki maintain --mode safe # lint-only health pass (0.10.0)
sdtk-wiki updateReport-first; nothing destructive runs. The old discover/enrich/wiki * pipeline verbs were removed in 0.10.0 — they live in the standalone sdtk-brain tool.
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).