@astrosheep/keiyaku 4.5.9 → 4.5.10
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.
|
@@ -266,25 +266,29 @@ Deliver when the worktree content is the candidate you intend to land:
|
|
|
266
266
|
keiyaku deliver <contract> --include-dirty
|
|
267
267
|
```
|
|
268
268
|
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
269
|
+
Deliver when the work is ready to be judged, not when Git looks tidy. `git
|
|
270
|
+
commit` only shapes the candidate; skipping it is fine — `deliver
|
|
271
|
+
--include-dirty` captures the complete non-ignored worktree. Deliver and review
|
|
272
|
+
answer different questions: deliver records the candidate and places and claims
|
|
273
|
+
by itself only when every placement obligation is current; a review gate is
|
|
274
|
+
satisfied only by review testimony over the current candidate, and a satisfied
|
|
275
|
+
review may itself be the invocation that places and claims. Reviewing before any
|
|
276
|
+
delivery is legal but records testimony only — it creates no candidate and
|
|
277
|
+
authorizes nothing. A Contract without a review gate needs no review.
|
|
278
|
+
|
|
279
|
+
A current audit attestation is reused only when its integration snapshot and
|
|
280
|
+
Verification segment still match; changes to the worktree, target, policy,
|
|
281
|
+
document, Verification, or snapshot-producing options make it stale.
|
|
278
282
|
|
|
279
283
|
## Review Gates
|
|
280
284
|
|
|
281
285
|
The Reviewer owns the answer. A gate review compares the full current candidate
|
|
282
286
|
against every journaled Criterion — the floor that cannot be reduced — and
|
|
283
287
|
testifies satisfied or unsatisfied over the current document identity and
|
|
284
|
-
worktree
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
+
worktree. A current defect, missing, failed, or stale required evidence, or
|
|
289
|
+
terms too ambiguous or contradictory to judge all yield unsatisfied, with the
|
|
290
|
+
summary naming what blocks. Advice beyond the terms belongs in the summary and
|
|
291
|
+
never changes the verdict by itself.
|
|
288
292
|
|
|
289
293
|
```bash
|
|
290
294
|
keiyaku review <contract> --satisfied --summary "<conclusion>"
|
|
@@ -134,7 +134,7 @@ export declare const CONTRACT_COMMAND_SPECS: {
|
|
|
134
134
|
readonly json: "boolean";
|
|
135
135
|
};
|
|
136
136
|
readonly usage: "deliver [<contract>|@<contract>] [--message <text>] [--include-dirty] [--materialize-conflict] [--json]";
|
|
137
|
-
readonly purpose: "Deliver
|
|
137
|
+
readonly purpose: "Deliver your work as this Contract's candidate.";
|
|
138
138
|
readonly details: string;
|
|
139
139
|
};
|
|
140
140
|
readonly review: {
|
|
@@ -52,11 +52,18 @@ export const CONTRACT_COMMAND_SPECS = {
|
|
|
52
52
|
json: "boolean",
|
|
53
53
|
},
|
|
54
54
|
usage: "deliver [<contract>|@<contract>] [--message <text>] [--include-dirty] [--materialize-conflict] [--json]",
|
|
55
|
-
purpose: "Deliver
|
|
55
|
+
purpose: "Deliver your work as this Contract's candidate.",
|
|
56
56
|
details: [
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
57
|
+
"A clean worktree delivers its HEAD; --include-dirty captures every non-ignored",
|
|
58
|
+
"byte as an immutable commit object without changing the appointed worktree's HEAD",
|
|
59
|
+
"or real index. Runs or reuses Verification and requests placement: when every",
|
|
60
|
+
"prerequisite and declared gate is current, the same invocation places and claims.",
|
|
61
|
+
"Otherwise the candidate is recorded and the Contract is tendered. A prior git",
|
|
62
|
+
"commit is optional preparation — it never delivers, and delivering never",
|
|
63
|
+
"satisfies a review gate.",
|
|
64
|
+
"",
|
|
65
|
+
" --include-dirty Include all non-ignored worktree bytes, including an",
|
|
66
|
+
" unmerged shared index, in the candidate commit.",
|
|
60
67
|
" --materialize-conflict After a conflict result, project the judged targetHead",
|
|
61
68
|
" into the worktree as an uncommitted merge. Not a",
|
|
62
69
|
" delivery: resolve, then deliver with --include-dirty.",
|
|
@@ -19,6 +19,9 @@ export const CONTRACT_DELIVERER_SKILL = [
|
|
|
19
19
|
"",
|
|
20
20
|
"## Deliver",
|
|
21
21
|
"",
|
|
22
|
+
"`deliver` creates the immutable candidate commit. When the finished worktree itself is the candidate, use `deliver --include-dirty`;",
|
|
23
|
+
"Keiyaku captures its complete non-ignored state without moving this worktree's HEAD or real index.",
|
|
24
|
+
"",
|
|
22
25
|
"```bash",
|
|
23
26
|
"keiyaku deliver <contract> --include-dirty",
|
|
24
27
|
"keiyaku deliver <contract> --materialize-conflict",
|