gm-qwen 2.0.571 → 2.0.573
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/gm.json +2 -2
- package/package.json +2 -2
- package/bin/plugkit +0 -11
- package/bin/plugkit-darwin-arm64 +0 -0
- package/bin/plugkit-darwin-x64 +0 -0
- package/bin/plugkit-linux-arm64 +0 -0
- package/bin/plugkit-linux-x64 +0 -0
- package/bin/plugkit-win32-arm64.exe +0 -0
- package/bin/plugkit-win32-x64.exe +0 -0
- package/bin/plugkit.exe +0 -0
- package/bin/plugkit.js +0 -22
package/gm.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.573",
|
|
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.164"
|
|
27
27
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm-qwen",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.573",
|
|
4
4
|
"description": "State machine agent with hooks, skills, and automated git enforcement",
|
|
5
5
|
"author": "AnEntrypoint",
|
|
6
6
|
"license": "MIT",
|
|
@@ -39,4 +39,4 @@
|
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"@qwen-code/qwen-code": "*"
|
|
41
41
|
}
|
|
42
|
-
}
|
|
42
|
+
}
|
package/bin/plugkit
DELETED
package/bin/plugkit-darwin-arm64
DELETED
|
Binary file
|
package/bin/plugkit-darwin-x64
DELETED
|
Binary file
|
package/bin/plugkit-linux-arm64
DELETED
|
Binary file
|
package/bin/plugkit-linux-x64
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/plugkit.exe
DELETED
|
Binary file
|
package/bin/plugkit.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
'use strict';
|
|
3
|
-
const { spawnSync } = require('child_process');
|
|
4
|
-
const path = require('path');
|
|
5
|
-
const os = require('os');
|
|
6
|
-
|
|
7
|
-
const dir = __dirname;
|
|
8
|
-
const platform = os.platform();
|
|
9
|
-
const arch = os.arch();
|
|
10
|
-
|
|
11
|
-
let bin;
|
|
12
|
-
if (platform === 'win32') {
|
|
13
|
-
bin = path.join(dir, arch === 'arm64' ? 'plugkit-win32-arm64.exe' : 'plugkit-win32-x64.exe');
|
|
14
|
-
if (!require('fs').existsSync(bin)) bin = path.join(dir, 'plugkit.exe');
|
|
15
|
-
} else if (platform === 'darwin') {
|
|
16
|
-
bin = path.join(dir, arch === 'arm64' ? 'plugkit-darwin-arm64' : 'plugkit-darwin-x64');
|
|
17
|
-
} else {
|
|
18
|
-
bin = path.join(dir, arch === 'arm64' || arch === 'aarch64' ? 'plugkit-linux-arm64' : 'plugkit-linux-x64');
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
const result = spawnSync(bin, process.argv.slice(2), { stdio: 'inherit', windowsHide: true });
|
|
22
|
-
process.exit(result.status ?? 1);
|