一键导入
doc-code
Add documentation comments to all changed code files, dispatching one agent per file.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Add documentation comments to all changed code files, dispatching one agent per file.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Take an iteration and execute it: dispatch /implement agents per phase, always sequentially (e.g. /orchestrate <iteration-id>).
Take an iteration and execute it: dispatch /implement agents per phase with git worktree isolation for parallel work (e.g. /orchestrate <iteration-id>).
Take an iteration and execute it: dispatch /implement agents per phase with jj workspace isolation for parallel work (e.g. /orchestrate <iteration-id>).
Promote a gest task to a GitHub Issue (e.g. /promote-task <id>).
Explore a rough idea with the user, clarify requirements, and draft a spec. Also decomposes large specs into smaller ones (e.g. /brainstorm "offline mode", /brainstorm <gest-id>).
Implement a single issue: write code, verify, review, format, and commit (e.g. /implement <gest-id>).
| name | doc-code |
| description | Add documentation comments to all changed code files, dispatching one agent per file. |
Add documentation comments to all changed code files in the current diff.
Run jj diff --summary to identify all changed files. Parse the output to extract file paths (each line has a status
letter followed by the file path). Filter the list to only include source code files (e.g., *.rs, *.ts, *.py —
exclude non-code files like *.md, *.toml, *.lock, *.json, *.yaml).
For each changed source code file, dispatch an agent to document that file. Launch all agents in parallel.
Each agent should:
jj diff <file_path> to see exactly which lines were added or modified./// and //! for Rust, /** */ or // for TypeScript,
""" docstrings for Python)./// Returns the name on a method called name()).Run mise lint to verify that the added documentation does not introduce any lint errors.
Run mise test to confirm nothing is broken.