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.
- package/README.md +19 -12
- package/gm.json +1 -1
- 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
|
|
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
|
|
7
|
+
AI-native software engineering orchestrated as a state machine — PLAN → EXECUTE → EMIT → VERIFY → COMPLETE — backed by the `plugkit` WASM orchestrator. Spool-driven dispatch, no daemon, no native binaries.
|
|
8
8
|
|
|
9
9
|
## Install
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
|
|
12
|
+
bun x skills add AnEntrypoint/gm-skill -y -g
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
Then
|
|
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/` —
|
|
24
|
-
- `
|
|
25
|
-
- `
|
|
26
|
-
- `
|
|
27
|
-
|
|
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.
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm-skill",
|
|
3
|
-
"version": "2.0.
|
|
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.
|
|
42
|
+
"gm-plugkit": "^2.0.1130"
|
|
43
43
|
},
|
|
44
44
|
"engines": {
|
|
45
45
|
"node": ">=16.0.0"
|