@gnsx/genesys.agent.cli 1.0.10 → 1.0.12
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/dist/bundle/launcher.js +71 -14
- package/dist/bundle/launcher.js.map +1 -1
- package/dist/modes/interactive/theme/dark.json +85 -0
- package/dist/modes/interactive/theme/light.json +84 -0
- package/dist/modes/interactive/theme/theme-schema.json +335 -0
- package/dist/scripts/postbuild.d.ts +2 -0
- package/dist/scripts/postbuild.d.ts.map +1 -0
- package/dist/scripts/postbuild.js +27 -0
- package/dist/scripts/postbuild.js.map +1 -0
- package/dist/src/cli.js +27 -13
- package/dist/src/cli.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -7
- package/dist/src/index.d.ts +0 -2
- package/dist/src/index.d.ts.map +0 -1
- package/dist/src/index.js +0 -2
- package/dist/src/index.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gnsx/genesys.agent.cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI interface for the Genesys agent",
|
|
6
6
|
"publishConfig": {
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@mariozechner/pi-ai": "^0.
|
|
25
|
-
"@mariozechner/pi-agent-core": "^0.
|
|
26
|
-
"@mariozechner/pi-coding-agent": "^0.
|
|
27
|
-
"commander": "^14.0.
|
|
28
|
-
"
|
|
24
|
+
"@mariozechner/pi-ai": "^0.63.0",
|
|
25
|
+
"@mariozechner/pi-agent-core": "^0.63.0",
|
|
26
|
+
"@mariozechner/pi-coding-agent": "^0.63.0",
|
|
27
|
+
"commander": "^14.0.3",
|
|
28
|
+
"@gnsx/genesys.agent.extensions": "1.0.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"tsup": "^8.5.1",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"license": "UNLICENSED",
|
|
36
36
|
"scripts": {
|
|
37
37
|
"compile": "run-cmd tsc --build",
|
|
38
|
-
"build": "pnpm compile && run-cmd tsup",
|
|
38
|
+
"build": "pnpm compile && run-cmd tsup && run-cmd tsx scripts/postbuild.ts",
|
|
39
39
|
"dev": "tsx src/launcher.ts",
|
|
40
40
|
"lint": "run-cmd run-eslint .",
|
|
41
41
|
"postinstall": "tsx scripts/postinstall.ts"
|
package/dist/src/index.d.ts
DELETED
package/dist/src/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC"}
|
package/dist/src/index.js
DELETED
package/dist/src/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":""}
|