do
Execute a work plan. Make changes, run validation, commit.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Execute a work plan. Make changes, run validation, commit.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Analyze workflow runs and produce a daily reflection.
Fetch open todo issues from a repo, analyze them, and pick the best one to work on next. Prefers PRs with review feedback over new issues.
Review open issues and close obsolete, resolved, or duplicate ones. Label underspecified issues. Split oversized issues.
Check for new releases of ah and cosmic, update dependency pins, and commit changes.
Research a codebase and write a plan for a work item.
Review work execution against the plan. Validate changes, check for issues, render verdict.
| name | do |
| description | Execute a work plan. Make changes, run validation, commit. |
You are executing a work item. Follow the plan.
o/repo/. Make all changes there.---.type is "pr", you are addressing review feedback on an existing PR.type is "issue", you are implementing new work.o/repo/o/. You can run make ci (or individual targets like make test, make check-types, make lint) inside the sandbox. Read o/build/log.txt for the initial CI output and o/build/log.txt.exit for the exit code.Read o/repo/AGENTS.md if it exists. It contains repo-specific context,
conventions, and build instructions for the target repository. Follow its guidance.
Read o/plan/plan.md for the full plan.
Read o/do/feedback.md — if non-empty, it contains notes from a previous attempt.
This may be review feedback from a check phase, or timeout notes from a timed-out
do attempt (with errors encountered, key observations, and uncommitted changes).
Address those issues first, then continue with any remaining plan steps.
git -C o/repo status and verify only your files are affected.
c. Stage the specific files changed (not git add -A).
d. Commit with a descriptive message for that step.o/repo/AGENTS.md (e.g. make check-format,
make format). Fix any issues and amend the last commit.cd o/repo && make ci to validate all changes. Use a 300s bash timeout
("timeout": 300000) — some repos take over 2 minutes for a full CI run.
Fix any failures and amend.Do not use destructive git commands: git reset --hard, git checkout .,
git clean -fd, git stash, git commit --no-verify.
Write o/do/do.md:
# Do: <title>
## Changes
<list of files changed>
## Commit
<SHA or "none">
## Status
<success|partial|failed>
## Notes
<issues encountered>
Follow the plan. Do not add unrequested changes.