gm-plugkit 2.0.2550 → 2.0.2552

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/SKILL.md CHANGED
@@ -48,10 +48,22 @@ means unavailable: fall back, never retry blindly. Where served: `codesearch`
48
48
  `transition`, `phase-status`, `filter`. `git_finalize {message}` bundles
49
49
  add->commit->porcelain-gate->push->CI-watch; where absent, compose it.
50
50
 
51
- `browser` body is plain-text prefixed, never CLI flags: `session
51
+ `browser` runs a headless engine (oxibrowser, pure Rust) by default -- fast,
52
+ no Chrome process, but a narrower surface: navigate/evaluate/dom-query/
53
+ extract-markdown only, one implicit session per instance (`session
54
+ new/close/reset` are accepted no-ops), and no screenshot/capture/profile/
55
+ trace/viewport. `cdp` is the same plain-text-body contract driving real
56
+ Chrome over CDP (playwright-style) for anything `browser` cannot do yet --
57
+ full CSS/layout fidelity, real screenshots, devtools-dependent sites, or
58
+ genuine multi-tab sessions. A `browser` dispatch that fails or names an
59
+ unsupported mode returns a `note` pointing at `cdp`; try that next rather
60
+ than reworking the `browser` call.
61
+
62
+ Both verbs share one plain-text body grammar, never CLI flags: `session
52
63
  new|list|close <id>|reset <id>`, `timeout=<ms>`, `url=<target>`,
53
- `screenshot[=name]`, `dom=<selector>`, or bare JS. Prefixes stack. Sessions
54
- persist Chrome across dispatches. Every response carries `result.debug`.
64
+ `screenshot[=name]`, `dom=<selector>`, or bare JS. Prefixes stack. `cdp`
65
+ sessions persist a real Chrome process across dispatches. Every response
66
+ carries `result.debug`.
55
67
 
56
68
  Ground truth only: no mocks, fakes, or test files on disk. Verification is live
57
69
  witnessed execution, same turn as the work. Reasoning is execution, not monologue.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-plugkit",
3
- "version": "2.0.2550",
3
+ "version": "2.0.2552",
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/plugkit.version CHANGED
@@ -1 +1 @@
1
- 0.1.1205
1
+ 0.1.1206