用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bdarbaz/claude-stack-plugin --skill s-docs命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Autonomous workflow loop - runs the full skill chain automatically with circuit breaker and stuck detection
Freeform router - accepts natural language and routes to the appropriate skill(s)
Show all available skills, agents, and workflow guides - quick reference card for claude-stack
基于 SOC 职业分类
正在显示 SKILL.md
| name | s-docs |
| description | Update project documentation - detects stale docs and updates README, ARCHITECTURE, CHANGELOG, CLAUDE.md |
Scan project documentation for staleness, detect gaps, propose updates, and apply them after user approval. Keeps docs in sync with the actual codebase.
/s:retro follow-upSearch the project root and common locations for documentation files:
README.md, ARCHITECTURE.md, CONTRIBUTING.md, CLAUDE.md, CHANGELOG.md, LICENSEdocs/api/, openapi.yaml, swagger.json, any *.api.md filesdocs/guides/, docs/getting-started.md, SETUP.md, INSTALL.md.planning/PROJECT.md, .planning/REQUIREMENTS.md, .planning/ROADMAP.mdpackage.json (description, scripts), pyproject.toml, Cargo.tomlBuild an inventory of all documentation files found.
For each documentation file found, perform these checks:
npm run dev) still valid in package.json?Present findings to the user in this format:
## Documentation Status Report
### Current (no changes needed)
- LICENSE - up to date
- CONTRIBUTING.md - up to date
### Stale (updates recommended)
- README.md
- Line 15: References `npm run start` but script is now `npm run dev`
- Line 42: Lists 12 skills but there are now 27
- Missing: No mention of browser skills added in Phase 4
- ARCHITECTURE.md
- Line 8: References `src/utils/` which was renamed to `src/lib/`
- Diagram does not include the new `agents/` directory
### Missing (recommended to create)
- ARCHITECTURE.md - project has grown complex enough to benefit from this
- API documentation - 5 API endpoints found with no docs
For each stale document, show the proposed changes:
Format proposals as diffs or before/after blocks so the user can review them clearly.
If important documentation files are missing, suggest creating them based on project type:
| Project Type | Suggested Docs |
|---|---|
| Any | README.md, CHANGELOG.md |
| Library/Package | API reference, CONTRIBUTING.md |
| Web Application | ARCHITECTURE.md, deployment guide |
| CLI Tool | Usage guide, man page |
| Plugin | Installation guide, skill reference |
For each suggestion, offer to generate a first draft based on the current codebase.
.planning/STATE.md:
| {DATE} | Docs updated | {list of files updated} |Present the final status:
Documentation update complete.
Updated:
- README.md (3 changes applied)
- CHANGELOG.md (1 version entry added)
Still current:
- CONTRIBUTING.md
- LICENSE
Gaps remaining:
- ARCHITECTURE.md does not exist (recommended for this project size)
- No API documentation for /api/v2/ endpoints
All project documentation is now in sync with the codebase.
Or, if everything was already current:
Documentation is up to date. No changes needed.
All {N} documentation files are consistent with the current codebase.
/s:ship can trigger this skill as part of the shipping process/s:retro may identify documentation gaps as action items/s:verify checks that documentation claims match reality