hoyeon-execute
This is the Codex-facing wrapper for Hoyeon's canonical execute skill.
Canonical skill:
- Installed root:
__HOYEON_PLUGIN_ROOT__/skills/execute/SKILL.md - Repo-local fallback:
skills/execute/SKILL.mdfrom the current Hoyeon repo
When this skill is invoked:
- Read the canonical skill file above before executing the workflow.
- Follow the
Runtime Surface->Codexsection in that file. - Mutate task state only through
hoyeon-cli plan task. - Do not edit
plan.jsondirectly. - Do not rely on hooks, MCP, or Claude
TeamCreatefor Codex v1. - Use Hoyeon native-agent adapter names when dispatching subagents:
worker->hoyeon-workerverifier->hoyeon-verifiercode-reviewer->hoyeon-code-reviewer
- In Codex, dispatch those adapters with the native
spawn_agenttool:spawn_agent(agent_type="hoyeon-worker", message="<worker charter>")spawn_agent(agent_type="hoyeon-verifier", message="<verification charter>")spawn_agent(agent_type="hoyeon-code-reviewer", message="<review charter>")
- Treat canonical
Agent(...),TaskCreate,TaskUpdate,TaskOutput, andTeamCreateexamples as Claude Code protocol notes, not literal Codex calls. - Parallel worker dispatch is allowed for disjoint
parallel_safetasks when the relevant adapter is prompt-visible.scripts/codex-execute-smoke.shvalidates plan state transitions only, not parallel subagent behavior.
The output contract remains the canonical Hoyeon contract: all executable tasks completed or blocked with evidence, followed by plan validation.