Start New Task prompt
Copy this prompt into your agent session, then replace... with either Task file: <path/to/task-file.md> or the task text pasted on the following lines.
Step-by-step initialization
Set SKILL_PATH
Set
SKILL_PATH to the installed skill directory before running any CLI commands.- Codex
- Claude Code
Run init
Run The initializer will:
init from the repository root. Provide either a task file or inline task text.- Resolve the repo root
- Create
.agent/tasks/<TASK_ID>/with all required artifact files - Install project-scoped subagent files into
.codex/agents/and.claude/agents/ - Insert or refresh managed workflow blocks in
AGENTS.mdand the repo’s Claude guide file
Confirm artifacts exist
After You should see all entries under
init completes, verify that the task folder and spec.md are present before continuing.required_files_present set to true and .agent/tasks/feature-auth-hardening/spec.md present on disk.Run Continue Existing Task
Once init is confirmed, proceed to build using the Continue Existing Task guide.
init always comes before build. Do not skip it or overlap it with freeze, build, evidence, verify, fix, or any child-agent spawning.Guide file options
Control which guide files the initializer creates or updates with--guides:
| Value | Behavior |
|---|---|
auto | Preserves existing guide files; creates the product-native guide when installing that product’s agents |
agents | Creates or updates AGENTS.md only |
claude | Creates or updates the Claude guide file only |
both | Creates or updates both AGENTS.md and the Claude guide file |
none | Skips guide file changes entirely |
--guides auto, the initializer ensures CLAUDE.md exists whenever Claude agents are being installed and AGENTS.md exists whenever Codex agents are being installed.
Subagent installation options
Control which project-scoped subagent sets are installed with--install-subagents:
| Value | Behavior |
|---|---|
both | Installs Codex agents under .codex/agents/ and Claude agents under .claude/agents/ (default) |
codex | Installs Codex agents only |
claude | Installs Claude agents only |
none | Skips subagent installation |