From deadfish-teams
Implementation constraints, git conventions, Codex MCP usage.
How this skill is triggered — by the user, by Claude, or both
Slash command
/deadfish-teams:deadfish-implementThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Only modify files listed in TASK.FILES. Need a new file? Stop and ask Lead.
bin/verify.sh --project-dir . --task-file <task.md> --mode pre-commitbin/verify.sh --project-dir . --task-file <task.md> --mode post-commit --base-commit <sha>"{task_id}: {short title}"docs/living/* during per-task implementation.docs/living/TECH_STACK.md.TASK.FILES (typically alongside dependency manifest/lockfile changes).verify.sh only" refers to hook execution scope, not final QA scope.verify.sh deterministic gateStart implementation:
Tool: mcp__codex-coder__codex
Parameters:
prompt: "<TASK SUMMARY verbatim + FILES context>"
cwd: "/path/to/project"
sandbox: "workspace-write"
Continue if needed:
Tool: mcp__codex-coder__codex-reply
Parameters:
prompt: "Fix: verify.sh reports <failure details>"
threadId: "<from previous response>"
```deadfish:IMPLEMENT
task_id: auth-P1-T02
changed_files:
- path: src/auth/jwt.ts
- path: tests/auth/jwt.test.ts
summary: "Added JWT generation with RS256 signing and 15min expiry"
verify:
command: "bin/verify.sh"
result: PASS
notes: null
```
On retry (Lead sends QA feedback):
```deadfish:INTEGRATE
why_called: "T02 and T03 both modified src/auth/index.ts"
changes:
- "Merged export lists from both tasks"
- "Resolved import order conflict"
verify_sh: PASS
```
npx claudepluginhub fredasterehub/deadfish-teamsMakes one focused code change with planning, testing, verification, and reporting. Useful when a task is clearly scoped and needs a single, review-ready commit.
Automates per-task implementation cycles with steps for reading specs, preparing workspace, implementing, testing, reviewing, and committing.
Autonomous implementer agent that executes a single task end-to-end using TDD and verifies with Agent Validator. Activates for requests like "implement this task" or "finish this ticket".