Kyoso Review
Kyoso is a multi-agent review gate for AI coding workflows. It coordinates Codex and Claude through ACP and returns a structured plan, security, or diff review.
Use this skill when the user explicitly asks for:
- Kyoso
- multi-agent review
- plan review
- security review
- CISA Secure by Design review
- diff review
- second opinion from Codex and Claude
Do not use this skill for every coding task. It is intended for deliberate review checkpoints.
Workflow
- Determine whether the user wants a plan review, security review, or diff review.
- Summarize the user's goal.
- Gather relevant context:
- repo summary
- current plan if available
- selected files
- unified diff if available
- constraints
- Run the review through the first available path:
- Prefer the corresponding Kyoso MCP tool when it is available:
plan_reviewsecurity_reviewdiff_review
- If the MCP tools are unavailable, use the CLI fallback with JSON output:
plan_review->npx -y @kyo-so/cli plan --goal <text> [--plan <path-or-text>] [--file <path>] --jsonsecurity_review->npx -y @kyo-so/cli security --goal <text> [--diff <path>] [--file <path>] --jsondiff_review->npx -y @kyo-so/cli diff --base <ref> --head <ref> --json
bunx @kyo-so/climay be used instead ofnpx -y @kyo-so/cli.- The CLI also accepts
--repo-summary, repeatable--constraint, and repeatable--fileflags. For a large review, adjust an agent timeout with--set agents.<agent>.timeoutMs=<ms>. - Run the CLI without a config trust flag first. Inspect
audit.warningsin the JSON result; if it containsuntrusted config was not executed, or the command fails with an untrusted-config message, ask the user whether to rerun with--trust-configto use it or--ignore-configto skip it. Never add--trust-configwithout confirmation. - Keep
--jsonenabled and interpret the returneddecisionexactly like the MCP result.
- Prefer the corresponding Kyoso MCP tool when it is available:
- Treat
decision: blockas a stop signal. Present the result to the user before implementing. - Treat
decision: approve_with_changesas requiring changes to the plan or implementation. - Do not claim Kyoso modified files. Kyoso only reviews.