Loading...
Loading...
Use when a subtask is ready to implement and has a subtask JSON file with acceptance criteria and deliverables.
npx skill4agent add darrenhinde/opencode-agents code-executionRead: .tmp/tasks/{feature}/subtask_{seq}.jsontitleacceptance_criteriadeliverablescontext_filesreference_filescontext_filesRead: .opencode/context/core/standards/code-quality.md
Read: .opencode/context/core/standards/security-patterns.mdreference_filesRead: src/middleware/auth.middleware.ts"status": "in_progress",
"agent_id": "coder-agent",
"started_at": "2026-02-16T00:00:00Z"grep "console.log" deliverables # NO debug statements
grep "TODO\|FIXME" deliverables # NO unfinished work
grep "api[_-]key\|secret" deliverables # NO hardcoded secretsacceptance_criteriabash .opencode/skills/task-management/router.sh complete {feature} {seq} "{summary}"bash .opencode/skills/task-management/router.sh status {feature}✅ Subtask {feature}-{seq} COMPLETED
Self-Review: ✅ Types | ✅ Imports | ✅ No debug code | ✅ Criteria met
Deliverables:
- src/auth/jwt.service.ts
- src/auth/jwt.service.test.ts
Summary: JWT service with RS256 signing and 15min token expiry/context-discovery| Excuse | Reality |
|---|---|
| "I've seen this pattern before, context files will just confirm what I know" | Projects diverge from common patterns. One wrong assumption = rework. Read the files. |
| "Self-review is just checking my own work" | Self-review catches type errors, missing imports, and debug code before the main agent sees it. |
| "The criteria are implied by the task title" | Implied criteria are unverifiable. If it's not written, it's not a gate. |
| "I'll handle edge cases in a follow-up" | Edge cases left for follow-up become bugs in production. Handle them now. |