@ch4p/cli 0.2.0 → 0.2.1
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/agent-DP2VLBZE.js +765 -0
- package/dist/canvas-BAOL2HEZ.js +324 -0
- package/dist/chunk-7LPNZOUX.js +2260 -0
- package/dist/chunk-KBQAHLOS.js +7656 -0
- package/dist/gateway-W6IVILLL.js +19 -0
- package/dist/index.js +3 -3
- package/package.json +17 -17
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import {
|
|
2
|
+
applySafeUpdates,
|
|
3
|
+
buildSafeConfig,
|
|
4
|
+
gateway
|
|
5
|
+
} from "./chunk-7LPNZOUX.js";
|
|
6
|
+
import "./chunk-WYXCGS55.js";
|
|
7
|
+
import "./chunk-3CYOOHMM.js";
|
|
8
|
+
import "./chunk-KBQAHLOS.js";
|
|
9
|
+
import "./chunk-MABLWEGE.js";
|
|
10
|
+
import "./chunk-6BURGD2Y.js";
|
|
11
|
+
import "./chunk-UNF4S4CA.js";
|
|
12
|
+
import "./chunk-YSCX2QQQ.js";
|
|
13
|
+
import "./chunk-AORLXQHZ.js";
|
|
14
|
+
import "./chunk-NMGPBPNU.js";
|
|
15
|
+
export {
|
|
16
|
+
applySafeUpdates,
|
|
17
|
+
buildSafeConfig,
|
|
18
|
+
gateway
|
|
19
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -106,12 +106,12 @@ async function main() {
|
|
|
106
106
|
const { command, rest } = parseArgs(process.argv);
|
|
107
107
|
switch (command) {
|
|
108
108
|
case "agent": {
|
|
109
|
-
const { agent } = await import("./agent-
|
|
109
|
+
const { agent } = await import("./agent-DP2VLBZE.js");
|
|
110
110
|
await agent(rest);
|
|
111
111
|
break;
|
|
112
112
|
}
|
|
113
113
|
case "gateway": {
|
|
114
|
-
const { gateway } = await import("./gateway-
|
|
114
|
+
const { gateway } = await import("./gateway-W6IVILLL.js");
|
|
115
115
|
await gateway(rest);
|
|
116
116
|
break;
|
|
117
117
|
}
|
|
@@ -156,7 +156,7 @@ async function main() {
|
|
|
156
156
|
break;
|
|
157
157
|
}
|
|
158
158
|
case "canvas": {
|
|
159
|
-
const { canvas } = await import("./canvas-
|
|
159
|
+
const { canvas } = await import("./canvas-BAOL2HEZ.js");
|
|
160
160
|
await canvas(rest);
|
|
161
161
|
break;
|
|
162
162
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ch4p/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Personal AI assistant platform — security-first, multi-channel, programmable",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -53,22 +53,22 @@
|
|
|
53
53
|
"playwright-core": "^1.50.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@ch4p/core": "0.2.
|
|
57
|
-
"@ch4p/
|
|
58
|
-
"@ch4p/
|
|
59
|
-
"@ch4p/
|
|
60
|
-
"@ch4p/
|
|
61
|
-
"@ch4p/
|
|
62
|
-
"@ch4p/
|
|
63
|
-
"@ch4p/
|
|
64
|
-
"@ch4p/
|
|
65
|
-
"@ch4p/
|
|
66
|
-
"@ch4p/
|
|
67
|
-
"@ch4p/
|
|
68
|
-
"@ch4p/
|
|
69
|
-
"@ch4p/
|
|
70
|
-
"@ch4p/
|
|
71
|
-
"@ch4p/
|
|
56
|
+
"@ch4p/core": "0.2.1",
|
|
57
|
+
"@ch4p/agent": "0.2.1",
|
|
58
|
+
"@ch4p/channels": "0.2.1",
|
|
59
|
+
"@ch4p/security": "0.2.1",
|
|
60
|
+
"@ch4p/providers": "0.2.1",
|
|
61
|
+
"@ch4p/observability": "0.2.1",
|
|
62
|
+
"@ch4p/memory": "0.2.1",
|
|
63
|
+
"@ch4p/tools": "0.2.1",
|
|
64
|
+
"@ch4p/supervisor": "0.2.1",
|
|
65
|
+
"@ch4p/gateway": "0.2.1",
|
|
66
|
+
"@ch4p/engines": "0.2.1",
|
|
67
|
+
"@ch4p/skills": "0.2.1",
|
|
68
|
+
"@ch4p/tunnels": "0.2.1",
|
|
69
|
+
"@ch4p/voice": "0.2.1",
|
|
70
|
+
"@ch4p/plugin-x402": "0.2.1",
|
|
71
|
+
"@ch4p/canvas": "0.2.1"
|
|
72
72
|
},
|
|
73
73
|
"scripts": {
|
|
74
74
|
"build": "tsup",
|