원클릭으로
docs
Update documentation after implementing features or making changes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Update documentation after implementing features or making changes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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"
})