gm-skill 2.0.1128 → 2.0.1129

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.
Files changed (3) hide show
  1. package/README.md +15 -10
  2. package/gm.json +1 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,18 +1,18 @@
1
1
  # gm-skill — Canonical Universal Harness
2
2
 
3
- The single canonical body of the gm skill-driven orchestration harness. All 15 platform-specific `gm-<platform>` packages re-export this surface; this is the source of truth.
3
+ The single shipped skill for gm. Install into any harness that loads Claude-style skill directories Claude Code, OpenCode, Cursor, Zed, VS Code, Codex, Kilo, JetBrains, Copilot CLI, Antigravity, Windsurf, Gemini CLI — and plugkit serves every phase instruction, mutables row, and guardrail on demand via the spool.
4
4
 
5
5
  ## What this is
6
6
 
7
- AI-native software engineering orchestrated as a continuous chain — PLAN → EXECUTE → EMIT → VERIFY → UPDATE-DOCSbootstrapped on top of `plugkit` for task execution and session isolation. Spool-driven, daemonize-by-default, end-to-end chained.
7
+ AI-native software engineering orchestrated as a state machine — PLAN → EXECUTE → EMIT → VERIFY → COMPLETEbacked by the `plugkit` WASM orchestrator. Spool-driven dispatch, no daemon, no native binaries.
8
8
 
9
9
  ## Install
10
10
 
11
11
  ```bash
12
- npm install gm-skill
12
+ npm install -g gm-skill
13
13
  ```
14
14
 
15
- Then point your AI coding agent host (Claude Code, OpenCode, Cursor, Zed, VS Code, Codex, Kilo, JetBrains, Copilot CLI, Hermes, etc.) at the included `skills/` directory, or invoke the bootstrap directly:
15
+ Then point your AI coding agent host at the included `skills/` directory, or invoke the bootstrap directly:
16
16
 
17
17
  ```bash
18
18
  npx gm-skill-bootstrap
@@ -20,15 +20,20 @@ npx gm-skill-bootstrap
20
20
 
21
21
  ## What's inside
22
22
 
23
- - `skills/` — every shared skill (gm, gm-execute, gm-emit, gm-complete, planning, update-docs, browser, code-search, create-lang-plugin, governance, pages, research, ssh, textprocessing, gm-skill itself)
24
- - `bin/bootstrap.js`plugkit downloader + daemon launcher
25
- - `gm-plugkit/` — spool watcher and WASM wrapper
26
- - `lib/`daemon-bootstrap, skill-bootstrap, spool-dispatch, git, codeinsight modules
27
- - `agents/`, `prompts/`, `scripts/`, `lang/` — supporting surface
23
+ - `skills/gm-skill/` — the canonical universal harness (`SKILL.md` is the ~12-line entry point)
24
+ - `gm-plugkit/`WASM bootstrap and spool watcher wrapper
25
+ - `lib/` — skill-bootstrap, spool-dispatch, daemon-bootstrap, git, codeinsight modules
26
+ - `bin/plugkit.wasm.sha256`pinned hash of the plugkit WASM artifact
27
+
28
+ ## Architecture
29
+
30
+ All orchestration lives in `rs-plugkit/src/orchestrator/` as native Rust, compiled to a single `plugkit.wasm` (~<200KB). The agent dispatches verbs by writing to `.gm/exec-spool/in/<verb>/<N>.txt` and reading responses from `.gm/exec-spool/out/`. See [AGENTS.md](https://github.com/AnEntrypoint/gm/blob/main/AGENTS.md) for the full design.
31
+
32
+ An earlier generation fanned out fifteen per-platform downstream repos (gm-cc, gm-gc, gm-oc, gm-kilo, gm-codex, gm-qwen, gm-copilot-cli, gm-hermes, gm-thebird, gm-vscode, gm-cursor, gm-zed, gm-jetbrains, gm-antigravity, gm-windsurf). Those are archived; `gm-skill` is the single source of truth.
28
33
 
29
34
  ## Version
30
35
 
31
- `2.0.1128` — auto-bumped from the canonical `gm` repo. Every push to `AnEntrypoint/gm` republishes this package alongside all 15 platform packages.
36
+ `2.0.1129` — auto-bumped from the canonical `gm` repo. Every push to `AnEntrypoint/gm` (or any cascading sibling crate) republishes this package.
32
37
 
33
38
  ## Source of truth
34
39
 
package/gm.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.1128",
3
+ "version": "2.0.1129",
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.1128",
3
+ "version": "2.0.1129",
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",
@@ -39,7 +39,7 @@
39
39
  "gm.json"
40
40
  ],
41
41
  "dependencies": {
42
- "gm-plugkit": "^2.0.1128"
42
+ "gm-plugkit": "^2.0.1129"
43
43
  },
44
44
  "engines": {
45
45
  "node": ">=16.0.0"