gm-skill 2.0.1168 → 2.0.1170
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 +1 -1
- package/bin/plugkit.version +1 -1
- package/bin/plugkit.wasm +0 -0
- package/bin/plugkit.wasm.sha256 +1 -1
- package/gm-plugkit/plugkit-wasm-wrapper.js +6 -2
- package/gm.json +2 -2
- package/package.json +2 -2
- package/skills/gm-skill/SKILL.md +2 -0
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ An earlier generation fanned out fifteen per-platform downstream repos (gm-cc, g
|
|
|
35
35
|
|
|
36
36
|
## Version
|
|
37
37
|
|
|
38
|
-
`2.0.
|
|
38
|
+
`2.0.1170` — auto-bumped from the canonical `gm` repo. Every push to `AnEntrypoint/gm` (or any cascading sibling crate) republishes this package.
|
|
39
39
|
|
|
40
40
|
## Source of truth
|
|
41
41
|
|
package/bin/plugkit.version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.422
|
package/bin/plugkit.wasm
CHANGED
|
Binary file
|
package/bin/plugkit.wasm.sha256
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
fc556868ffca7ab16ec04a13538bb42e853894f541a8251148165aa8e423dc83 plugkit.wasm
|
|
@@ -1289,8 +1289,10 @@ async function runSpoolWatcher(instance, spoolDir) {
|
|
|
1289
1289
|
const files = [];
|
|
1290
1290
|
try {
|
|
1291
1291
|
for (const entry of fs.readdirSync(dir)) {
|
|
1292
|
+
if (/\.tmp\.\d+(\.|$)/.test(entry)) continue;
|
|
1292
1293
|
const fullPath = path.join(dir, entry);
|
|
1293
|
-
|
|
1294
|
+
let stat;
|
|
1295
|
+
try { stat = fs.statSync(fullPath); } catch (_) { continue; }
|
|
1294
1296
|
if (stat.isFile()) {
|
|
1295
1297
|
files.push(fullPath);
|
|
1296
1298
|
} else if (stat.isDirectory()) {
|
|
@@ -1407,10 +1409,12 @@ async function runSpoolWatcher(instance, spoolDir) {
|
|
|
1407
1409
|
let stale = 0;
|
|
1408
1410
|
const walk = (dir) => {
|
|
1409
1411
|
for (const entry of fs.readdirSync(dir, { withFileTypes: true })) {
|
|
1412
|
+
if (/\.tmp\.\d+(\.|$)/.test(entry.name)) continue;
|
|
1410
1413
|
const fp = path.join(dir, entry.name);
|
|
1411
1414
|
if (entry.isDirectory()) walk(fp);
|
|
1412
1415
|
else if (entry.isFile()) {
|
|
1413
|
-
|
|
1416
|
+
let s;
|
|
1417
|
+
try { s = fs.statSync(fp); } catch (_) { continue; }
|
|
1414
1418
|
if (s.mtimeMs < cutoff) {
|
|
1415
1419
|
const rel = path.relative(inDir, fp);
|
|
1416
1420
|
const verbDir = path.dirname(rel);
|
package/gm.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1170",
|
|
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.422"
|
|
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.1170",
|
|
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.1170"
|
|
43
43
|
},
|
|
44
44
|
"engines": {
|
|
45
45
|
"node": ">=16.0.0"
|
package/skills/gm-skill/SKILL.md
CHANGED
|
@@ -20,4 +20,6 @@ Now dispatch `instruction` by writing an empty body to `.gm/exec-spool/in/instru
|
|
|
20
20
|
|
|
21
21
|
Nothing else lives here. Every concern that feels like it belongs in this file — how to batch, what verbs exist, when to scan for residuals, how the browser surface works, where the watcher logs go, how updates land, when to stop — is served by `instruction` when the moment calls for it. Trying to remember it from this skill instead of asking plugkit is forced closure: the agent acts on a stale snapshot of policy instead of the live one plugkit holds.
|
|
22
22
|
|
|
23
|
+
Memory writes route through `memorize-fire` only — any native "save to memory" affordance the harness exposes is invisible to plugkit's recall index and is forbidden. Questions to the user fire last, after scope-expansion and a `WebSearch`/`WebFetch` pack have both closed empty.
|
|
24
|
+
|
|
23
25
|
Only plugkit.
|