ワンクリックで
review-evidence
Record review findings and final validation through the nils-cli review-evidence command.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Record review findings and final validation through the nils-cli review-evidence command.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Resume and execute implementation work from a plan-tracking GitHub issue that carries issue-hosted source, plan, and execution-state snapshots, preserving progress on the issue when local docs/plans files may be cleaned up.
Use when the user wants to open or continue a GitHub issue as the durable timeline for a discovered problem, investigation, blocker, implementation handoff, or unresolved follow-up loop.
Finalize and close plan-tracking GitHub issues after issue-backed execution is complete and the user or project policy has approved closure.
Open or preview a provider-aware GitHub or GitLab tracking issue for a docs/plans plan bundle, bootstrapping the source doc and plan first when the user has a converged feature discussion but no plan file yet.
Deliver a dispatch-ready plan by sprint: split plan tasks into PR lanes, dispatch subagent work, enforce acceptance gates, and advance through final integration without main-agent implementation.
Close out an existing plan-issue runtime where main-agent owns orchestration and review only, subagents own implementation task lanes, and close gates require approval plus merged PRs.
| name | review-evidence |
| description | Record review findings and final validation through the nils-cli review-evidence command. |
Use this skill when review findings need a normalized, mergeable evidence record before delivery or follow-up handoff.
Prereqs:
agent-out run directory.review-evidence available on PATH from nils-cli 0.8.4 or newer.0.8.4 is the release that includes nils-agent-workflow-primitives.nils-cli checkout that builds nils-agent-workflow-primitives, used
only when the PATH binary is absent or reports a version older than 0.8.4.Inputs:
init: required --out DIR and --subject TEXT; optional --reviewer TEXT, --force, and --format text|json.record-finding: required --out DIR, --severity high|medium|low, --path PATH, and --summary TEXT; optional --line N,
--status open|fixed|accepted-risk, repeatable --artifact PATH, and --format text|json.record-validation: required --out DIR, --command TEXT, and --status pass|fail; optional --summary TEXT and
--format text|json.verify / show: required --out DIR; optional --format text|json.code-review-specialists may be used as an
optional source of findings, mapped to this tool's high|medium|low severity
surface when retained evidence is needed.Outputs:
review-evidence.json under --out DIR.cli.review-evidence.verify.v1.verify requires at least one finding, passing validation, and no open high/medium findings.Exit codes:
0: command succeeded; for verify, review evidence is complete.1: runtime failure or incomplete review evidence.64: usage error.Failure modes:
review-evidence is unavailable on PATH and no validated local checkout invocation is being used.verify finds no findings, missing or failing validation, or open high/medium findings.Required released PATH boundary:
review-evidence --version
Use the PATH command when it resolves to nils-cli 0.8.4 or newer.
Local checkout fallback boundary:
cargo run --locked --manifest-path /path/to/nils-cli/Cargo.toml \
-p nils-agent-workflow-primitives --bin review-evidence -- --version
Run the Cargo form from the workflow's target directory. It is only a fallback transport for a validated local checkout when the released PATH binary is absent or too old. Do not mix PATH and local checkout evidence claims without stating which source was used.
Required released PATH command:
review-evidence init --out <dir> --subject <subject> [--format json]
review-evidence record-finding --out <dir> --severity high|medium|low --path <path> --summary <summary> [--status fixed]
review-evidence record-validation --out <dir> --command <command> --status pass|fail [--format json]
review-evidence verify --out <dir> [--format json]
review-evidence show --out <dir> [--format json]
review-evidence completion <bash|zsh>
Local checkout fallback command:
cargo run --locked --manifest-path /path/to/nils-cli/Cargo.toml \
-p nils-agent-workflow-primitives --bin review-evidence -- <subcommand> ...
review-evidence as a substitute for code-review judgment or patch inspection.review-evidence or code-review-specialists as a substitute for
review judgment; both provide evidence inputs.review-evidence.json or duplicate finding, validation, schema, or JSON envelope logic in skill-local scripts.