@sokeai/cli 1.0.53 → 1.0.55
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/package.json +2 -1
- package/scripts/install.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sokeai/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.55",
|
|
4
4
|
"description": "授客AI官方CLI工具 - 支持AI Agent Skills",
|
|
5
5
|
"bin": {
|
|
6
6
|
"soke-cli": "scripts/run.js"
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"scripts/",
|
|
15
15
|
"skills/"
|
|
16
16
|
],
|
|
17
|
+
"homepage": "https://github.com/sokeai/soke-cli#readme",
|
|
17
18
|
"repository": {
|
|
18
19
|
"type": "git",
|
|
19
20
|
"url": "https://github.com/sokeai/soke-cli.git"
|
package/scripts/install.js
CHANGED
|
@@ -428,7 +428,7 @@ const binaryName = platform === 'win32' ? 'soke-cli.exe' : 'soke-cli';
|
|
|
428
428
|
const binaryFileName = `soke-cli-${mappedPlatform}-${mappedArch}${platform === 'win32' ? '.exe' : ''}`;
|
|
429
429
|
|
|
430
430
|
// GitHub Releases 下载地址
|
|
431
|
-
const downloadURL = `https://github.com/
|
|
431
|
+
const downloadURL = `https://github.com/sokeai/soke-cli/releases/download/v${version}/${binaryFileName}`;
|
|
432
432
|
|
|
433
433
|
const binDir = path.join(__dirname, '..', 'bin');
|
|
434
434
|
const binaryPath = path.join(binDir, binaryName);
|