Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

living-docs-navigator生活文档导航器

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

392

周安装

16

GitHub Stars

127

下载量

127
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:living-docs-navigator(生活文档导航器)
来源仓库:https://github.com/anton-abyzov/specweave
仓库路径:skills/living-docs-navigator
安装命令:
npx skills add https://github.com/anton-abyzov/specweave --skill living-docs-navigator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/anton-abyzov/specweave --skill living-docs-navigator

简介

用于文档、README 和内容稿件的整理与改写,适合提炼结构和统一术语。

  • 可补齐章节、检查链接或整合零散材料为可读文档。
  • 使用时应保留项目事实与路径,避免将未确认信息写成确定结论。
  • 安装方式:通过 npx 从 GitHub 仓库添加,需确认权限与维护状态。
  • 注意:对外文案需控制语气,避免过度营销或夸大能力。

SKILL.md

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: grep -ril "keyword".specweave/docs/internal/specs/
  2. Read relevant ADRs: 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-jwt-vs-sessions.md
   - .specweave/docs/internal/architecture/auth-flow.md

3. Read each file for context before implementing.

Progressive Disclosure Pattern

This skill follows progressive disclosure:

  1. Metadata only (this SKILL.md) loads initially (~200 tokens)
  2. You search for relevant docs using grep/ls
  3. You read only the specific files you need
  4. Result: Minimal tokens, maximum context

No RAG needed - Claude's native file reading is more accurate.


Integration with /sw:do

When executing /sw:do:

  1. Extract topic keywords from spec.md
  2. Search living docs for matches
  3. Read relevant ADRs and architecture docs
  4. Apply context during implementation

Tips

  • ADRs are critical - always check before design decisions
  • Specs show history - see what was already built
  • Use grep liberally - find docs by keyword, not guessing paths
  • Cross-reference - related documents link to each other

Stakeholder Views

Living docs serve different audiences. Navigate by role:

For Business Stakeholders

Quick access to high-level, non-technical documentation:

.specweave/docs/internal/
├── strategy/                    # Business context
│   ├── executive-summary.md     # Project overview for leadership
│   ├── feature-dashboard.md     # Feature status tracking
│   ├── roadmap.md               # Product roadmap
│   └── business-impact/         # Per-feature impact statements
├── operations/                  # System health
│   └── health-dashboard.md      # Current system status
└── specs/
    └── _feature-status.md       # Active features & completion %

Use case: Board reports, investor updates, quarterly reviews

For Technical Leads

Quick access to architecture and decisions:

# Recent architectural decisions
ls -lt .specweave/docs/internal/architecture/adr/ | head -10

# Search for decisions about specific topics
grep -ril "authentication" .specweave/docs/internal/architecture/adr/

# Find system architecture diagrams
ls .specweave/docs/internal/architecture/*.md

Use case: Design reviews, tech debt assessment, onboarding

For Product Managers

Quick access to specifications and progress:

# Feature specifications
ls .specweave/docs/internal/specs/

# Find features by keyword
grep -ril "checkout" .specweave/docs/internal/specs/

# Check increment status
ls .specweave/increments/*/metadata.json

Use case: Sprint planning, release notes, stakeholder updates


Executive Summary Generation

Living docs can be transformed into executive-friendly formats:

Automatic Generation

Use the stakeholder-docs skill to generate:

  • Executive summaries from technical specs
  • Feature status dashboards
  • Business impact statements
  • Release summaries
"Create an executive summary of our current project status"
"Generate a feature status dashboard for Q1"

Manual Navigation

For quick stakeholder context:

  1. Project Overview: .specweave/docs/internal/strategy/executive-summary.md
  2. Feature Status: .specweave/docs/internal/strategy/feature-dashboard.md
  3. Recent Decisions: Latest 3 ADRs in architecture/adr/

Visual Documentation

When documentation needs diagrams or illustrations:

Architecture Diagrams

Use Mermaid in markdown files:

graph TD A[Client] --> B[API Gateway] B --> C[Auth Service]

AI-Generated Illustrations

Use the /sw:image-generation skill for professional visuals:


"Generate an architecture diagram illustration for the API docs" "Create a feature illustration for the living docs"

Brand colors: Purple #7c3aed, Light purple #a78bfa


Related Skills

  • stakeholder-docs: Generate executive-friendly views
  • docs-writer: Create detailed documentation
  • image-generation: Add visuals via /sw:image-generation
  • docusaurus: Preview docs as website via /sw-docs:view

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.02%
按下载量换算34

Antigravity

23.95%
按下载量换算30

Cursor

16.14%
按下载量换算20

Gemini CLI

13.41%
按下载量换算17

OpenCode

8.14%
按下载量换算10

Codex

3.66%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills