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.