canary-check

star 10

Run a local canary command and persist redacted pass/fail evidence through the nils-cli canary-check command.

graysurf By graysurf schedule Updated 5/17/2026

name: canary-check description: Run a local canary command and persist redacted pass/fail evidence through the nils-cli canary-check command.

Canary Check

Use this skill when a workflow needs a repeatable local canary result after a change, release, or deploy handoff.

Contract

Prereqs:

  • The caller owns the canary command and its side-effect profile.
  • Use read-only or explicitly approved commands for release/deploy evidence.
  • Required released PATH usage: canary-check available on PATH from nils-cli 0.8.4 or newer.
  • Release boundary: 0.8.4 is the release that includes nils-agent-workflow-primitives.
  • Local checkout fallback: Rust/Cargo plus a validated local 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:

  • run: required --out DIR, --name TEXT, and --command TEXT; optional --expect-exit CODE, --preview-bytes N, and --format text|json.
  • verify / show: required --out DIR; optional --format text|json.

Outputs:

  • Writes canary-check.json under --out DIR.
  • JSON stdout uses versioned schema values such as cli.canary-check.run.v1.
  • Captured stdout/stderr previews are redacted and truncated.

Exit codes:

  • 0: command succeeded; for verify, latest canary status is pass.
  • 1: runtime failure, canary command failure, or incomplete canary evidence.
  • 64: usage error.

Failure modes:

  • canary-check is unavailable on PATH and no validated local checkout invocation is being used.
  • Evidence directory cannot be created or written.
  • The canary command cannot start or exits with a code different from --expect-exit.
  • Caller runs a destructive canary without explicit workflow approval; the caller owns command safety.

Setup

Required released PATH boundary:

canary-check --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 canary-check -- --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.

Commands

Required released PATH command:

canary-check run --out <dir> --name <name> --command <command> [--expect-exit 0] [--format json]
canary-check verify --out <dir> [--format json]
canary-check show --out <dir> [--format json]
canary-check completion <bash|zsh>

Local checkout fallback command:

cargo run --locked --manifest-path /path/to/nils-cli/Cargo.toml \
  -p nils-agent-workflow-primitives --bin canary-check -- <subcommand> ...

Do not use this CLI to bypass project release gates; it records one canary outcome that higher-level workflows can cite.

Guardrails

  • The caller owns canary command safety; do not run destructive commands without explicit workflow approval.
  • Do not use canary-check to bypass project release, deploy, CI, or review gates.
  • Do not hand-edit canary-check.json or duplicate redaction, preview truncation, status, or JSON envelope logic in skill-local scripts.
Install via CLI
npx skills add https://github.com/graysurf/agent-kit --skill canary-check
Repository Details
star Stars 10
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator