gm-skill 2.0.2559 → 2.0.2560
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/AGENTS.md +1 -1
- package/gm-plugkit/package.json +1 -1
- package/gm.json +1 -1
- package/package.json +1 -1
- package/skills/gm/SKILL.md +3 -2
package/AGENTS.md
CHANGED
|
@@ -30,7 +30,7 @@ Repo root = package root = published `gm-skill` npm package; no factory, no sepa
|
|
|
30
30
|
|
|
31
31
|
Plugkit-core = the wasm cdylib guest (the gm brain), published as `plugkit.wasm`/`plugkit-slim.wasm` from `AnEntrypoint/plugkit-bin` by the cascade. It is host-agnostic, and `agentplug-runner` is the SOLE host that loads it. The JS wasm-host and the redundant `gm-runner` native host (crate and `gm-runner.yml` CI workflow) are both retired and removed from the tree -- absent from rs-plugkit's `crates/` and `.github/workflows/`, no longer a stage in the cascade; there is no fallback loader, agentplug-runner is required.
|
|
32
32
|
|
|
33
|
-
**`agentplug-runner`** (repo `AnEntrypoint/agentplug`, published to `AnEntrypoint/agentplug-bin`) is a real native wasmtime binary that loads gm.wasm as one plugin among siblings (`bert`/`libsql`/`treesitter`), routing gm.wasm's `host_plugin_call`/`host_vec_embed` to those shared plugins -- browser and task are both native in agentplug-host, needing nothing from the retired JS wrapper. Full mechanics: the recall store (`recall: agentplug-runner wasmtime plugin loading mechanics`).
|
|
33
|
+
**`agentplug-runner`** (repo `AnEntrypoint/agentplug`, published to `AnEntrypoint/agentplug-bin`) is a real native wasmtime binary that loads gm.wasm as one plugin among siblings (`bert`/`libsql`/`treesitter`), routing gm.wasm's `host_plugin_call`/`host_vec_embed` to those shared plugins -- browser and task are both native in agentplug-host, needing nothing from the retired JS wrapper. The `browser` verb defaults to oxibrowser (pure-Rust, headless, `agentplug/crates/agentplug-host/src/oxibrowser_driver.rs`); the `cdp` verb (`rs-plugkit/crates/plugkit-core/src/wasm_dispatch/verbs.rs`) drives real Chrome over CDP for screenshots, full layout fidelity, and multi-tab sessions oxibrowser cannot do. Both share one plain-text body grammar. Full mechanics: the recall store (`recall: agentplug-runner wasmtime plugin loading mechanics`, `recall: browser cdp oxibrowser split`).
|
|
34
34
|
|
|
35
35
|
The `gm-plugkit` npm identity stays load-bearing as the thin launcher edge only: `bun x gm-plugkit@latest spool` (`cli.js::tryDelegateToRunner`) re-execs the `agentplug-runner` executable staged at `~/.gm-tools/agentplug-runner` and exits -- there is no silent no-loader state. The launcher-edge install path (`~/.gm-tools`) and the runner's own runtime state (`~/.agentplug`) are two different directories; always check `~/.agentplug/plugins/gm.version` for what is actually being served, never `~/.gm-tools`. Full path-split mechanics: the recall store (`recall: agentplug-runner runtime-state path split`). Size + embedded-model mechanics: the recall store (`recall: WASM-only plugkit size mechanics`).
|
|
36
36
|
|
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.2560",
|
|
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": {
|
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.2560",
|
|
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",
|
package/skills/gm/SKILL.md
CHANGED
|
@@ -63,8 +63,9 @@ Both verbs share one plain-text body grammar, never CLI flags: `session
|
|
|
63
63
|
new|list|close <id>|reset <id>`, `timeout=<ms>`, `url=<target>`, `dom=<selector>`,
|
|
64
64
|
or bare JS. Prefixes stack. `cdp` additionally accepts `screenshot[=name]`,
|
|
65
65
|
`capture`, `profile`, `trace`, and `viewport=`, which `browser` rejects outright
|
|
66
|
-
(see line 54-55). `
|
|
67
|
-
dispatches. Every response carries
|
|
66
|
+
(see line 54-55). Unlike `browser`'s no-op session commands, `cdp` sessions
|
|
67
|
+
persist a real Chrome process across dispatches. Every response carries
|
|
68
|
+
`result.debug`.
|
|
68
69
|
|
|
69
70
|
Ground truth only: no mocks, fakes, or test files on disk. Verification is live
|
|
70
71
|
witnessed execution, same turn as the work. Reasoning is execution, not monologue.
|