patchrelay 0.67.0 → 0.67.1
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 +3 -1
- package/dist/build-info.json +3 -3
- package/dist/prompting/patchrelay.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -114,10 +114,12 @@ See the [merge-steward package README](./packages/merge-steward/README.md) for t
|
|
|
114
114
|
|
|
115
115
|
## Docs
|
|
116
116
|
|
|
117
|
+
- [Concepts](./docs/concepts.md) — the shared mental model (three roles, four primitives, four states, carry-forward, eviction). Start here.
|
|
117
118
|
- [Self-hosting and deployment](./docs/self-hosting.md) — install, ingress, OAuth and GitHub App setup
|
|
118
119
|
- [Architecture](./docs/architecture.md) — components, ownership, state machine, failure taxonomy
|
|
119
120
|
- [Operator guide](./docs/operator-guide.md) — daily loop, CLI cheatsheet, troubleshooting
|
|
120
|
-
- [Merge queue](./docs/merge-queue.md) — the
|
|
121
|
+
- [Merge queue](./docs/merge-queue.md) — the three-service delivery story
|
|
122
|
+
- [GitHub queue contract](./docs/github-queue-contract.md) — bus artifacts, identity algorithms, configurable names
|
|
121
123
|
- [Prompting](./docs/prompting.md) — how workflow files and the built-in scaffold compose
|
|
122
124
|
- [Secrets](./docs/secrets.md) — systemd credentials, resolution order
|
|
123
125
|
- [review-quill reference](./docs/review-quill.md) · [merge-steward reference](./docs/merge-steward.md)
|
package/dist/build-info.json
CHANGED
|
@@ -305,7 +305,7 @@ function buildRequestedChangesContext(runType, context) {
|
|
|
305
305
|
else {
|
|
306
306
|
const reviewer = typeof context?.reviewerName === "string" ? context.reviewerName : undefined;
|
|
307
307
|
const reviewBody = typeof context?.reviewBody === "string" ? context.reviewBody.trim() : "";
|
|
308
|
-
lines.push("Requested changes on the existing PR branch.", "Goal: restore review readiness on the current PR branch. Push a newer head only when the fix actually changes the diff; if the reviewer-pass produces only comments, test wording, or PR-body changes, edit the PR body via `gh pr edit` instead.", "Address the real concern behind the feedback and verify nearby invariants in the touched flow before you publish.", reviewer ? `Reviewer: ${reviewer}` : "", reviewBody ? `Review summary:\n${reviewBody}` : "");
|
|
308
|
+
lines.push("Requested changes on the existing PR branch.", "Goal: restore review readiness on the current PR branch. Push a newer head only when the fix actually changes the diff; if the reviewer-pass produces only comments, test wording, or PR-body changes, edit the PR body via `gh pr edit` instead.", "Address the real concern behind the feedback and verify nearby invariants in the touched flow before you publish.", "For each review comment, identify the resource, epoch, or token it touches (e.g. session, capture, route, persistence handle, in-flight turn id), enumerate the other transitions that share that same resource, and verify each one before pushing — not just the exact path called out. If you find an adjacent transition that violates the same invariant, fix it in this iteration rather than waiting for the reviewer to surface it next round.", reviewer ? `Reviewer: ${reviewer}` : "", reviewBody ? `Review summary:\n${reviewBody}` : "");
|
|
309
309
|
appendStructuredReviewContext(lines, context);
|
|
310
310
|
}
|
|
311
311
|
return lines.join("\n").trim();
|