gm-skill 2.0.2295 → 2.0.2297

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,13 +25,13 @@ npx gm-skill install
25
25
 
26
26
  ## Why gm hits different
27
27
 
28
- **The COMPLETE gate is code, not a prompt.** Seven conditions guard the last transition -- PRD closed, mutables resolved, worktree clean, residual scan fired, CI green against the current HEAD sha, browser witness coverage, submodules in sync. They are a `Vec<String>` on an edge in `fsm.rs`, evaluated in Rust. A failed gate refuses the transition. The agent cannot narrate its way to done.
28
+ **The COMPLETE gate is code, not a prompt.** Nine conditions guard the last transition -- PRD closed, mutables resolved, worktree clean, residual scan fired, CI green against the current HEAD sha, browser witness coverage, submodules in sync, every claimed commit hash resolves against real git log, no hedge language in the diff. They are a `Vec<String>` on an edge in `fsm.rs`, evaluated in Rust. A failed gate refuses the transition. The agent cannot narrate its way to done.
29
29
 
30
30
  **A refused transition tells the agent what to do next.** Gate denials carry the recovery verb: `worktree-clean` returns `git_finalize`, `ci-validated-fresh` returns `exec_js`. You get an instruction, not an error.
31
31
 
32
32
  **Repeat the same failure and it stops you.** After the same denial fires repeatedly, the response stops restating the refusal and instructs the agent to record the stuck state and switch to a bounded-retry discipline. Loops end.
33
33
 
34
- **Zero test files, and that is checkable.** Search this repo for `*.test.*`, `*.spec.*`, `__tests__`, or a jest config. There are none, and there never will be. Verification means running the real path and reading the real output in the same turn. VERIFY also greps the diff for `Mock*`/`Fake*`/`Stub*` -- a mock shipped as a real integration is the same violation as a test file.
34
+ **Zero test files, and that is checkable.** Search this repo for `*.test.*`, `*.spec.*`, `__tests__`, or a jest config. There are none, and there never will be. Verification means running the real path and reading the real output in the same turn. DECIDE also greps the diff for `Mock*`/`Fake*`/`Stub*` -- a mock shipped as a real integration is the same violation as a test file.
35
35
 
36
36
  **You can loosen the rules, and it will tell on you.** The phase graph is JSON at `.gm/instructions/fsm/graph.json`. Rewire edges, add states, swap gates. gm compares your graph against the compiled default and reports every edge you made weaker.
37
37
 
@@ -1 +1 @@
1
- a2e8be4d6b20b5860c21105136e9e788f1e84a15af28564f39c651fed86bb8b6 plugkit-slim.wasm
1
+ e4241d3ca95d727af0b06b1d7c1c7254e88cac074721d9a612c3033fbea2ca4e plugkit-slim.wasm
@@ -1 +1 @@
1
- 0.1.1075
1
+ 0.1.1076
@@ -1 +1 @@
1
- af72bfc3f26ea921ec1286d07d7367f538c34ab62a3f279fa1e2284d72899a74 plugkit.wasm
1
+ 0e466cd4050a79a1a2b8f3032b7f66af1fac8bc0e355e0dd14fa3911f12778c4 plugkit.wasm
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-plugkit",
3
- "version": "2.0.2295",
3
+ "version": "2.0.2297",
4
4
  "description": "Bootstrap and daemon-spawn tool for gm plugkit binary. Downloads the correct platform wasm, verifies SHA256, and launches agentplug-runner (the native wasm host) as the spool watcher daemon.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -1 +1 @@
1
- a2e8be4d6b20b5860c21105136e9e788f1e84a15af28564f39c651fed86bb8b6 plugkit-slim.wasm
1
+ e4241d3ca95d727af0b06b1d7c1c7254e88cac074721d9a612c3033fbea2ca4e plugkit-slim.wasm
@@ -1 +1 @@
1
- 0.1.1075
1
+ 0.1.1076
package/gm.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.2295",
3
+ "version": "2.0.2297",
4
4
  "description": "Spool-dispatch orchestration engine with unified state machine, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
@@ -17,5 +17,5 @@
17
17
  "publishConfig": {
18
18
  "access": "public"
19
19
  },
20
- "plugkitVersion": "0.1.1075"
20
+ "plugkitVersion": "0.1.1076"
21
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-skill",
3
- "version": "2.0.2295",
3
+ "version": "2.0.2297",
4
4
  "description": "Canonical universal harness — AI-native software engineering via skill-driven orchestration; bootstraps plugkit for task execution and session isolation. Install in any AI coding agent host.",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",