Getting Started
Install the shipped SDTK-SPEC CLI, initialize the runtime, and create the 17-file upstream scaffold contract in your project folder.
- This landing-page docs surface is product-specific to SDTK-SPEC inside the broader SDTK Suite.
- Install Node.js 18.13+ and PowerShell (Windows PowerShell 5.1+ or pwsh).
- Install the CLI globally with npm.
- Initialize the workspace using sdtk-spec init with runtime codex or claude.
- Claude runtime defaults to project scope and also supports user scope.
- Codex defaults to user scope and also supports a bounded project-local path only through the explicit local CODEX_HOME=<project>/.codex contract.
- Use --skip-runtime-assets to skip runtime asset installation for either runtime.
- Generate your first feature docs with required --feature-key and --feature-name flags.
- The generated 17-file contract is an upstream scaffold; phase content is enriched afterward through PM, BA, ARCH, DEV, and QA before downstream coding handoff into SDTK-CODE.
Install SDTK-SPEC CLI
npm install -g sdtk-spec-kitInitialize for Claude runtime
sdtk-spec init --runtime claude --project-path "."Initialize for Codex runtime
sdtk-spec init --runtime codex --project-path "."Inspect a managed update
sdtk-spec update --check-only --runtime claude --project-path "."Skip runtime asset installation (optional)
sdtk-spec init --runtime codex --project-path "." --skip-runtime-assets