ワンクリックで
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
"""