@jphutchins/code-review 0.1.0-alpha.3 → 0.1.0-alpha.31

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,44 @@ 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 shared serializer is
103
+ [`src/surface.ts`](src/surface.ts).
104
+ - **`code-review-transcript`** — the full Claude Code session transcripts for the triage and review
105
+ phases. This is advisory/auditability only: it is never read by the comment job and never affects
106
+ what gets posted.
107
+
78
108
  ## What's here
79
109
 
80
110
  - **[SPEC.md](SPEC.md)** — the normative, provider-agnostic specification.