@jphutchins/code-review 0.1.0-alpha.5 → 0.1.0-alpha.50
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 +92 -8
- package/dist/index.js +5033 -1099
- package/dist/index.js.map +1 -1
- package/package.json +4 -2
- package/schema/VERSIONING.md +34 -2
- package/schema/findings.schema.json +223 -14
- package/schema/prices.example.json +8 -2
- package/schema/prices.schema.json +77 -24
- package/schema/v0.2/findings.schema.json +88 -0
- package/templates/comment.eta +131 -27
- package/templates/inline.eta +36 -5
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
|
|
29
|
-
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
|
|
@@ -37,11 +38,16 @@ npx @jphutchins/code-review <subcommand>
|
|
|
37
38
|
| Subcommand | What it does |
|
|
38
39
|
| --- | --- |
|
|
39
40
|
| `post` | Post a complete review (inline comments + sticky summary) from findings + envelope + diff — the one-call path |
|
|
40
|
-
| `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 |
|
|
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, the prior review's answered-findings registry, 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 |
|
|
45
|
+
| `check-scope` | Validate + normalize the workflow's `scope` input (the languages/inputs the project accepts) and print the normalized list for the review prompt, or nothing when empty (the reviewer then infers scope from the README's first paragraph); a structurally malformed value is rejected rather than spliced in as-is |
|
|
41
46
|
| `render` | Render the sticky-comment markdown from findings + usage + prices |
|
|
42
47
|
| `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
|
|
48
|
+
| `adapt` | Map a native agent-CLI result envelope onto the abstract result envelope (`src/schema.ts`) |
|
|
44
49
|
| `extract` | Recover findings/triage JSON from a native envelope via the deterministic extraction ladder |
|
|
50
|
+
| `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
51
|
| `cost` | Recompute USD cost from the envelope's per-model token counts + a price map |
|
|
46
52
|
| `validate` | Validate findings JSON against the published schema |
|
|
47
53
|
| `print-schema` | Print a bundled schema (findings, triage, prices) |
|
|
@@ -62,19 +68,97 @@ in [templates/](templates/). See [docs/adapters.md](docs/adapters.md) for the ad
|
|
|
62
68
|
letting the CLI pick where your key gets sent.
|
|
63
69
|
3. Commit `.github/prices.json` (fork [schema/prices.example.json](schema/prices.example.json) and
|
|
64
70
|
fill in your provider's per-token rates) — without it the cost footer renders **$0**
|
|
65
|
-
([SPEC §
|
|
71
|
+
([SPEC §4.4](SPEC.md#44-required-controls-conformance)).
|
|
66
72
|
4. Merge to your default branch first — `workflow_run` only fires from the default branch, so the
|
|
67
73
|
introducing PR won't review itself — then open a test PR.
|
|
68
74
|
5. First run: consider `egress-policy: audit` to discover the real allowlist, then switch to `block`
|
|
69
|
-
([SPEC
|
|
75
|
+
([SPEC Appendix A](SPEC.md#appendix-a--reference-realization-github-actions-non-normative)).
|
|
76
|
+
6. Optional — add on-demand reviews too: copy
|
|
77
|
+
[examples/workflows/review-on-comment.yaml](examples/workflows/review-on-comment.yaml) so a
|
|
78
|
+
write-access user can comment `/code-review [24m] [$1.00] <instructions>` on a PR to review it
|
|
79
|
+
now, with an optional per-run budget and focus. Comment before CI finishes and it waits for CI and
|
|
80
|
+
routes on the real result (success → full review, failure → mechanic), same as the CI trigger. See the
|
|
81
|
+
[ChatOps section](examples/workflows/README.md#comment--chatops-trigger-on-demand-reviews) for the
|
|
82
|
+
security model.
|
|
70
83
|
|
|
71
84
|
Every model knob is committed step `env` on the workflow's triage and review steps — models,
|
|
72
85
|
efforts, the subagent model, and the tier aliases, right where each is consumed — edited and
|
|
73
|
-
PR-reviewed like the rest of the file (
|
|
74
|
-
|
|
86
|
+
PR-reviewed like the rest of the file (implementation detail the spec deliberately leaves to this
|
|
87
|
+
repo — see [SPEC Appendix A](SPEC.md#appendix-a--reference-realization-github-actions-non-normative)).
|
|
88
|
+
Only the backend endpoint is a per-repo **Actions variable** (`API_BASE_URL`, required, no default); pointing it at
|
|
75
89
|
another provider requires adding that provider's API host to the workflow's egress allowlist in the
|
|
76
90
|
same reviewed PR.
|
|
77
91
|
|
|
92
|
+
## Artifacts
|
|
93
|
+
|
|
94
|
+
The review job uploads two artifacts, each visible from the workflow run the sticky's disclosure
|
|
95
|
+
links to:
|
|
96
|
+
|
|
97
|
+
- **`code-review-findings`** — the findings JSON + result envelope the comment job renders. The
|
|
98
|
+
sticky comment embeds this same JSON directly, base64-encoded, in an
|
|
99
|
+
`<!-- code-review:findings-json;base64 <base64> -->` HTML comment — a reviewing agent (or any
|
|
100
|
+
downstream tool) SHOULD base64-decode and parse that marker rather than parse the comment's prose.
|
|
101
|
+
Embedding in the comment (rather than only linking the artifact) keeps the pointer from expiring
|
|
102
|
+
with artifact retention; when the encoded findings are too large to embed, the sticky falls back to
|
|
103
|
+
a `<!-- code-review:findings-json <url> -->` link marker instead. The shared serializer is
|
|
104
|
+
[`src/surface.ts`](src/surface.ts).
|
|
105
|
+
|
|
106
|
+
The embedded document is the agent's **complete** findings document — the same `schema_version`
|
|
107
|
+
0.9.0 contract the review agent is held to and
|
|
108
|
+
[`schema/findings.schema.json`](schema/findings.schema.json) validates, and the same object the
|
|
109
|
+
comment is rendered from. The agent's fields are embedded verbatim; the pipeline stamps one field the
|
|
110
|
+
agent never writes — `convergence` (below) — so the whole review, findings and convergence signal
|
|
111
|
+
alike, travels as one JSON document with no side marker to drift from.
|
|
112
|
+
|
|
113
|
+
```json
|
|
114
|
+
{
|
|
115
|
+
"schema_version": "0.9.0",
|
|
116
|
+
"verdict": "comment",
|
|
117
|
+
"summary": "...",
|
|
118
|
+
"findings": [],
|
|
119
|
+
"convergence": {
|
|
120
|
+
"score": 0.42,
|
|
121
|
+
"threshold": 1,
|
|
122
|
+
"converged": true,
|
|
123
|
+
"rounds": [
|
|
124
|
+
{ "round": 1, "score": 2.4 },
|
|
125
|
+
{ "round": 2, "score": 1.1 },
|
|
126
|
+
{ "round": 3, "score": 0.42 }
|
|
127
|
+
]
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
The **`convergence`** field is the deterministic stop signal AND the per-round trajectory for an
|
|
133
|
+
iterating author-agent, carried in the JSON document itself so a decoder reads one object.
|
|
134
|
+
`convergence.score` sums each finding and systemic problem's
|
|
135
|
+
`floor(severity) + max(0, ceiling − floor) × confidence × likelihood` (ceilings critical 4 · major 2
|
|
136
|
+
· minor 1 · nit 0; floors critical `threshold + 0.01` · major 0.5 · minor 0.1 · nit 0), rounded to 2
|
|
137
|
+
decimals. A **systemic problem is scored with `likelihood` = 1** — a structural observation has no
|
|
138
|
+
single triggering input, so it is never discounted by likelihood. `threshold` defaults to 1, and
|
|
139
|
+
`converged` = score ≤ threshold as a literal boolean — `converged: true` means the last completed
|
|
140
|
+
round is at or below the tolerance, so another iteration is not warranted. `score` and `threshold`
|
|
141
|
+
are both carried so the number is interpretable on its own. `convergence.rounds` is the trajectory,
|
|
142
|
+
oldest first: each entry's `score` is a historical snapshot carried **verbatim**, so changing
|
|
143
|
+
`convergence_threshold` mid-PR never rewrites a past round's number. The commenter computes
|
|
144
|
+
`convergence` from the review's own severities (the agent never writes it) and stamps it, overwriting
|
|
145
|
+
any value the agent echoed; it appears once at least one full-review round has completed and is carried
|
|
146
|
+
forward afterward — a mechanic (CI-fix) pass or an envelope-loss notice carries the last completed
|
|
147
|
+
round's convergence unchanged rather than re-deriving it, and a notice never fabricates a signal for a
|
|
148
|
+
run that produced no review. The convergence survives the "review in progress" banner, which replaces
|
|
149
|
+
only the sticky's prose and carries the blob forward verbatim.
|
|
150
|
+
|
|
151
|
+
Cross-round recurrence (the sticky's "Scope metastasis" warning) is derived from the per-round
|
|
152
|
+
mechanism frequencies carried in `convergence.rounds` (each entry's `codes` map), from which the
|
|
153
|
+
re-review seed re-derives the advisory `scope_metastasis` entry it hands the next-round agent. Each
|
|
154
|
+
inline review comment embeds only its own finding (a `schema_version` + one-finding fragment), and the
|
|
155
|
+
review-object body only links the sticky — so the **sticky is the sole documented decode surface** for
|
|
156
|
+
the whole-document marker; a decoding agent reads it there. The review body is written only after the
|
|
157
|
+
sticky exists (a failed sticky write aborts the run first), so it never carries the blob itself.
|
|
158
|
+
- **`code-review-transcript`** — the full Claude Code session transcripts for the triage and review
|
|
159
|
+
phases. This is advisory/auditability only: it is never read by the comment job and never affects
|
|
160
|
+
what gets posted.
|
|
161
|
+
|
|
78
162
|
## What's here
|
|
79
163
|
|
|
80
164
|
- **[SPEC.md](SPEC.md)** — the normative, provider-agnostic specification.
|