Agent Execution Mode
Use this skill for parent-agent implementation workflows.
This skill defines how the parent agent plans, executes, validates, and delegates work, including the mandatory code-review handoff path.
Code review orchestration (mandatory)
When a code review workflow is requested or required:
- Do not use built-in review entrypoints:
/reviewcodex reviewcodex exec review- any equivalent wrapper.
- Launch the
code_review_tssidecar defined inagents/code-review-ts.toml. - Provide complete context to the sidecar:
- specification/acceptance criteria,
- desired outcomes,
- changed files and directly affected paths,
- auth/privilege/architecture constraints.
- Require the sidecar to execute
ts-code-validation-gatebefore semantic review. - Treat gate failure as fail-fast: no semantic review pass is valid until the gate passes.
- Require a single-pass, uncapped review result (P0 through nitpick) with all findings reported at once.
- Require the
SubagentStopcoverage validator to approve transcript tool-call evidence before accepting the handoff. - After review, create and maintain a remediation document for all findings.
- Resolve all remediation items before requesting another review pass.
Parent ownership
The parent agent remains responsible for:
- final correctness and integration,
- remediation completion,
- final validation and status,
- user-facing communication.
Subagents assist; they do not own completion.