@xenosystem/agent-cli 0.5.20 → 0.5.21
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/LICENSE +15 -15
- package/README.md +88 -88
- package/dist/index.js +1457 -1457
- package/dist/metafile-esm.json +1 -1
- package/package.json +6 -5
- package/scripts/install.ps1 +18 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xenosystem/agent-cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.21",
|
|
4
4
|
"description": "XENO AGENT - AI-powered terminal agent CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -37,9 +37,10 @@
|
|
|
37
37
|
"dev": "tsx src/index.ts",
|
|
38
38
|
"build": "tsup --config tsup.config.ts",
|
|
39
39
|
"build:pty": "node native/xeno-pty/scripts/build.mjs",
|
|
40
|
-
"test:pty:native": "node native/xeno-pty/scripts/smoke-native.mjs && node native/xeno-pty/scripts/ctrlc-native.mjs && node native/xeno-pty/scripts/graceful-native.mjs && node native/xeno-pty/scripts/fuzz-native.mjs --iterations 100",
|
|
40
|
+
"test:pty:native": "node native/xeno-pty/scripts/smoke-native.mjs && node native/xeno-pty/scripts/ctrlc-native.mjs && node native/xeno-pty/scripts/graceful-native.mjs && node native/xeno-pty/scripts/fuzz-native.mjs --iterations 100 && node native/xeno-pty/scripts/verify-prebuild-provenance.mjs",
|
|
41
41
|
"test:pty:ctrlc": "node native/xeno-pty/scripts/ctrlc-native.mjs",
|
|
42
42
|
"test:pty:graceful": "node native/xeno-pty/scripts/graceful-native.mjs",
|
|
43
|
+
"test:pty:provenance": "node native/xeno-pty/scripts/verify-prebuild-provenance.mjs",
|
|
43
44
|
"bench:pty:native": "node native/xeno-pty/scripts/benchmark-native.mjs",
|
|
44
45
|
"start": "node dist/index.js",
|
|
45
46
|
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
@@ -70,9 +71,9 @@
|
|
|
70
71
|
],
|
|
71
72
|
"license": "UNLICENSED",
|
|
72
73
|
"dependencies": {
|
|
73
|
-
"@xenosystem/agent-interface-client": "0.1.
|
|
74
|
-
"@xenosystem/agent-interface-contract": "0.1.
|
|
75
|
-
"@xenosystem/agent-sdk": "0.9.
|
|
74
|
+
"@xenosystem/agent-interface-client": "0.1.4",
|
|
75
|
+
"@xenosystem/agent-interface-contract": "0.1.4",
|
|
76
|
+
"@xenosystem/agent-sdk": "0.9.10",
|
|
76
77
|
"undici": "6.28.0"
|
|
77
78
|
},
|
|
78
79
|
"engines": {
|
package/scripts/install.ps1
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
$ErrorActionPreference = "Stop"
|
|
2
|
-
|
|
3
|
-
$Package = if ($env:XENO_PACKAGE) { $env:XENO_PACKAGE } else { "@xenosystem/agent-cli" }
|
|
4
|
-
$Channel = if ($env:XENO_RELEASE_CHANNEL) { $env:XENO_RELEASE_CHANNEL } else { "latest" }
|
|
5
|
-
|
|
6
|
-
if (-not (Get-Command npm -ErrorAction SilentlyContinue)) {
|
|
7
|
-
throw "npm is required. Install Node.js first: https://nodejs.org/"
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
$Integrity = npm view "$Package@$Channel" dist.integrity 2>$null
|
|
11
|
-
if ($Integrity) {
|
|
12
|
-
Write-Host "Resolved npm integrity: $Integrity"
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
npm install -g "$Package@$Channel"
|
|
16
|
-
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|
|
17
|
-
|
|
18
|
-
xeno --version
|
|
1
|
+
$ErrorActionPreference = "Stop"
|
|
2
|
+
|
|
3
|
+
$Package = if ($env:XENO_PACKAGE) { $env:XENO_PACKAGE } else { "@xenosystem/agent-cli" }
|
|
4
|
+
$Channel = if ($env:XENO_RELEASE_CHANNEL) { $env:XENO_RELEASE_CHANNEL } else { "latest" }
|
|
5
|
+
|
|
6
|
+
if (-not (Get-Command npm -ErrorAction SilentlyContinue)) {
|
|
7
|
+
throw "npm is required. Install Node.js first: https://nodejs.org/"
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
$Integrity = npm view "$Package@$Channel" dist.integrity 2>$null
|
|
11
|
+
if ($Integrity) {
|
|
12
|
+
Write-Host "Resolved npm integrity: $Integrity"
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
npm install -g "$Package@$Channel"
|
|
16
|
+
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|
|
17
|
+
|
|
18
|
+
xeno --version
|