Navigate and load project living documentation for context from .specweave/docs/internal/. Use when implementing features and needing project context, referencing ADRs for design decisions, or accessing specs and architecture docs. Provides table of contents for all documentation types.
View on GitHubFebruary 3, 2026
Select agents to install to:
npx add-skill https://github.com/anton-abyzov/specweave/blob/main/plugins/specweave/skills/living-docs-navigator/SKILL.md -a claude-code --skill living-docs-navigatorInstallation paths:
.claude/skills/living-docs-navigator/# Living Docs Navigator Access project knowledge stored in `.specweave/docs/internal/`. ## Quick Navigation **When you need context**, read relevant files from these locations: ### ๐ Specifications (Features & User Stories) ``` .specweave/docs/internal/specs/ ``` - Feature specifications with user stories - Acceptance criteria - Implementation history **Find specs**: `ls .specweave/docs/internal/specs/` ### ๐ Architecture Decisions (ADRs) ``` .specweave/docs/internal/architecture/adr/ ``` - WHY decisions were made - Trade-offs considered - Context for design choices **Find ADRs**: `ls .specweave/docs/internal/architecture/adr/` ### ๐๏ธ System Architecture ``` .specweave/docs/internal/architecture/ ``` - High-level design (HLD) - System diagrams - Component architecture **Find architecture docs**: `ls .specweave/docs/internal/architecture/*.md` ### ๐ Operations ``` .specweave/docs/internal/operations/ ``` - Runbooks - SLOs - Incident procedures ### ๐ผ Strategy ``` .specweave/docs/internal/strategy/ ``` - Business requirements - Product vision - PRDs ### ๐ก๏ธ Governance ``` .specweave/docs/internal/governance/ ``` - Security policies - Coding standards - Compliance docs --- ## How to Use ### Before Implementing a Feature 1. **Check for related specs**: ```bash grep -ril "keyword" .specweave/docs/internal/specs/ ``` 2. **Read relevant ADRs**: ```bash grep -l "topic" .specweave/docs/internal/architecture/adr/*.md ``` 3. **Load the context** by reading the files found. ### Before Making Design Decisions 1. **Check existing ADRs** to avoid contradicting past decisions 2. **Read architecture docs** to understand current patterns 3. **Follow established conventions** ### Example Workflow ``` 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-