gm-skill 2.0.1129 → 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 +7 -5
- package/gm.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -9,14 +9,16 @@ AI-native software engineering orchestrated as a state machine — PLAN → EXEC
|
|
|
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
|
|
|
@@ -33,7 +35,7 @@ An earlier generation fanned out fifteen per-platform downstream repos (gm-cc, g
|
|
|
33
35
|
|
|
34
36
|
## Version
|
|
35
37
|
|
|
36
|
-
`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.
|
|
37
39
|
|
|
38
40
|
## Source of truth
|
|
39
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"
|