From willink-claude-kit
i-Willink 標準開発フローを Codex で実行するための 5 phase adapter。Claude Code の /build と同期し、Codex subagents はユーザーが明示した場合のみ使う。
How this skill is triggered — by the user, by Claude, or both
Slash command
/willink-claude-kit:codex-buildThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill adapts the canonical Claude Code `/build` flow in `commands/build.md` for Codex. The Claude Code files remain the source of truth; this skill explains the Codex execution model where platform behavior differs.
This skill adapts the canonical Claude Code /build flow in commands/build.md for Codex. The Claude Code files remain the source of truth; this skill explains the Codex execution model where platform behavior differs.
skills/dev-standards/SKILL.md before starting substantial work..claude/skills/project-standards/SKILL.md for project-specific conventions. Do not create a separate Codex copy..claude/agent-memory/dev-reviewer/MEMORY.md when present. Keep that Claude path as shared project memory.commands/build.md and the four Claude role contracts in agents/ as canonical:
dev-explorerdev-plannerdev-testerdev-reviewerrg / rg --files for search, preserve unrelated user changes, and verify with the repo's actual commands.Follow the dev-explorer contract. Run this phase only when the task spans 3+ independent areas; otherwise inspect locally.
Codex mapping:
explorer agents for orthogonal read-only questions, then continue useful local work while they run.Return only decision-useful context: summary, key files, conventions observed, open questions, and recommended follow-up.
Follow the dev-planner contract when the change is non-trivial: more than one file, more than about 50 lines, or meaningful architectural risk.
Codex mapping:
The plan must identify files to change, existing utilities to reuse, implementation steps, tests, and rollback path.
The main Codex agent implements the change. Do not delegate sequential implementation to another agent.
Implementation rules:
Run dev-tester and dev-reviewer behavior after implementation.
Codex mapping:
Tester behavior:
Reviewer behavior:
The main Codex agent fixes issues surfaced in Phase 4.
| Task type | Phase 1 | Phase 2 | Phase 4 |
|---|---|---|---|
| typo fix | skip | skip | tester only when useful |
| one-function bug fix | skip | skip | tester + reviewer behavior |
| small feature | skip | run | tester + reviewer behavior |
| large feature | run | run | tester + reviewer behavior |
| refactor | run | run | tester + reviewer behavior |
| docs only | skip | skip | skip unless docs validation exists |
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub willink-oss/willink-claude-kit --plugin willink-claude-kit