@@ -17,20 +17,21 @@ It injects:
1717- Platform-specific agents, commands, or workflows
1818- Universal writing/implementation skills
1919- CLI validation commands for spec structure and traceability
20+ - A knowledge graph for architectural decisions and business rules
2021
2122## Supported Platforms
2223
2324| Platform | Scope | Injection Type |
2425| ----------| -------| -------------|
25- | Antigravity | project | ` /spec-driven ` command |
26- | Claude Code | project | ` CLAUDE.md ` |
27- | Gemini CLI | global | MCP servers, agents , commands |
28- | GitHub Copilot CLI | global | MCP servers , skills |
29- | GitHub Copilot for VS Code | global | MCP configuration |
30- | GitHub Copilot for JetBrains | global | MCP configuration |
31- | OpenCode | global | MCP configuration , skills |
32- | OpenAI Codex | project | Agent instructions |
33- | Qwen Code | global | MCP configuration , skills |
26+ | Antigravity | project | ` /spec-driven ` workflow |
27+ | Claude Code | project | Agents, commands, skills |
28+ | Gemini CLI | global / project | Agents , commands, skills |
29+ | GitHub Copilot CLI | user / project | Agents, commands , skills |
30+ | GitHub Copilot for VS Code | global / project | Agents, prompts, skills |
31+ | GitHub Copilot for JetBrains | project | Agents, prompts, skills |
32+ | OpenCode | global / project | Agents, commands , skills |
33+ | OpenAI Codex | project | Agents, commands, skills |
34+ | Qwen Code | user / project | Agents, commands , skills |
3435
3536## Installation
3637
@@ -51,12 +52,8 @@ The CLI provides two command names:
5152### Inject Command
5253
5354``` bash
54- # Interactive injection (prompts for platform and options )
55+ # Interactive injection (prompts for platform and scope )
5556sds inject
56-
57- # With flags
58- sds inject -p opencode
59- sds inject -p github-copilot --scope global
6057```
6158
6259### Validate Commands
@@ -81,13 +78,46 @@ sds validate spec <slug>
8178### Other Commands
8279
8380``` bash
81+ # Clean globally injected steroids
82+ sds clean --global
83+
8484# Show version
8585sds --version
8686
8787# Show help
8888sds --help
8989```
9090
91+ ### Stewardship Commands
92+
93+ Manage a knowledge graph of architectural decisions, business rules, and workflow conventions extracted from spec files:
94+
95+ ``` bash
96+ # Report available stewardship capabilities
97+ sds stewardship capabilities
98+
99+ # Search for rules in the knowledge graph
100+ sds stewardship retrieve < query> --domain architecture
101+
102+ # Persist a new rule
103+ sds stewardship store architecture --content " Use hexagonal architecture"
104+
105+ # Extract decision candidates from a design.md or requirements.md
106+ sds stewardship extract .specs/changes/my-feature/design.md
107+
108+ # Show rule provenance and version history
109+ sds stewardship trace < ruleId>
110+
111+ # Retrieve context for a spec phase
112+ sds stewardship inject design
113+
114+ # List, deprecate, or archive rules
115+ sds stewardship manage list
116+ sds stewardship manage deprecate --ruleId < ruleId>
117+ ```
118+
119+ These rules are automatically referenced by each spec-driven skill to give agents awareness of established project patterns.
120+
91121## Skills Injected
92122
93123The CLI injects these universal skills that work across all platforms:
@@ -166,7 +196,7 @@ This creates: `AGENTS.md`, `CONTRIBUTING.md`, `STYLEGUIDE.md`, `TESTING.md`, `AR
166196
167197## Long-Running Work
168198
169- For complex long-running tasks, SDS injects ` long-running-work-planning ` . It keeps agents working through durable artifacts, task status updates, checkpoints, and verification instead of relying on an external reasoning MCP server .
199+ For complex long-running tasks, SDS injects ` long-running-work-planning ` . It keeps agents working through durable artifacts, task status updates, checkpoints, and verification.
170200
171201## Package Layout
172202
0 commit comments