gm-skill 2.0.2309 → 2.0.2310

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-plugkit",
3
- "version": "2.0.2309",
3
+ "version": "2.0.2310",
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": {
package/gm.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.2309",
3
+ "version": "2.0.2310",
4
4
  "description": "Spool-dispatch orchestration engine with unified state machine, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-skill",
3
- "version": "2.0.2309",
3
+ "version": "2.0.2310",
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",
@@ -128,4 +128,4 @@ Memory via `memorize-fire` dispatch stores in `.gm/rs-learn.db` and is retrieved
128
128
 
129
129
  Subagent prompts should reference the gm skill and task specifics only, without restating verb names, spool paths, or protocol mechanics already supplied by invocation.
130
130
 
131
- **This file is not gm's whole procedure.** The phase-specific behavioral prose (SPECIFY/PROVE/EMIT/STATE/CONC/SEC/RES/DECIDE, gate reasons, deviation text) is served live by rs-plugkit's `instruction` verb from compiled Rust consts -- not authored in this file. Resolution is three-tier, per key, each tier overriding the one before: (1) `.gm/instructions/<key>.md` local vendored override, always wins; (2) a configured source repo synced by the daemon into `.gm/instructions-source-cache/` when `.gm/instructions/source.json` ({repo, branch, path}) is present -- lets an org or project pull shared prose from any git repo without forking rs-plugkit; (3) the compiled-in default, the final fallback. A skill-improvement pass (e.g. workflow-forge) editing only this file's numbered steps misses that entire layer: changing the compiled default means editing `rs-plugkit/crates/plugkit-core/src/orchestrator/instructions/prose/*.md` directly (single-sourced there, `include_str!`'d at build) -> a push+CI+cascade rebuild, never a direct edit here. This file holds only: invocation syntax, transition markers, gate-condition summaries, spool-dispatch mechanics, and constraints -- the boot-edge ABI a skill-runner interacts with before the served prose takes over.
131
+ **This file is not gm's whole procedure.** The phase-specific behavioral prose lives elsewhere: SPECIFY/PROVE/EMIT/STATE/CONC/SEC/RES/DECIDE, gate reasons, and deviation text. rs-plugkit's `instruction` verb serves it live from `AnEntrypoint/gm-config`, not from this file. Resolution is three-tier, per key, each tier overriding the one before. Tier one: `.gm/instructions/<key>.md`, a local vendored override, always wins. Tier two: `gm-config`'s cached checkout, consulted with zero configuration by default. Point `.gm/config.source.json` at a fork or a private repo to use a different one. Tier three: a compiled-in Rust default. It serves only as an emergency fallback when `gm-config` is genuinely unreachable. A skill-improvement pass (for example workflow-forge) that edits only this file's numbered steps misses that entire layer. The actual served prose lives in `gm-config`'s `prose/*.md`. Edit it and push it directly to `gm-config` main -- no rs-plugkit rebuild, no cascade, no release. Editing `rs-plugkit/crates/plugkit-core/src/orchestrator/instructions/prose/*.md` changes only the emergency fallback text. It never changes what a healthy project resolves. This file holds only invocation syntax, transition markers, gate-condition summaries, spool-dispatch mechanics, and constraints. It is the boot-edge ABI a skill-runner uses before the served prose takes over.