@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
- Use `--include-dirty` only when the complete current workspace is the intended
270
- candidate; otherwise commit the intended bytes first. Read the receipt for the
271
- candidate, gate/placement stop, and any physical-effect lag. A not-complete
272
- delivery is still a recorded `tendered` candidate.
273
-
274
- `deliver` freshly tenders the candidate and requests placement. A current audit
275
- attestation is reused only when its integration snapshot and Verification
276
- segment still match; changes to the worktree, target, policy, document,
277
- Verification, or snapshot-producing options make it stale.
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; satisfied requests placement. A current defect, missing, failed, or
285
- stale required evidence, or terms too ambiguous or contradictory to judge all
286
- yield unsatisfied, with the summary naming what blocks. Advice beyond the terms
287
- belongs in the summary and never changes the verdict by itself.
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 one Contract candidate from the appointed worktree.";
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 one Contract candidate from the appointed worktree.",
55
+ purpose: "Deliver your work as this Contract's candidate.",
56
56
  details: [
57
- " --include-dirty Capture the complete non-ignored worktree tree as the",
58
- " candidate; stages nothing, commits nothing, including",
59
- " an unmerged shared index.",
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astrosheep/keiyaku",
3
- "version": "4.5.9",
3
+ "version": "4.5.10",
4
4
  "files": [
5
5
  "build"
6
6
  ],