gm-kilo 2.0.667 → 2.0.669

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.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/bin/plugkit.exe CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-kilo",
3
- "version": "2.0.667",
3
+ "version": "2.0.669",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
@@ -39,14 +39,31 @@ Multiple facts → parallel Agent calls in ONE message. End-of-turn: scan for un
39
39
 
40
40
  **Recall + memorize together = learning loop.** Skipping either breaks it.
41
41
 
42
+ ## AUTONOMY — HARD RULE
43
+
44
+ Default = autonomous execution. Emit PRD, run it to completion, push. Do NOT ask the user mid-task.
45
+
46
+ Forbidden patterns:
47
+ - "Should I continue with X?" / "Want me to do Y next?" / "Want me to also Z?"
48
+ - "This is a lot — should I do A first and confirm?" / "Two options: A or B, which?"
49
+ - Pre-confirmation before multi-file edits when scope is already clear
50
+ - Stopping after partial completion to summarize and await direction
51
+
52
+ Permitted asking (last resort only, when absolutely necessary):
53
+ - Destructive-irreversible decision with no prior context AND no PRD coverage
54
+ - User intent genuinely ambiguous AND cannot be inferred from PRD/memory/code
55
+ - Channel: prefer `exec:pause` (renames .gm/prd.yml → .gm/prd.paused.yml; question lives in header). In-conversation asking is last-resort only.
56
+
57
+ A long task is not a reason to ask. Context limits are not a reason to ask. CI cascade time is not a reason to ask. Just emit the PRD and execute.
58
+
42
59
  ## EXECUTION ORDER
43
60
 
44
61
  1. Recall — `plugkit recall` for any familiar-feeling unknown (cheapest, 200 tokens)
45
62
  2. Code execution (exec:<lang>, exec:codesearch) — 90%+ of unknowns
46
63
  3. Web (WebFetch/WebSearch) — env facts not in codebase
47
- 4. User — only when 1+2+3 exhausted AND decision is destructive-irreversible
64
+ 4. User — last resort per AUTONOMY rule above
48
65
 
49
- "Should I..." mid-chain = invoke next skill instead.
66
+ "Should I..." mid-chain = invoke next skill instead, never ask user.
50
67
 
51
68
  Skill chain: `planning` → `gm-execute` → `gm-emit` → `gm-complete` → `update-docs`
52
69
 
@@ -58,6 +58,14 @@ Multiple facts in one turn → parallel Agent calls in ONE message. End-of-turn:
58
58
 
59
59
  Runs until: .gm/prd.yml empty AND git clean AND all pushes confirmed AND CI green.
60
60
 
61
+ ## AUTONOMY — HARD RULE
62
+
63
+ After PRD is written, EXECUTE through to COMPLETE without asking the user. No mid-task confirmation. No "should I continue". No "want me to do X next". The PRD is the contract; execute it.
64
+
65
+ Asking is permitted ONLY when absolutely necessary: destructive-irreversible decision with no prior context, OR user intent ambiguous and unrecoverable from PRD/memory/code. Use `exec:pause` (renames prd.yml → prd.paused.yml; question lives in header) as the channel — in-conversation asking is last-resort.
66
+
67
+ Long task ≠ reason to ask. Cross-repo work ≠ reason to ask. CI wait time ≠ reason to ask. Emit PRD, execute, push.
68
+
61
69
  **Cannot stop while**: .gm/prd.yml has items | git has uncommitted changes | git has unpushed commits.
62
70
 
63
71
  ## SKIP PLANNING (DEFAULT for small work)