with one click
docs
Update documentation after implementing features or making changes
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Update documentation after implementing features or making changes
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Generate a new React component with Mantine styling
Run a quick architecture review via architect-reviewer agent
Generate mobile-specific React components with platform detection and safe areas
Run a quick security audit on recent changes or specific files
Generate a test file for a component, hook, or utility
Generate comprehensive tests via test-generator agent
| name | docs |
| description | Update documentation after implementing features or making changes |
Invokes the docs-maintainer agent to update documentation.
Identify what was changed:
Launch docs-maintainer agent via Task tool:
Task({
subagent_type: "docs-maintainer",
prompt: "Update documentation for [change description].
Changes made:
- [list of changes]
Identify and update relevant documentation:
- CLAUDE.md (if development patterns changed)
- Architecture docs (if system design changed)
- API reference (if Tauri commands changed)
- User guides (if user-facing features changed)
- Style guide (if UI patterns changed)"
})
| Doc Type | Location | When to Update |
|---|---|---|
| CLAUDE.md | /CLAUDE.md | Development patterns, gotchas |
| Architecture | docs/developer/architecture.md | System design, data flow |
| Tauri API | docs/developer/tauri-api.md | Rust command changes |
| Testing | docs/developer/testing.md | Test patterns, coverage |
| Design System | docs/product/design/ | UI colors, components, patterns |
| User Guides | docs/user/guides/ | Feature how-tos |
User: "Update docs for the PDF export feature"
Launch agent:
Task({
subagent_type: "docs-maintainer",
prompt: "Document the new PDF export feature:
Feature: Export objects to styled PDF documents
Location: src/lib/export/pdf.ts
Update:
- CLAUDE.md Export System section
- User guide for export functionality
- Add code examples for PDF export API"
})
User: "Document the new haptic_notification command"
Launch agent:
Task({
subagent_type: "docs-maintainer",
prompt: "Document the new Tauri command haptic_notification:
Command: haptic_notification(type: string)
Types: success, warning, error
Update:
- docs/developer/tauri-api.md
- CLAUDE.md Rust/Tauri Commands section"
})