Stable Interfaces (CLI / GitHub Actions)
River Review is growing as an OSS project, and internal implementations may change. However, we define stable contracts so users can adopt it with confidence.
Breaking changes generally require a major version bump. What counts as a breaking change is decided by the component stability labels and the Stable Contract enumeration below. On a Beta surface, changing an element that the Stable Contract does not list ships in a minor or patch release.
Stable Contract
The following elements are treated as "public interfaces":
- Skill definitions (
schemas/skill.schema.json) and their semantics (severity/confidence, etc.) - GitHub Actions (
runners/github-action/action.yml) inputs / outputs and behavior - CLI (
river/river-review) commands/options - CLI gate-decision exit codes (
0/1/2/3as returned by--fail-on/--warn-on/--gate) - Idempotent update method for PR comments (marker)
The CLI entry above covers command and option names and their meanings. It does not cover which surfaces accept a given option; that acceptance scope follows Beta, the label of the CLI surface as a whole (see "Versioning (Handling Breaking Changes)" below).
Exit codes are declared at two granularities by purpose. Only the gate-decision codes above, the ones CI reads as the gate result, belong to the Stable Contract. Usage-error exit codes (failure to interpret arguments) are excluded and follow Beta, the label of the CLI surface as a whole. See "Exit Code Stability" below for the reasoning.
Component Stability Labels
Current stability level for each surface.
| Label | Definition |
|---|---|
| Stable | Breaking changes require a major version bump. Recommended for production |
| Beta | API may change in minor versions. Deprecation notice given before removal |
| Experimental | May change or be removed without notice. Use for evaluation only |
| Surface | Label | Notes |
|---|---|---|
| GitHub Action | Beta | v0.x, breaking changes possible |
CLI (river command) | Beta | Surface is Beta; only the elements listed in the Stable Contract are held to Stable |
Skill Schema (schemas/skill.schema.json) | Beta | CI-validated, field extensions possible |
Flow Schema (schemas/flow.schema.json) | Experimental | Contract added in #2013; no execution engine yet. schemas/flow-entry-map.schema.json and flows/entry-map.json carry the same Experimental label |
Agent Contract (schemas/agent-contract.schema.json) | Experimental | Contract added in #2014; no execution engine yet |
Execution Manifest (schemas/execution-manifest.schema.json) | Experimental | Contract added in #2015; the Review Artifact linkage is additive and optional. Since #2054 PR-4, river run --save records under .river/runs/*.json and river review plan / review exec (replay included) artifacts carry executionManifest as their last key |
Node API (runners/node-api/) | Experimental | private: true, not published to npm |
| Agent Skills bridge | Experimental | Added in v0.9.0, still maturing |
| Riverbed Memory | Experimental | Design phase, stabilization planned for v1 |
CLI (river) Reference (Minimal)
Commands
river run <path>: Run review locallyriver doctor <path>: Diagnose config/prerequisites and offer hints
Main Options
--phase <upstream|midstream|downstream>: Review phase (Default:midstream)--planner <off|order|prune>: Planner mode (Default:off)--dry-run: Run without calling external APIs--offline(alias--rules-only): Skip AI even when an API key is set; review on deterministic mechanical checks only (reproduces the Auto-approve gate locally when CI is unavailable)--debug: Output debug info--explain: Print the resolved skills / gates / config tier in human-readable form (to stderr)--estimate: Cost estimation only (no review execution)--max-cost <usd>: Abort if estimate exceeds limit--output <text|markdown|json|yaml|html>: Output format (GitHub Actions usesmarkdown; see YAML output foryamland HTML output for the self-containedhtmlreport)--context <list>: Available contexts (e.g.,diff,fullFile)--dependency <list>: Available dependencies (e.g.,code_search,test_runner)--base <ref>: Branch / ref the diff is taken against (run,skills, andreview plan|exec|routeshare one resolution path, and a surface that reads no diff does not accept the flag at all; which surfaces accept it, how the value is validated, and the exit code of the resulting usage error are all outside the Stable Contract — the Runner CLI reference is the SSoT)--entry <name>(Beta): accepted byreview planandreview exec; appends the review Flow pin (flow) and its required inputs (evidenceRequirements) to the emitted artifact, and onreview execalso the per-step outcomes of running that Flow (steps, record only in Epic #2011 AC7 P2). The flag and the three fields are outside the Stable Contract — the Runner CLI reference is the SSoT
Exit Codes
Findings-based exit codes are non-zero only when --fail-on / --warn-on is specified. Without --fail-on, a successful run exits 0 regardless of findings. Usage errors (unknown options, surplus positionals, missing or invalid option values) and runtime errors exit 1 regardless of --fail-on (#1709; this is the "Invalid input" row below).
| Exit code | Condition | Description |
|---|---|---|
0 | --fail-on not specified / --advisory-only / max severity < warn rank | Pass (always 0) |
1 | --fail-on <sev> specified and max severity ≥ fail rank | Fail (blocking threshold met) |
2 | --warn-on <sev> specified and max severity ≥ warn rank but < fail rank | Warn (warn threshold met, below fail) |
1 | Invalid input / git diff failure / skill validation failure / --max-cost exceeded, etc. | Error exit |
Severity rank (low → high): info=0 / minor=1 / major=2 / critical=3
For the full usage contract including stop conditions, divergence guards, and oscillation detection in self-fix loops, see Loop Convergence Contract.
Exit Code Stability
Exit codes are declared at two granularities by purpose.
| Purpose | Label | Bump required to change |
|---|---|---|
Gate decision (0 / 1 / 2 / 3 as returned by --fail-on / --warn-on / --gate) | Stable | major |
| Usage error (failure to interpret arguments) | Beta | Follows the label of the CLI surface as a whole (minor OK) |
Gate-decision exit codes map directly onto CI job success or failure. If the meaning of a threshold changes silently, users stop detecting failures. They therefore belong to the Stable Contract, and changing them requires a major version bump. Note that 3 under --gate means ESCALATE (human approval required); the river review family also assigns 3 to handler-layer configuration errors (see river review plan spec).
Usage-error exit codes carry no review result. They only report that the arguments were not accepted, and their detection layer and granularity move every time a gap in misuse detection is closed. They therefore follow Beta, the label of the CLI surface as a whole. Concretely, #1709 unified argument errors from exit 0 to exit 1 across every command, and the granularity was then split into 1 for the parse layer and 3 for handler-layer configuration errors. Those changes shipped in the minor releases v1.71.0 (#1735) and v1.72.0 (#1746).
GitHub Actions (river-review) Reference (Minimal)
inputs (Stable)
See runners/github-action/action.yml for definition.
phase:upstream|midstream|downstreamplanner:off|order|prunetarget: Repository path to reviewcomment: Whether to post PR comment (only forpull_request)dry_run: Run without calling external APIsdebug: Output debug infoestimate: Run cost estimation onlymax_cost: Abort if estimate exceeds limitnode_version: Node.js version for Action execution
inputs (Beta)
entry: a review Flow entry name (a key ofentriesinflows/entry-map.json). When set, the step runsreview plan --plan-only --entry <value>and emits the Review Artifact (withflowandevidenceRequirements); left empty (default) therunpath is unchanged. The value is forwarded verbatim and the Action holds no judgment about it (ADR-009 D3). Whenentryis set,gate/dry_run/estimate/max_cost/comment/inline_commentsdo not apply (plan-only runs no review, so there is nothing to gate or to post). #2054 PR-5; the Runner CLI reference is the SSoT
outputs (Stable)
comment_path: Path to Markdown output in Actions runner temp area (used for posting PR comment)
PR Comment Contract (Idempotent)
- Updates comment containing
<!-- river-review -->marker; creates new if missing. - Truncates tail if comment body is too long (limit exists).
Claude Code plugin hooks (Beta)
hooks/hooks.json ships two lifecycle hooks: PostToolUse (runs the consumer project's prettier after Write / Edit) and, since #2054 PR-5, Stop. Stop runs scripts/plugin-task-checkpoint-hook.sh, which emits a Review Artifact through river review plan --plan-only --entry review-task. It is the Claude Code adapter for the neutral task-checkpoint trigger and carries nothing but the entry name (ADR-009 D3).
- No model call and no cost (plan-only)
- Takes 1–7 seconds (5.0–5.4 s over 3 runs on the river-review repository itself, 6.7 s on another machine; a large repository may hit the
timeout: 60cutoff) - Writes under
$TMPDIR/river-review-task-checkpoint/, never into the working tree, keeping up to 20 previous artifacts (RIVER_TASK_CHECKPOINT_KEEP); pruning runs before the write, so at most 21 exist after a run - Skips with exit 0 when no CLI is available (no npm install and no
node_modulesin the plugin) or when the run fails, so the session is never blocked. The hook requiresCLAUDE_PLUGIN_ROOT/node_modules: install the npm package, or runnpm ciin the plugin directory - Opt out with the environment variable
RIVER_TASK_CHECKPOINT_HOOK=0, or/plugin disable river-review@river-review-marketplace
Versioning (Handling Breaking Changes)
Changing the following requires a major version bump as a breaking change:
- Changing/Removing
riverCLI option names or meanings - Changing the meaning of a gate-decision exit code (
0/1/2/3as returned by--fail-on/--warn-on/--gate) - Changing/Removing Action inputs / outputs
- Changing required fields in Skill Schema, or changing meanings of existing fields
The following are not treated as breaking changes and ship in a minor or patch release:
- Changing a usage-error exit code (failure to interpret arguments); it follows the Beta label of the CLI surface as a whole
- Narrowing which surfaces accept an option, where the dropped surfaces never consumed its value (#2065). "Changing/Removing
riverCLI option names or meanings" above means removing the option itself. On a surface that stopped accepting the flag, the call itself now fails as a usage error and exits 1, so that surface no longer runs. Because the value was never read, dropping the flag from the call reproduces the previous result exactly, which makes the migration a one-line edit at the call site — so narrowing acceptance is not breaking. The affected surfaces and the migration steps are listed in the Runner / CLI reference. Resolving a trailing subcommand word (#2081) is the exception: dropping the flag fromriver skills --base main importdoes not bring back the review ofimport/, andriver skills --output json import, which carries no--base, runs as the subcommand in the same way. Write a directory that shares a subcommand's name asriver skills ./import
For stable Action behavior, we recommend pinning to a release tag (e.g., @v1.22.0) instead of @main.
Schema Versioning Policy
JSON Schema files under schemas/ carry a version field (for example "version": { "const": "1" } in review-artifact.schema.json).
- Backward-compatible additions (optional fields, new
enumvalues) stay in the same schema file. - Breaking changes (new required fields, changing an existing field's type or meaning, removing
enumvalues) follow one of:- Create a new schema file (e.g.
review-artifact.v2.schema.json), assignversion: const "2", and keep the old schema for at least one major version. - Use
oneOfin the existing schema so old and new versions coexist. Discriminate on theversionfield so a single$refcan handle multiple versions.
- Create a new schema file (e.g.
When adding a new schema, remember to update related documentation (pages/reference/_meta.json, etc.).