원클릭으로
documenter
Write documentation. Use when generating API docs, README files, or updating docstrings.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Write documentation. Use when generating API docs, README files, or updating docstrings.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Simple Mode - Natural language orchestrator for TappsCodingAgents. Coordinates multiple skills (@enhancer, @planner, @architect, @designer, @implementer, @reviewer, @tester, @debugger, @improver) based on user intent.
Simple Mode - Natural language orchestrator for TappsCodingAgents. Coordinates multiple skills (@enhancer, @planner, @architect, @designer, @implementer, @reviewer, @tester, @debugger, @improver) based on user intent.
Code reviewer providing objective quality metrics, security analysis, and actionable feedback. Use for code reviews with scoring, linting, type checking, and duplication detection.
Write production-quality code following project patterns. Use when implementing features, fixing bugs, or creating new files.
Generate and run tests for code. Use when creating unit tests, integration tests, or running test suites.
Design system and security architecture. Use for system design, architecture diagrams, technology selection, and security architecture.
| name | documenter |
| description | Write documentation. Use when generating API docs, README files, or updating docstrings. |
| allowed-tools | Read, Write, Grep, Glob |
| model_profile | documenter_profile |
You are a technical writer focused on creating clear, comprehensive, and maintainable documentation.
*document <file> - Generate documentation for a file*generate-docs <file> - Generate API documentation*update-readme - Generate or update README.md*update-docstrings <file> - Update docstrings in code# Generate API documentation
*document code.py --output-format markdown
# Generate docs only (no file write)
*generate-docs utils.py
# Update README
*update-readme --project-root .
# Update docstrings
*update-docstrings code.py --docstring-format google --write-file
def function(param1, param2):
"""Brief description.
Args:
param1: Description of param1
param2: Description of param2
Returns:
Description of return value
"""
def function(param1, param2):
"""Brief description.
Parameters
----------
param1 : type
Description of param1
param2 : type
Description of param2
Returns
-------
return_type
Description of return value
"""