원클릭으로
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 git diff --name-only to identify changed files. 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:
git 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.