gm-skill 2.0.1693 → 2.0.1695
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 +2 -2
- package/bin/plugkit.version +1 -1
- package/bin/plugkit.wasm.sha256 +1 -1
- package/gm-plugkit/package.json +1 -1
- package/gm-plugkit/plugkit-wasm-wrapper.js +17 -0
- package/gm-plugkit/plugkit.version +1 -1
- package/gm.json +2 -2
- package/package.json +1 -1
package/AGENTS.md
CHANGED
|
@@ -132,7 +132,7 @@ Every skill's `allowed-tools:` reduced to `Skill, Read, Write` (plus SKILL.md bo
|
|
|
132
132
|
|
|
133
133
|
**The agent IS the LLM rs-learn calls**: no separate judge model; decisions inline via spool. Internals: rs-learn (`recall: rs-learn self-report core internals`).
|
|
134
134
|
|
|
135
|
-
**Idempotency contract (f∘f≡f)**: spool dispatch
|
|
135
|
+
**Idempotency contract (f∘f≡f)**: spool dispatch is at-least-once; correctness rests on per-verb convergence (content-hash dedup, nothing-to-commit gates, digest gates); read-only verbs recompute, never cache. Per-verb enumeration: rs-learn (`recall: idempotency contract per-verb convergence`).
|
|
136
136
|
|
|
137
137
|
**host_exec_js is synchronous**: real per-call `timeoutMs` required (zero/missing = hard error). Detail: rs-learn (`recall: host_exec_js synchronous`).
|
|
138
138
|
|
|
@@ -188,7 +188,7 @@ One-shot system-state probe: dispatch `plugkit health` before assuming any compo
|
|
|
188
188
|
|
|
189
189
|
Site build + landing render: single-surface detail, drained to rs-learn (`recall: gm site build details`).
|
|
190
190
|
|
|
191
|
-
**The site consumes the `anentrypoint-design` SDK pro-rata, never overriding it.**
|
|
191
|
+
**The site consumes the `anentrypoint-design` SDK pro-rata, never overriding it.** Every visual change lands in the SDK repo, never local CSS; local `<style>` = render-mode plumbing only. Mechanism + repo pointers: rs-learn (`recall: design SDK pro-rata consumption`).
|
|
192
192
|
|
|
193
193
|
|
|
194
194
|
@.gm/next-step.md
|
package/bin/plugkit.version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.741
|
package/bin/plugkit.wasm.sha256
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
5fb0db7065cde4b417e566699e68e4f05f4258c5139cb3f2c69365bde83dcdea 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.1695",
|
|
4
4
|
"description": "Bootstrap and daemon-spawn tool for gm plugkit binary. Downloads the correct platform binary, verifies SHA256, and starts the spool watcher daemon. Includes plugkit-wasm-wrapper for WASM-based spool watching.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -3814,6 +3814,23 @@ async function runSpoolWatcher(instance, spoolDir) {
|
|
|
3814
3814
|
setInterval(() => { try { scanStalledTurns(); } catch (_) {} }, 30000);
|
|
3815
3815
|
writeStatus();
|
|
3816
3816
|
|
|
3817
|
+
setTimeout(() => {
|
|
3818
|
+
try {
|
|
3819
|
+
_writeStatusBusy(360000);
|
|
3820
|
+
const vb = new TextEncoder().encode('codesearch');
|
|
3821
|
+
const bb = new TextEncoder().encode(JSON.stringify({ query: 'index warmup', k: 1 }));
|
|
3822
|
+
const vp = writeWasmInput(instance, vb, 'boot-warmup:codesearch.verb');
|
|
3823
|
+
const bp = writeWasmInput(instance, bb, 'boot-warmup:codesearch.body');
|
|
3824
|
+
const t0 = Date.now();
|
|
3825
|
+
const r = dispatch(vp, vb.length, bp, bb.length);
|
|
3826
|
+
decodeWasmResult(instance, r, 'boot-warmup:codesearch');
|
|
3827
|
+
writeStatus();
|
|
3828
|
+
logEvent('plugkit', 'boot.index-warmup', { ms: Date.now() - t0 });
|
|
3829
|
+
} catch (e) {
|
|
3830
|
+
try { logEvent('plugkit', 'boot.index-warmup-failed', { error: String(e && e.message || e) }); } catch (_) {}
|
|
3831
|
+
}
|
|
3832
|
+
}, 3000);
|
|
3833
|
+
|
|
3817
3834
|
const TURN_SUMMARY_PATH = path.join(spoolDir, '.turn-summary.json');
|
|
3818
3835
|
function writeTurnSummary() {
|
|
3819
3836
|
try {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.741
|
package/gm.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1695",
|
|
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.741"
|
|
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.1695",
|
|
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",
|