Claude-skill-registry documentation-management
Keep project documentation accurate when behavior changes. EXCLUSIVE to project-manager agent.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/documentation-management" ~/.claude/skills/majiayu000-claude-skill-registry-documentation-management && rm -rf "$T"
manifest:
skills/data/documentation-management/SKILL.mdsource content
Documentation Management
Exclusive to:
project-manager agent
Instructions
- Identify what changed affecting docs
- Update appropriate file(s) based on change type
- Keep content concise and actionable
- Verify README under 300 lines
- Cross-check links and file paths
Documentation Structure (Source of Truth)
docs/ ├── project-overview-pdr.md # Goals, features, requirements ├── codebase-summary.md # Structure, models, routes, components ├── code-standards.md # Conventions and patterns └── system-architecture.md # Design and data flow
Also:
README.md (root) — Keep under 300 lines
Update Triggers
| Change Type | Update |
|---|---|
| New feature | , |
| New model/controller | |
| Pattern change | |
| Architecture change | |
| Setup change | |
Update Process
- Identify what changed affecting docs
- Update appropriate file(s)
- Keep content concise and actionable
- Verify README under 300 lines
Cross-Reference Validation
After updates, verify:
- Links still work
- File paths accurate
- Code examples current
- No contradictions between docs
README Constraints
| Section | Max Lines |
|---|---|
| Quick Start | 30 |
| Documentation links | 20 |
| Tech Stack | 15 |
| Commands | 20 |
| Total | < 300 |
Examples
- "Update docs after adding a new model"
- "Document a new design pattern"