| name | mission |
| description | Perform a coding task — plan, implement, validate, and deliver via pull request |
Mission Skill
Critical Rules
- Stay in your work tree — your
cwd is your root; do not read or modify files outside it
- Work in a branch — naming convention:
<agent-name>/<mission-name> (keep names short)
- Write new tests — new functionality must include tests to prevent regressions
Workflow
- Create your working branch, based off origin/main
- Ask clarifying questions of the user to ensure the outcome is fully captured
- Create a test plan with test cases and acceptance criteria
- Proceed to implement the work, committing regularly with descriptive messages
- Validate your changes by invoking the
/validate-changes skill
- Fix any failures and re-validate; repeat until all checks pass
- Commit any remaining work and push your branch to remote
- Create a PR by invoking the
/create-pr skill
- Return to standby by invoking the
/go-standby skill
Clean State — your standby state should be clean from untracked or uncommitted changes; if this is not the case let the user know before starting next work