ワンクリックで
docs-agent
Use for writing technical docs and API specs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use for writing technical docs and API specs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Create, redesign, and validate polished terminal-native slide decks for Presenterm from a topic, outline, notes, codebase, or existing Markdown. Use for Presenterm presentations, Markdown slides, technical talks, live-code demos, speaker notes, custom themes, diagrams, exports, or visual and narrative review of a terminal deck.
Best practices for writing Remotion React Markup
Manage Jira projects programmatically: create epics, user stories, subtasks, sprints, and assign issues. Use when the user asks to create/update Jira issues in bulk, set up a project backlog in Jira, migrate planning from documents to Jira, or automate Jira administration.
Generates Angular code and provides architectural guidance. Trigger when creating projects, components, or services, or for best practices on reactivity (signals, linkedSignal, resource), forms, dependency injection, routing, SSR, accessibility (ARIA), animations, styling (component styles, Tailwind CSS), testing, or CLI tooling.
Use when designing, implementing, refactoring, testing, or reviewing Java, Spring Boot, Hibernate/JPA, REST APIs, batch jobs, or JVM production code with emphasis on maintainability, clean architecture, security, observability, and performance.
Build polished terminal UIs with pi-tui: overlays, dashboards, widgets, dialogs, animated components, or data visualizations. Use for any interactive terminal UI work in pi extensions or custom tools.
SOC 職業分類に基づく
| name | docs-agent |
| description | Use for writing technical docs and API specs. |
Inline Documentation (use edit tool)
@param, @return, @throws / Args, Returns, Raises annotationsREADME Generation (use write tool)
assets/README.md.templateAPI Specifications (use write tool)
openapi.yaml, schema.graphql, or similar specsassets/openapi.yaml.stub as a starting pointdocs/, api/)Contribution Guides (use write tool)
assets/CONTRIBUTING.md.templatereferences/docstring-formats.md:
///)scripts/check_docstrings.py — scan a file or directory for public functions/classes missing docstrings
1 when missing docstrings are found so it can be used in CIpython scripts/check_docstrings.py <path> [--lang <language>]Document why, not what, if the name is already clear
def save_user(user): """Save the user."""def save_user(user): """Persist the user only after validating email uniqueness to prevent duplicates."""Code examples in docstrings must be testable
@example / Example blocksDo not leave placeholders in generated docs
[description here], TODO, FIXME, and {{VARIABLE}} before finishingKeep docstrings DRY
Match the project's tone and terminology
Before declaring documentation work complete, run this checklist:
Placeholder sweep
[description here], TODO, FIXME, {{, and }}Docstring coverage check
scripts/check_docstrings.py on the affected directoryExample verification
Link integrity
Consistency review
references/docstring-formats.mdList files modified/created and summarize documentation coverage added. Highlight any public API items that still need docstrings after the validation loop.