Navigate and load project living documentation for context. Provides a table of contents for specs, ADRs, architecture docs, and operations runbooks. Use when implementing features, making design decisions, or needing project context. Keywords - living docs, context, ADR, architecture, specs, documentation, project knowledge.
This skill inherits all available tools. When active, it can use any tool Claude has access to.
Access project knowledge stored in .specweave/docs/internal/.
When you need context, read relevant files from these locations:
.specweave/docs/internal/specs/
Find specs: ls .specweave/docs/internal/specs/
.specweave/docs/internal/architecture/adr/
Find ADRs: ls .specweave/docs/internal/architecture/adr/
.specweave/docs/internal/architecture/
Find architecture docs: ls .specweave/docs/internal/architecture/*.md
.specweave/docs/internal/operations/
.specweave/docs/internal/strategy/
.specweave/docs/internal/governance/
Check for related specs:
grep -ril "keyword" .specweave/docs/internal/specs/
Read relevant ADRs:
grep -l "topic" .specweave/docs/internal/architecture/adr/*.md
Load the context by reading the files found.
Task: "Implement user authentication"
1. Search for related docs:
grep -ril "auth" .specweave/docs/internal/
2. Found:
- .specweave/docs/internal/specs/backend/us-001-authentication.md
- .specweave/docs/internal/architecture/adr/0001-jwt-vs-sessions.md
- .specweave/docs/internal/architecture/auth-flow.md
3. Read each file for context before implementing.
This skill follows progressive disclosure:
No RAG needed - Claude's native file reading is more accurate.
When executing /sw:do: