gm-qwen 2.0.850 → 2.0.852
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/bin/plugkit.js +9 -1
- package/bin/plugkit.sha256 +6 -6
- package/bin/plugkit.version +1 -1
- package/bin/rtk.sha256 +2 -2
- package/gm.json +2 -2
- package/package.json +1 -1
package/bin/plugkit.js
CHANGED
|
@@ -28,7 +28,15 @@ async function main() {
|
|
|
28
28
|
obsEvent('plugkit_wrapper', 'invoke', { argv: args.slice(0, 4), is_hook: isHook });
|
|
29
29
|
let bin;
|
|
30
30
|
try {
|
|
31
|
-
|
|
31
|
+
if (isHook) {
|
|
32
|
+
bin = resolveCachedBinary({ wrapperDir: dir }) || legacyFallback();
|
|
33
|
+
if (!bin) {
|
|
34
|
+
obsEvent('plugkit_wrapper', 'hook_skip_uncached', { argv: args.slice(0, 4), dur_ms: Date.now() - startedAt });
|
|
35
|
+
process.exit(0);
|
|
36
|
+
}
|
|
37
|
+
} else {
|
|
38
|
+
bin = await resolveBinary();
|
|
39
|
+
}
|
|
32
40
|
} catch (err) {
|
|
33
41
|
process.stderr.write(`[plugkit] bootstrap failed: ${err.message}\n`);
|
|
34
42
|
obsEvent('plugkit_wrapper', 'bootstrap_failed', { err: err.message, dur_ms: Date.now() - startedAt, argv: args.slice(0, 4), is_hook: isHook });
|
package/bin/plugkit.sha256
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
09197db552aa740104a86f091af87cdbd6066a9dc160aa5ebbe0f3fc84d861b1 plugkit-win32-x64.exe
|
|
2
|
+
b2df9c62e9fc447feab86269ff596e028f83dc55aa5579a8403579ef79f9257d plugkit-win32-arm64.exe
|
|
3
|
+
c1db4885cc069e380772b14779811f2de14314fbb0632d37f3ba9b4267368846 plugkit-darwin-x64
|
|
4
|
+
eba4174899ccbac8ec59a65aab4299c9abd88ff097582cc3663829dbabbd6f45 plugkit-darwin-arm64
|
|
5
|
+
0b21d24f5091f2f89075ad19c49a6a5b729172f6227421efbdce27d7b75ccdb9 plugkit-linux-x64
|
|
6
|
+
f770606de2712cdcadde8c5970b3fc40d54a7854f54025b3e46933c380786b60 plugkit-linux-arm64
|
package/bin/plugkit.version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.282
|
package/bin/rtk.sha256
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
b33208672b7b843974d76918b57f490b5f9d3ec5201d6a8348b9c7161eff794f rtk-win32-x64.exe
|
|
2
|
+
c61cda0c7b75ca581362ebd1c4efcfe94124cbfe5314042c65770913f22094d9 rtk-win32-arm64.exe
|
|
3
3
|
e89fdf402c28796b510587a8b0fe046438b5b24d49533d1a2339a48aecae35e9 rtk-darwin-x64
|
|
4
4
|
2b203fd380f5782b5489eb016e34e3dbf848272a7fadf36b39bce6cfd9a3005c rtk-darwin-arm64
|
|
5
5
|
0da9950b859c7a2693aaf6c169f05f9b8965508ba1f23f1547e63d5fa988749e rtk-linux-x64
|
package/gm.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.852",
|
|
4
4
|
"description": "State machine agent with hooks, skills, and automated git enforcement",
|
|
5
5
|
"author": "AnEntrypoint",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
|
-
"plugkitVersion": "0.1.
|
|
26
|
+
"plugkitVersion": "0.1.282"
|
|
27
27
|
}
|