@jphutchins/code-review 0.1.0-alpha.4 → 0.1.0-alpha.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -25,8 +25,9 @@ the security boundary, and the cost.
25
25
  ## The CLI
26
26
 
27
27
  The npm package is the **deterministic commenter** — the presentation and posting layer that no
28
- model should do, plus the adapter glue between an agent CLI's native output and the spec's abstract
29
- envelope ([SPEC §6.1](SPEC.md#61-result-envelope)).
28
+ model should do, plus the adapter glue between an agent CLI's native output and the abstract result
29
+ envelope defined in [`src/schema.ts`](src/schema.ts) (the deliverable of
30
+ [SPEC §3.2](SPEC.md#32-the-deliverable)).
30
31
 
31
32
  ```sh
32
33
  npm install -g @jphutchins/code-review
@@ -38,10 +39,14 @@ npx @jphutchins/code-review <subcommand>
38
39
  | --- | --- |
39
40
  | `post` | Post a complete review (inline comments + sticky summary) from findings + envelope + diff — the one-call path |
40
41
  | `gather` | Resolve the PR from the CI head SHA and gather the review inputs (diff with git-diff fallback, PR context, prior bot review, failing-job logs) into the workspace for the agent |
42
+ | `parse-command` | Resolve a PR's head from its number and parse a ChatOps trigger comment (`/code-review [24m] [$1.00] <instructions>`) into review overrides — the on-demand comment trigger |
43
+ | `react` | Add/remove a GitHub comment reaction — the ChatOps acknowledgement (👀 on receipt, 🚀 on completion) |
44
+ | `await-ci` | Wait for a PR head's CI run to conclude and emit its real conclusion + run id — so an on-demand comment review routes on the CI result (success → full, failure → mechanic) instead of reviewing blind |
41
45
  | `render` | Render the sticky-comment markdown from findings + usage + prices |
42
46
  | `inline` | Build the GitHub reviews `comments[]` payload from findings + diff (in-diff validation; strays demote to the summary) |
43
- | `adapt` | Map a native agent-CLI result envelope onto the abstract SPEC §6.1 envelope |
47
+ | `adapt` | Map a native agent-CLI result envelope onto the abstract result envelope (`src/schema.ts`) |
44
48
  | `extract` | Recover findings/triage JSON from a native envelope via the deterministic extraction ladder |
49
+ | `validate-patches` | Validate each finding's `patch` against the real PR-head file, aligning the finding's line range to it and keeping the patch (projected into a suggestion at render time), or dropping the patch |
45
50
  | `cost` | Recompute USD cost from the envelope's per-model token counts + a price map |
46
51
  | `validate` | Validate findings JSON against the published schema |
47
52
  | `print-schema` | Print a bundled schema (findings, triage, prices) |
@@ -62,19 +67,87 @@ in [templates/](templates/). See [docs/adapters.md](docs/adapters.md) for the ad
62
67
  letting the CLI pick where your key gets sent.
63
68
  3. Commit `.github/prices.json` (fork [schema/prices.example.json](schema/prices.example.json) and
64
69
  fill in your provider's per-token rates) — without it the cost footer renders **$0**
65
- ([SPEC §6.2](SPEC.md#62-price-map)).
70
+ ([SPEC §4.4](SPEC.md#44-required-controls-conformance)).
66
71
  4. Merge to your default branch first — `workflow_run` only fires from the default branch, so the
67
72
  introducing PR won't review itself — then open a test PR.
68
73
  5. First run: consider `egress-policy: audit` to discover the real allowlist, then switch to `block`
69
- ([SPEC §8.4](SPEC.md#84-egress-allowlist)).
74
+ ([SPEC Appendix A](SPEC.md#appendix-a--reference-realization-github-actions-non-normative)).
75
+ 6. Optional — add on-demand reviews too: copy
76
+ [examples/workflows/review-on-comment.yaml](examples/workflows/review-on-comment.yaml) so a
77
+ write-access user can comment `/code-review [24m] [$1.00] <instructions>` on a PR to review it
78
+ now, with an optional per-run budget and focus. Comment before CI finishes and it waits for CI and
79
+ routes on the real result (success → full review, failure → mechanic), same as the CI trigger. See the
80
+ [ChatOps section](examples/workflows/README.md#comment--chatops-trigger-on-demand-reviews) for the
81
+ security model.
70
82
 
71
83
  Every model knob is committed step `env` on the workflow's triage and review steps — models,
72
84
  efforts, the subagent model, and the tier aliases, right where each is consumed — edited and
73
- PR-reviewed like the rest of the file ([SPEC §8.5](SPEC.md#85-model-backend-env)). Only the backend
74
- endpoint is a per-repo **Actions variable** (`API_BASE_URL`, required, no default); pointing it at
85
+ PR-reviewed like the rest of the file (implementation detail the spec deliberately leaves to this
86
+ repo see [SPEC Appendix A](SPEC.md#appendix-a--reference-realization-github-actions-non-normative)).
87
+ Only the backend endpoint is a per-repo **Actions variable** (`API_BASE_URL`, required, no default); pointing it at
75
88
  another provider requires adding that provider's API host to the workflow's egress allowlist in the
76
89
  same reviewed PR.
77
90
 
91
+ ## Artifacts
92
+
93
+ The review job uploads two artifacts, each visible from the workflow run the sticky's disclosure
94
+ links to:
95
+
96
+ - **`code-review-findings`** — the findings JSON + result envelope the comment job renders. The
97
+ sticky comment embeds this same JSON directly, base64-encoded, in an
98
+ `<!-- code-review:findings-json;base64 <base64> -->` HTML comment — a reviewing agent (or any
99
+ downstream tool) SHOULD base64-decode and parse that marker rather than parse the comment's prose.
100
+ Embedding in the comment (rather than only linking the artifact) keeps the pointer from expiring
101
+ with artifact retention; when the encoded findings are too large to embed, the sticky falls back to
102
+ a `<!-- code-review:findings-json <url> -->` link marker instead (the linked `findings.json` is the
103
+ agent's draft and lacks the surfaced fields below) — the shared serializer is
104
+ [`src/surface.ts`](src/surface.ts).
105
+
106
+ The embedded document is the **surfaced** findings document: the agent's findings
107
+ (`schema_version` 0.5.0 contract, which is what the review agent is held to and what
108
+ [`schema/findings.schema.json`](schema/findings.schema.json) validates) stamped with the
109
+ `0.7.0` surface version plus the pipeline-computed convergence state of the **last completed
110
+ full-review round**:
111
+
112
+ ```json
113
+ {
114
+ "schema_version": "0.7.0",
115
+ "verdict": "comment",
116
+ "summary": "...",
117
+ "convergence": { "score": 1, "threshold": 1, "converged": true },
118
+ "round": 2,
119
+ "findings": []
120
+ }
121
+ ```
122
+
123
+ `convergence` (`score` = critical·4 + major·2 + minor·1 + nit·0, `threshold` default 1, `converged`
124
+ = score ≤ threshold, as a literal boolean) and `round` (the count of completed full-review rounds)
125
+ are the deterministic **stop signal** for an iterating author-agent: `converged: true` means the
126
+ last completed round is at or below the convergence tolerance, so another iteration round is not
127
+ warranted. The agent never writes these fields — the commenter computes them from the review's own
128
+ severities at render time — and they are omitted until at least one full-review round has
129
+ completed. They survive the "review in progress" banner: the banner replaces only the sticky's
130
+ prose and carries the embedded marker forward verbatim. The 0.7.0 surfaced contract applies to the
131
+ **whole-document** marker only; each inline comment embeds a per-finding fragment
132
+ (`schema_version` + one finding) at the draft's own version, since the fragment carries no stop
133
+ signal.
134
+
135
+ Semantics on non-round posts: a mechanic (CI-fix) pass or an envelope-loss post embeds the
136
+ **last completed round's stored signal** (round + its own threshold — never re-derived, so an
137
+ operator changing `convergence_threshold` mid-PR cannot flip a stored `converged`) beside its own
138
+ findings, so the signal always describes the last completed full-review round, not the findings
139
+ that happen to sit beside it. A notice — a post whose verdict is `error` or whose run did not
140
+ complete (empty diff, corrupt output, did-not-complete) — embeds **no** signal in its own blob:
141
+ its document already says no review was produced this run, and a carried `converged` beside that
142
+ would read as a stop signal for a run that produced none; the last completed round's signal still
143
+ survives on the sticky in the compact `<!-- code-review:signal;base64 <base64> -->` marker, so
144
+ the next post reads it back. The same compact marker is emitted when the embedded payload is too
145
+ large and the whole-document marker falls back to the artifact link — an oversized review's stop
146
+ signal stays readable and can be carried forward.
147
+ - **`code-review-transcript`** — the full Claude Code session transcripts for the triage and review
148
+ phases. This is advisory/auditability only: it is never read by the comment job and never affects
149
+ what gets posted.
150
+
78
151
  ## What's here
79
152
 
80
153
  - **[SPEC.md](SPEC.md)** — the normative, provider-agnostic specification.