@agentxjs/cli 0.0.3 → 0.0.5
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/CHANGELOG.md +22 -0
- package/package.json +6 -6
- package/src/index.ts +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @agentxjs/cli
|
|
2
2
|
|
|
3
|
+
## 0.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [56aa5b9]
|
|
8
|
+
- @agentxjs/server@2.0.3
|
|
9
|
+
- agentxjs@2.0.3
|
|
10
|
+
- @agentxjs/core@2.0.3
|
|
11
|
+
- @agentxjs/node-platform@2.0.3
|
|
12
|
+
- @agentxjs/mono-driver@2.0.3
|
|
13
|
+
|
|
14
|
+
## 0.0.4
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [cddf2e3]
|
|
19
|
+
- @agentxjs/core@2.0.2
|
|
20
|
+
- @agentxjs/server@2.0.2
|
|
21
|
+
- @agentxjs/node-platform@2.0.2
|
|
22
|
+
- agentxjs@2.0.2
|
|
23
|
+
- @agentxjs/mono-driver@2.0.2
|
|
24
|
+
|
|
3
25
|
## 0.0.3
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentxjs/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "AgentX Terminal UI Client",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
"@opentui/core": "^0.1.77",
|
|
17
17
|
"@opentui/solid": "^0.1.77",
|
|
18
18
|
"solid-js": "^1.9.10",
|
|
19
|
-
"agentxjs": "^2.0.
|
|
20
|
-
"@agentxjs/server": "^2.0.
|
|
21
|
-
"@agentxjs/node-platform": "^2.0.
|
|
22
|
-
"@agentxjs/mono-driver": "^2.0.
|
|
23
|
-
"@agentxjs/core": "^2.0.
|
|
19
|
+
"agentxjs": "^2.0.3",
|
|
20
|
+
"@agentxjs/server": "^2.0.3",
|
|
21
|
+
"@agentxjs/node-platform": "^2.0.3",
|
|
22
|
+
"@agentxjs/mono-driver": "^2.0.3",
|
|
23
|
+
"@agentxjs/core": "^2.0.3",
|
|
24
24
|
"yargs": "^18.0.0",
|
|
25
25
|
"clipboardy": "^4.0.0",
|
|
26
26
|
"dotenv": "^16.6.1"
|
package/src/index.ts
CHANGED
|
@@ -73,11 +73,12 @@ async function getServerUrl(port: number): Promise<{ url: string; cleanup?: () =
|
|
|
73
73
|
});
|
|
74
74
|
};
|
|
75
75
|
|
|
76
|
+
const platform = await nodePlatform({
|
|
77
|
+
dataPath,
|
|
78
|
+
// logDir already configured at startup
|
|
79
|
+
}).resolve();
|
|
76
80
|
const server = await createServer({
|
|
77
|
-
platform
|
|
78
|
-
dataPath,
|
|
79
|
-
// logDir already configured at startup
|
|
80
|
-
}),
|
|
81
|
+
platform,
|
|
81
82
|
createDriver: wrappedCreateDriver,
|
|
82
83
|
port,
|
|
83
84
|
host: "127.0.0.1",
|