gm-skill 2.0.1128 → 2.0.1130

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 +19 -12
  2. package/gm.json +1 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,34 +1,41 @@
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
+ bun x skills add AnEntrypoint/gm-skill -y -g
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 add this line to your agent's global memory / system prompt:
16
16
 
17
- ```bash
18
- npx gm-skill-bootstrap
19
17
  ```
18
+ always use the gm-skill skill for everything, always fan out subagents
19
+ ```
20
+
21
+ You need bun installed: `curl -fsSL https://bun.sh/install | bash`
20
22
 
21
23
  ## What's inside
22
24
 
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
25
+ - `skills/gm-skill/` — the canonical universal harness (`SKILL.md` is the ~12-line entry point)
26
+ - `gm-plugkit/`WASM bootstrap and spool watcher wrapper
27
+ - `lib/` — skill-bootstrap, spool-dispatch, daemon-bootstrap, git, codeinsight modules
28
+ - `bin/plugkit.wasm.sha256`pinned hash of the plugkit WASM artifact
29
+
30
+ ## Architecture
31
+
32
+ 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.
33
+
34
+ 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
35
 
29
36
  ## Version
30
37
 
31
- `2.0.1128` — auto-bumped from the canonical `gm` repo. Every push to `AnEntrypoint/gm` republishes this package alongside all 15 platform packages.
38
+ `2.0.1130` — auto-bumped from the canonical `gm` repo. Every push to `AnEntrypoint/gm` (or any cascading sibling crate) republishes this package.
32
39
 
33
40
  ## Source of truth
34
41
 
package/gm.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.1128",
3
+ "version": "2.0.1130",
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.1130",
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.1130"
43
43
  },
44
44
  "engines": {
45
45
  "node": ">=16.0.0"