gm-skill 2.0.2231 → 2.0.2233
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 +32 -9
- package/bin/plugkit-slim.wasm.sha256 +1 -1
- package/bin/plugkit.version +1 -1
- package/bin/plugkit.wasm.sha256 +1 -1
- package/gm-plugkit/package.json +1 -1
- package/gm-plugkit/plugkit-slim.wasm.sha256 +1 -1
- package/gm-plugkit/plugkit.version +1 -1
- package/gm.json +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,27 +1,48 @@
|
|
|
1
1
|
# glootius maximus (gm)
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**Your coding agent doesn't decide when it's done. A gate does.**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
```
|
|
6
|
+
$ transition to=COMPLETE
|
|
7
|
+
|
|
8
|
+
DENIED CONSOLIDATE -> COMPLETE 2 residuals
|
|
9
|
+
|
|
10
|
+
x worktree-clean 3 uncommitted files
|
|
11
|
+
x ci-validated-fresh .ci-validated sha 7c90878 != HEAD e8ea29f
|
|
12
|
+
|
|
13
|
+
next: git_finalize
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Most agent harnesses ask the model to follow a process. gm makes the process a program the model cannot talk its way past.
|
|
6
17
|
|
|
7
18
|
[](https://www.npmjs.com/package/gm-skill) [](./LICENSE) [](https://discord.com/invite/c9VV59MKNr) [](https://anentrypoint.github.io/gm/)
|
|
8
19
|
|
|
9
|
-
**[Install](#install)** · **[How it works](#how-it-works)** · **[Release pipeline](#release-pipeline)** · **[Developing gm itself](#developing-gm-itself)** · **[Full paper (site)](https://anentrypoint.github.io/gm/paper/)** · **[Discord](https://discord.com/invite/c9VV59MKNr)** · **[License](#license)**
|
|
20
|
+
**[Why gm hits different](#why-gm-hits-different)** · **[Install](#install)** · **[How it works](#how-it-works)** · **[Release pipeline](#release-pipeline)** · **[Developing gm itself](#developing-gm-itself)** · **[Full paper (site)](https://anentrypoint.github.io/gm/paper/)** · **[Discord](https://discord.com/invite/c9VV59MKNr)** · **[License](#license)**
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
npx gm-skill install
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Why gm hits different
|
|
27
|
+
|
|
28
|
+
**The COMPLETE gate is code, not a prompt.** Seven conditions guard the last transition -- PRD closed, mutables resolved, worktree clean, residual scan fired, CI green against the current HEAD sha, browser witness coverage, submodules in sync. They are a `Vec<String>` on an edge in `fsm.rs`, evaluated in Rust. A failed gate refuses the transition. The agent cannot narrate its way to done.
|
|
10
29
|
|
|
11
|
-
|
|
30
|
+
**A refused transition tells the agent what to do next.** Gate denials carry the recovery verb: `worktree-clean` returns `git_finalize`, `ci-validated-fresh` returns `exec_js`. You get an instruction, not an error.
|
|
12
31
|
|
|
13
|
-
|
|
32
|
+
**Repeat the same failure and it stops you.** After the same denial fires repeatedly, the response stops restating the refusal and instructs the agent to record the stuck state and switch to a bounded-retry discipline. Loops end.
|
|
14
33
|
|
|
15
|
-
|
|
34
|
+
**Zero test files, and that is checkable.** Search this repo for `*.test.*`, `*.spec.*`, `__tests__`, or a jest config. There are none, and there never will be. Verification means running the real path and reading the real output in the same turn. VERIFY also greps the diff for `Mock*`/`Fake*`/`Stub*` -- a mock shipped as a real integration is the same violation as a test file.
|
|
16
35
|
|
|
17
|
-
|
|
36
|
+
**You can loosen the rules, and it will tell on you.** The phase graph is JSON at `.gm/instructions/fsm/graph.json`. Rewire edges, add states, swap gates. gm compares your graph against the compiled default and reports every edge you made weaker.
|
|
37
|
+
|
|
38
|
+
This is extremely opinionated. It narrows bash to a handful of prefixes, routes git through verbs, refuses to write test files, forces a push before a session ends, and rejects any execute call without an explicit timeout. If that sounds terrible, this is not for you. If that sounds like what you wish your agent did automatically, keep sitting down.
|
|
39
|
+
|
|
40
|
+
14000+ hours of supervised modification, 8800+ commits, one person. Free, open source. Named after **glootius maximus**, the muscle that holds you in the chair while you finish the work.
|
|
18
41
|
|
|
19
42
|
## install
|
|
20
43
|
|
|
21
44
|
A Claude Code Agent Skill is just a directory at `~/.claude/skills/<name>/SKILL.md` (personal, all projects) or `.claude/skills/<name>/SKILL.md` (one project). The directory name becomes the slash command. No marketplace, no `npx skills` library -- the installer copies the directory into place.
|
|
22
45
|
|
|
23
|
-
**The npm package is `gm-skill`, not `gm`.** `npx gm@latest` resolves to an unrelated, unmaintained GraphicsMagick wrapper (`gm` on npm, last published years ago) with no `install` command -- it fails with `could not determine executable to run`. Always spell out the full package name below.
|
|
24
|
-
|
|
25
46
|
Interactive (offers Claude Code settings):
|
|
26
47
|
|
|
27
48
|
```
|
|
@@ -40,6 +61,8 @@ Project-local instead of home (`./.claude/skills/gm`):
|
|
|
40
61
|
npx gm-skill install --project
|
|
41
62
|
```
|
|
42
63
|
|
|
64
|
+
Spell out the full package name: the npm package is `gm-skill`, not `gm`. `npx gm@latest` resolves to an unrelated, unmaintained GraphicsMagick wrapper with no `install` command and fails with `could not determine executable to run`.
|
|
65
|
+
|
|
43
66
|
The skill installs as `/gm`. On Claude Code the installer also offers (interactive) or sets (`--yes`):
|
|
44
67
|
|
|
45
68
|
- `autoCompactEnabled: true`
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
60e3bf889d0082230f5f70725d6a505151ccb0a536d4d9a9aa624eb6f4394529 plugkit-slim.wasm
|
package/bin/plugkit.version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1055
|
package/bin/plugkit.wasm.sha256
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
0cb40f7078c9618869c595e4185d370b85c0a4458f0b7d7797c2513a03eca7cf plugkit.wasm
|
package/gm-plugkit/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm-plugkit",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2233",
|
|
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": {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
60e3bf889d0082230f5f70725d6a505151ccb0a536d4d9a9aa624eb6f4394529 plugkit-slim.wasm
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1055
|
package/gm.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2233",
|
|
4
4
|
"description": "Spool-dispatch orchestration engine with unified state machine, skills, and automated git enforcement",
|
|
5
5
|
"author": "AnEntrypoint",
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,5 +17,5 @@
|
|
|
17
17
|
"publishConfig": {
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
|
-
"plugkitVersion": "0.1.
|
|
20
|
+
"plugkitVersion": "0.1.1055"
|
|
21
21
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm-skill",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2233",
|
|
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",
|