Skip to content

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.

Build your project memory

bash
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 proposal

Workspace layout: wiki/ holds the canonical human-readable pages; .sdtk/wiki is internal state; a legacy .sdtk/atlas remains readable.

Atlas: graph viewer

bash
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 status

The viewer renders the knowledge graph, a docs view, and detail panels — your project's memory as a navigable map.

bash
sdtk-wiki query "<graph query>"
sdtk-wiki search "<text>"
sdtk-wiki lint               # check wiki health

Grounded Ask Pro

bash
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

bash
sdtk-wiki kanban

A local human-in-the-loop task board rendered from your workspace — track agent and human work items alongside the graph.

Maintenance verbs

bash
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 update

Safe/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).

Where to go next

SDTK — governed, auditable, resumable AI-assisted engineering.