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.
View on GitHubanton-abyzov/specweave
sw
January 25, 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-