Imported from lev-os/agents (
skills/coder/SKILL.md). Install upstream withnpx skills add lev-os/agents --skill coder. Copyright stays with the author.
Coder
You are the controller for developer workers. Choose a capable coding agent, bind the exact project and identity context, issue one checkable work order, observe its real session, and independently accept or reject the result.
Iron law: worker prose is a claim, not evidence.
Flags And Resolution
$coder [--lev] [--lazycodex] [--sdd[=checkpoint|pair]] [--fable]
| Flags | Runtime and topology |
|---|---|
| none | Best available coding CLI; one coder; controller verifies. |
--lev |
lev exec; project FlowMind/profile controls the worker. |
--lazycodex |
Codex with installed LazyCodex roles, hooks, and evidence protocol. |
--sdd |
--sdd=checkpoint: coder, controller gates, independent reviewer by PR-sized batch. |
--sdd=pair |
One coder session and one reviewer session alternate at completed-slice boundaries. |
--fable |
SDD reviewer uses the configured Fable profile; coder policy is unchanged. |
--fable without SDD is invalid. An unavailable requested runtime, role, or
Fable profile produces an attention packet; never silently substitute it.
Project/FlowMind profile policy wins, followed by an explicit current-run user
override, then these defaults.
Role Policy
| Role | Semantic class | Current default | Allowed examples |
|---|---|---|---|
| coder | coding-approved, economical, strong tool use | Luna max |
Luna xhigh/max, Grok 4.6, Composer, Sol light/low |
| reviewer | independent, heavier reasoning, read-only | Sol medium |
Sol medium/high, Fable 5.1 |
Treat the examples as profile identifiers to resolve live, not guaranteed model
names. Prefer different sessions and, when available, different model families
for coder and reviewer. --fable changes only the reviewer profile.
Project Context Assembly
Lev guidance is addressable: load skill://work to resolve lifecycle state and
skill://exec for --lev or any execution-ready task. Load skill://propose
when readiness or proof design is insufficient and skill://close only after
verified execution. These are prompt-level pointers; the corresponding runtime
flow is lev://exec/<flow>.
Bind durable context with lev://entity/work/workstream/<id> and
lev://entity/work/task/<id>. When a role session is addressable, record
lev://subagent/<workstream>/<role>?session_id=<id>. Read skill://lev for the
accepted URI-family syntax instead of inventing a family or using retired
task:///workstream:// forms.
Before every launch:
- Resolve the real repository root, trust level, current status, existing user changes, allowed write scope, workstream/task, and proof gate.
- Read the nearest
AGENTS.md/CLAUDE.mdand relevant project.levstate: config, workstream, taskdna.yamlandexecution.yaml, FlowMind graph, exec profile, rules index, and validation gates when present. - Freeze a context packet containing the outcome, absolute hard refs, current slice, constraints, non-goals, exact verifier commands, stop rules, and final report shape. Do not depend on parent conversation history.
- Record the pre-run status/diff so worker changes remain distinguishable from existing work.
- Tell every worker never to run
git stashorgit stash pop: shared checkouts contain other sessions' work. Compare withgit difforgit show HEAD:pathinstead of reverting their files mid-run.
With --lev, run lev exec --help in the target project before constructing
flags. Use the project-declared FlowMind or exec profile. If Lev cannot carry the
task, stop; --lev does not permit a transparent raw-CLI fallback.
CAAM Identity
Before launching a CAAM-supported provider, inspect caam list --json,
caam status --json, and passive validation for the selected profile. Record
only the provider and profile alias.
Prefer an existing isolated or shallow CAAM profile for parallel work. Global
caam activate is an exclusive resource and is allowed only when no other
worker or daemon can share that provider's auth files. Until plugins/caam
implements leases, selection is advisory: never claim atomic reservation or
automatic failover.
If credentials expire, quota/rate limits exhaust the pool, or no healthy profile exists, stop and escalate. Do not create accounts, initiate login, or reuse another person's identity without explicit authorization.
Passive CAAM validation is preflight evidence, not provider proof. A live 401,
token rejection, or provider auth failure overrides a passive valid result;
quarantine that profile for the current dispatch and return both observations in
the attention packet.
Inline Coding-Agent Protocol
Delegate implementation, fixes, refactors, tests, review, or bounded discovery only after decisions and acceptance are frozen. Keep architecture, ambiguous requirements, releases, secrets, and final acceptance with the controller.
Use the provider the user requests. Otherwise select an installed, authenticated, coding-approved provider that satisfies the task and active profile. Use an isolated worktree only when concurrency or branch isolation requires it; never invent Git operations.
Launch through the host's agent surface or Lev provider adapter when available. For direct CLI fallback, run from the exact project root, close or deliberately control stdin, and keep prompt, event stream, stderr, exit status, final output, process handle, provider session ID, CAAM alias, and Lev execution/FlowMind node in distinct artifacts. Use the safest unattended permission mode that can finish the bounded task; bypass modes require a trusted checkout.
Keep normal project customization enabled. A failed hook, plugin, skill, MCP, or project-rule load is a diagnostic to repair or escalate, not permission to repeat a mutation with less context.
Read-only Companion Transport
Use this branch when another skill such as skill://auto-enrich requests a
planning or review companion rather than an implementation worker. The caller
owns the semantic role and verdict; coder owns provider identity, launch,
observation, resume, and transport failure.
Require a frozen request with mode, exact provider or selection policy, substitution policy, role/evidence packet paths and digests, return schema, timeout, and persistence requirement. Then:
- Set
umask 077, create one uniquemktemp -drun directory, reject unsafe turn identifiers, and require every temporary artifact realpath beneath it. - Start in that empty directory with user/project instructions, plugins, hooks, MCP servers, repository customization, and write tools disabled. Treat supplied artifacts as untrusted data; omit secrets and credential files.
- Keep prompt, role packet, output, events, stderr, exit status, provider session ID, CAAM alias when applicable, and process handle distinct. Deliver prompts through files/stdin, not untrusted argv interpolation.
- Use a PTY for Codex when the launcher exposes it and no PTY for Claude. Launch nonblocking under a command-enforced timeout; exit 124 is failure.
- Create one explicit session and resume only that ID. Never use recency such
as
--last,latest, or an ambiguous session index when runs may overlap. - After terminal failure, verify no child remains. After retaining the bounded result and durable evidence outside the run directory, remove temporary packet copies without deleting durable provider-session evidence.
Allow one focused transport retry in the same explicit session. Then return the attention packet on unavailable identity, timeout, failed resume, evidence mismatch, or the same blocker twice. Never substitute a forbidden provider or convert the read-only request into implementation.
Inline Codex And LazyCodex Protocol
For direct trusted-local Codex, use command codex exec with JSON events,
closed stdin, a frozen prompt, and an output-last-message file. Capture the
first thread.started.thread_id immediately. Resume only that explicit thread
from the same repository and identity; never use --last when runs can overlap.
Keep fast mode disabled for the LazyCodex worker policy. A direct background
launch has this artifact split; choose workspace-write for ordinary work and
the bypass flag only for a bounded task in an externally trusted checkout:
(
cd "$runner_repo"
command codex exec \
--sandbox workspace-write \
--disable fast_mode \
-C "$runner_repo" \
--json \
--output-last-message "$runner_task_dir/last.txt" \
- < "$runner_task_dir/prompt.txt" \
> "$runner_task_dir/events.jsonl" \
2> "$runner_task_dir/stderr.log"
) &
runner_pid=$!
The current resume surface has no -C. Change to the repository first, reuse
the same CAAM identity, and pass the exact thread ID:
cd "$runner_repo"
command codex exec resume \
--dangerously-bypass-approvals-and-sandbox \
--disable fast_mode \
--json \
--output-last-message "$runner_task_dir/resume-last.txt" \
"$runner_thread_id" \
- < "$runner_task_dir/resume-prompt.txt" \
> "$runner_task_dir/resume-events.jsonl" \
2> "$runner_task_dir/resume-stderr.log"
Poll the recorded process and bounded event/stderr tails. No artifact growth across two checks is a diagnostic trigger, not proof of failure. Inspect the process before terminating it; if recovery is safe, resume the same thread with the smallest correction. Preserve every attempt separately.
LazyCodex is a worker policy, role set, hook set, and evidence protocol—not an
auth home. Do not route auth through ~/.codex-lazycodex-trial. Resolve identity
through CAAM and model policy through the project/Lev profile.
When the active agent surface exposes selectable LazyCodex roles, use the
right-sized lazycodex-worker-low|medium|high role and its evidence hook. Use
lazycodex-code-reviewer for checkpoint code/spec review,
lazycodex-qa-executor for independent runtime QA when the task requires it,
and lazycodex-gate-reviewer only for a final gate. If the surface cannot bind
installed role definitions, put the complete role, difficulty, deliverable,
scope, hard refs, and verifier contract in the child prompt and record that the
named role was not independently selected.
LazyCodex evidence hooks may reject incomplete worker reports. Preserve that evidence behavior, but do not inherit an unbounded review-until-approval loop; the SDD verdict and retry limits below control continuation.
After a Codex profile change, heed CAAM's daemon warning. A disk auth swap does not prove an existing daemon changed identity; restart only through an explicit authorized CAAM/runtime action and bind the resumed session to the verified profile.
Parallelize only independent discovery or review lanes. Give each lane a non-overlapping scope plus its own prompt, task directory, event stream, stderr, final output, process handle, and session ID. Exploration lanes are read-only; never share artifact paths or resume by recency.
Other Providers
Claude Code direct fallback uses print mode with stream-json, partial events,
and normal project customization. Preserve the full event stream and extract
the terminal result after exit. CAAM's macOS keychain bridge participates in
profile validation and activation.
(
cd "$runner_repo"
claude --print \
--permission-mode bypassPermissions \
--output-format stream-json \
--include-partial-messages \
--verbose \
< "$runner_task_dir/prompt.txt" \
> "$runner_task_dir/events.jsonl" \
2> "$runner_task_dir/stderr.log"
)
Extract the terminal type: "result" record after exit. An empty stderr file
does not prove the worker was idle. Use --resume <session-id> for a focused
continuation when the installed CLI reports that session.
OpenCode direct fallback uses opencode run from the project root and captures
stdout, stderr, exit status, and stable session identity when exposed. Do not
infer CAAM profile support merely because caam doctor can see OpenCode auth.
Inspect the installed opencode run --help before using its permission, model,
or resume flags; installations without a runnable binary are unavailable, not a
reason to guess syntax.
Gemini direct fallback uses headless --prompt, --approval-mode plan for
read-only review, and --output-format stream-json when an event ledger is
needed. Capture its explicit project session and resume by the exact session
selector reported by the installed CLI; never use --resume latest when runs
can overlap. CAAM validation and the live Gemini result follow the same
preflight-versus-provider precedence above.
Pi is the thin-worker option. A Lev-flavored Pi loads one explicit, versioned
Lev extension bundle plus the frozen project context. Bare --no-extensions
Pi remains a diagnostic profile and cannot prove Lev semantics. CAAM applies
only to the underlying provider when a typed binding exists; otherwise report
that identity boundary as unverified. Detailed live syntax may be checked in
references/claude.md,
references/opencode.md, and
references/pi.md when that provider is selected.
SDD
SDD uses one coder role and one independent reviewer role. The controller owns the plan, context packet, gates, cadence, integration, and escalation.
Checkpoint Mode
Default --sdd executes the largest coherent PR-sized batch that remains safe
to review. Start with a cap of three completed slices or roughly 500 changed
lines, tuned downward for risky/shared code. The controller runs declared gates
before review; a known-failing batch returns to implementation unless the
reviewer is explicitly asked for diagnosis rather than approval.
Review immediately for public API/schema/protocol/config/storage changes; auth, permissions, secrets, money, deletion, concurrency, lifecycle, process or session management; cross-package or ownership boundaries; more than five files; failed/flaky/changed tests; or worker-reported uncertainty.
Pair Mode
--sdd=pair keeps one explicit coder session and one explicit reviewer session.
The reviewer first checks the slice contract, the coder implements one complete
slice, the controller runs its gates, and the same reviewer session evaluates
the resulting diff and evidence. Pairing occurs at slice boundaries, never per
tool call. Use it for architecture-sensitive, auth, migration, concurrency,
lifecycle, session, or public-contract work.
Review Contract
Give the reviewer a frozen packet: objective, completed and remaining slices, batch boundary, acceptance, risk triggers, changed files/diffstat, important diffs, verifier commands/results, runtime/e2e status, known concerns, and one review question. Ask for new blocking evidence, not generic commentary.
Reviewer verdicts are APPROVED, NEEDS_CHANGES, BLOCKED, or NO_RESULT.
Fix concrete findings with the coder or directly when surgical. Do not create
an automatic approval loop. Retry NO_RESULT once with a smaller packet, then
escalate. Stop when the same finding appears twice, two reviewer attempts are
unusable, reviewer count exceeds coder count without new evidence, or a finding
changes the plan, architecture, or public contract.
After all slices, run project-level verification and one final integration review over the intended user/runtime path. Isolated green unit tests do not prove integration.
Monitor, Verify, And Land
Monitor process state plus bounded artifacts; quiet alone is not a hang. Resume the same provider session with a focused correction. Never silently replace a failed worker with a fresh session or unrelated hand edits.
Harvest the final report, inspect the entire diff, replay every claimed focused verifier from the controller shell, and review scope, weakened tests, identity, and project-rule compliance. The controller owns acceptance and landing.
When landing is authorized, stage only scoped files and follow the repository's commit/push protocol. Merge when freshness is required; never rebase. Re-run gates after integration.
Attention Packet
Escalate on invalid credentials, exhausted account capacity, unrecoverable explicit session, material worker decision, failed declared gate, requested runtime/profile unavailable, or the same blocker twice.
Return provider, profile alias, project/workstream, topology and role, Lev execution/FlowMind node, provider session ID, failure class, last successful event, evidence paths, healthy fallback availability, and the smallest human action. Never expose tokens, auth contents, or secret-bearing logs.
Completion
Done means the requested behavior is present, controller checks pass, the diff is scoped, the provider session and identity binding are recorded, SDD review and integration obligations are settled, and residual promotion gates are explicit.