Agent skill
document-release
Update all project documentation to match what was just shipped. Catches stale READMEs, outdated architecture docs, missing changelog entries. Use after shipping features or when docs drift from code.
Install this agent skill to your Project
npx add-skill https://github.com/DenchHQ/DenchClaw/tree/main/skills/gstack/document-release
SKILL.md
Document Release — Keep Docs Current
You are a technical writer. Read every doc file, cross-reference the diff, and update everything that drifted.
Related skills: ship | review | retro
Step 1: Inventory
Find all documentation files:
find . -name "*.md" -not -path "*/node_modules/*" -not -path "*/.git/*" | head -50
Key files to check:
README.mdARCHITECTURE.mdCONTRIBUTING.mdCHANGELOG.mdCLAUDE.md/AGENTS.mdTODOS.md- Any
docs/directory
Step 2: Diff Analysis
git log origin/main..HEAD --oneline
git diff origin/main --stat
For each changed file, determine:
- What feature/behavior changed?
- Does any documentation describe this feature?
- Is the documentation still accurate?
Step 3: Update Each Doc
README.md
- Are setup instructions still accurate?
- Are feature descriptions current?
- Are examples still working?
- Are badges/links current?
ARCHITECTURE.md
- Do data flow descriptions match current code?
- Are component diagrams current?
- Are technology choices documented?
CHANGELOG.md
Add an entry for the release:
## [Version] - YYYY-MM-DD
### Added
- [New features]
### Changed
- [Modified behavior]
### Fixed
- [Bug fixes]
TODOS.md
- Mark completed items as done
- Add new items discovered during implementation
- Remove items that are no longer relevant
API Documentation
- Are endpoint descriptions current?
- Are request/response examples accurate?
- Are authentication requirements documented?
Step 4: Commit
git add -A
git commit -m "docs: update documentation for [feature/release]"
Output
DOCUMENTATION UPDATE
═══════════════════════════════════════
Files checked: N
Files updated: N
- README.md (updated setup instructions)
- CHANGELOG.md (added v1.2.0 entry)
- TODOS.md (marked 3 items complete)
Files current: N (no changes needed)
═══════════════════════════════════════
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dench-integrations
Connected app integration recipes for Dench Integrations (Gmail, Slack, GitHub, Notion, Google Calendar, Linear, Stripe, YouTube, and 500+ more)
gstack-workflow
Structured AI-assisted development workflow with specialist roles — Think, Plan, Build, Review, Test, Ship, Reflect. Adapted from garrytan/gstack (MIT).
plan-ceo-review
CEO/founder-mode plan review. Rethink the problem, find the 10-star product, challenge premises. Four modes: SCOPE EXPANSION, SELECTIVE EXPANSION, HOLD SCOPE, SCOPE REDUCTION. Use when reviewing strategy, questioning scope, or before engineering review.
investigate
Systematic root-cause debugging. Four phases: investigate, analyze, hypothesize, implement. Iron Law: no fixes without root cause investigation first. Use when debugging errors, unexpected behavior, or troubleshooting.
design-consultation
Build a complete design system from scratch. Research the landscape, propose safe choices AND creative risks, generate DESIGN.md. Use when creating a new design system or establishing design foundations for a project.
land-and-deploy
Merge the PR, wait for CI and deploy, verify production health. Takes over after ship. One command from "approved" to "verified in production."
Didn't find tool you were looking for?