一键导入
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
"""