I want to install
One command installs all six CLIs; one more sets up your AI runtime.
Install the suite
npm install -g sdtk-kitDocs
Start with what you're trying to do: install once, set up your Claude or Codex runtime, and run your first workflow. Then dive into any of the six toolkits for its dedicated command reference.
This page is the quick start. Complete documentation — every concept, workflow, and command — lives at docs.sdtk.dev.
Pick the job you came for — each path has the one command that matters and a link to the right guide.
One command installs all six CLIs; one more sets up your AI runtime.
Install the suite
npm install -g sdtk-kitScaffold a 17-file traceable SDLC document set — or rebuild docs from an existing codebase with Pro Project Intelligence.
Scaffold SDLC docs
sdtk-spec generate --key SHOPEASE --name "ShopEase MVP"Open Claude Code or Codex in your project and describe the work — the orchestrator routes it through the governed workflow.
In Claude Code or Codex
/orchestratorChain multi-step agent workflows into one durable, resumable run with human approval gates and a file ledger.
Start a durable run
sdtk-agent run start --workflow workflow.json --runtime-map runtime-map.json --feature-key KEY --goal "..."Four reference scenario packs show the scaffold and governed phase structure on realistic feature work.
Browse the examples →Install the whole suite with one command, then set up your AI runtime. The flow is identical whether you use Claude Code or Codex.
Install the suite
npm install -g sdtk-kitSet up your runtime (Claude)
sdtk init --runtime claudeSet up your runtime (Codex)
sdtk init --runtime codexVerify the install
sdtk -vWith the suite installed, open your AI assistant and let the orchestrator route your request — or scaffold a full SDLC document set directly.
Scaffold an SDLC document set
sdtk-spec generate --key SHOPEASE --name "ShopEase MVP"Activate Pro (optional)
sdtk activate --license SDTK-XXXX-YYYYCross-toolkit commands use the sdtk umbrella binary (from sdtk-kit). For commands specific to one tool, open that toolkit's page under The Toolkits.
Check installed versions
sdtk -vInitialize all toolkits
sdtk init --runtime claudeUpdate all CLIs
sdtk updateActivate Pro
sdtk activate --license SDTK-XXXX-YYYYAlready have an older SDTK suite installed? Update the six CLIs, then refresh SDTK-managed files in each project with --force.
Update all six CLIs (suite)
sdtk updatePreview the update first
sdtk update --check-onlyRefresh a project after updating (Claude)
sdtk init --runtime claude --forceRefresh a project after updating (Codex)
sdtk init --runtime codex --forceCommon setup errors and the fastest fix.
Verify install + versions
sdtk -vVerify Claude skills installation
ls .claude/skills/Re-run setup with detailed output (Claude)
sdtk init --runtime claude --force --verboseReinstall the suite cleanly
npm uninstall -g sdtk-kit
npm install -g sdtk-kitActivate once — all five premium capabilities (project ingest, audit, refresh + Local Wiki Ask + Sleep Execute) unlock across every kit on that machine.
Activate Pro
sdtk activate --license SDTK-XXXX-YYYYRebuild a full documentation baseline from any existing codebase — with native support for Django, Laravel, React, FastAPI, Flask, and more. Even with zero existing docs.
Ingest source → staged docs
sdtk-spec project ingest --project-path .Audit coverage report
sdtk-spec project audit --project-path . --jsonRefresh after source changes
sdtk-spec project refresh --project-path .Promote staged docs → live /docs/
sdtk-spec project promote --project-path . --applyLike Google NotebookLM — but grounded in your own repo and driven by your own AI CLI. No separate upload service, no third-party cloud.
Build the wiki graph (index your docs)
sdtk-wiki atlas build --project-path .Ask a question (Claude)
sdtk-wiki ask "how does the auth flow work?"Ask a question (Codex)
sdtk-wiki ask "what tables does the billing module use?" --runtime codexA free dry-run readiness gate (plan · report — nothing is executed) plus the Pro Sleep Execute capability: after one attended authorization, run a bounded doc-class agent session unattended.
Assemble an execution plan (dry-run, free)
sdtk-code sleep plan --feature-key ORDER_TRACKING --allowed 'docs/**'Score readiness (dry-run preflight, free)
sdtk-code sleep report --feature-key ORDER_TRACKINGAuthorize once, attended (Pro)
sdtk-code sleep authorize --feature-key ORDER_TRACKINGRun the session unattended (Pro)
sdtk-code sleep execute --feature-key ORDER_TRACKINGSix toolkits: SPEC, DESIGN, CODE, and OPS each own one phase of the idea-to-ship pipeline, while SDTK-WIKI (memory) and SDTK-AGENT (orchestration) are cross-cutting capabilities every phase can call on. Open any one for its full command reference and workflow guide.