gm-qwen 2.0.849 → 2.0.851

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 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
- bin = await resolveBinary();
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 });
@@ -1,6 +1,6 @@
1
- 3fefa1c9d567cdc0ee8d5f00edbb07bb913d8f8340aa977922a5446fa85fbb4e plugkit-win32-x64.exe
2
- 8d166677f792ea7651adca8c05c437ced6b96bca4fa8f2c6b2796a020714cd61 plugkit-win32-arm64.exe
3
- d1a6653981f522de2fef70ef8dbfb294430ddb2b8a0a9d598c14b19d4a6a22bc plugkit-darwin-x64
4
- e60e5c40109daf68f82d9e58d1de1ff71ed0ff12425a402bbf55a87b4928348e plugkit-darwin-arm64
5
- 279c1246f97793de700641a613b15e892aa5572f41d4a5b5d5a1c2cdee16c836 plugkit-linux-x64
6
- b9a628f254142fc8e97e6ed444e12cc11fa9dcf1d08a56d589e9f11c325b6ae2 plugkit-linux-arm64
1
+ a5dd07c710c491fc99dc8e58d9b07e962a9702237153e1c5a1b36291d590768e plugkit-win32-x64.exe
2
+ 4404c268d9348401759d3019714b7866ce33aaac4e37463e0626581aa00c15dc plugkit-win32-arm64.exe
3
+ 01ef1f267893af759ef88ff0d8ef621b57657d19f8812feb55628cf557d2f8a5 plugkit-darwin-x64
4
+ a4ff4c7408fc7aef83829e1a7f9f27710fb51fdebcc4c8607324dd4b2b5adc5f plugkit-darwin-arm64
5
+ 079704fc0c2a290821bdbb83c01c5f7a0624adf1fa72203577abeec91e808891 plugkit-linux-x64
6
+ 3013a40d50922266bc95d755c45086ae7e420818a03fe89259955f881546dc4c plugkit-linux-arm64
@@ -1 +1 @@
1
- 0.1.280
1
+ 0.1.281
package/bin/rtk.sha256 CHANGED
@@ -1,5 +1,5 @@
1
- ac7ad01435f9ef7bfcbc3c44048f855e87119e9c8ee3f0945a90e18544ae0e21 rtk-win32-x64.exe
2
- fa82d10f5f160da4a6f81d28ffe1bd474f4866092d912401244e95c54e0ef91c rtk-win32-arm64.exe
1
+ 6e4a447836bc49cede4d3966bee8ee1edc73edd03223b30c638a756a6238c178 rtk-win32-x64.exe
2
+ 9d14a153645506f4ef15c3cf34852bd91c3b3d243ba9010d6108e3e407c7607b 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.849",
3
+ "version": "2.0.851",
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.280"
26
+ "plugkitVersion": "0.1.281"
27
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-qwen",
3
- "version": "2.0.849",
3
+ "version": "2.0.851",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",