@accomplish_ai/agent-core-cli 0.1.3 → 0.1.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/README.md +7 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -30,7 +30,13 @@ Client ──POST /jobs──> Hono HTTP Server
|
|
|
30
30
|
## Installation
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
npm install @accomplish_ai/agent-core-cli
|
|
33
|
+
npm install -g @accomplish_ai/agent-core-cli
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
`@accomplish_ai/agent-core` is a **peer dependency** — npm 7+ installs it automatically. To pin a specific agent-core version (e.g. in a Dockerfile), install both:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
npm install -g @accomplish_ai/agent-core-cli @accomplish_ai/agent-core@0.3.0
|
|
34
40
|
```
|
|
35
41
|
|
|
36
42
|
### From source
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@accomplish_ai/agent-core-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Headless CLI wrapping @accomplish_ai/agent-core",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -25,8 +25,10 @@
|
|
|
25
25
|
"start": "node dist/index.js",
|
|
26
26
|
"test": "vitest run"
|
|
27
27
|
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"@accomplish_ai/agent-core": ">=0.2.0"
|
|
30
|
+
},
|
|
28
31
|
"dependencies": {
|
|
29
|
-
"@accomplish_ai/agent-core": "^0.2.1",
|
|
30
32
|
"@hono/node-server": "^1.14.0",
|
|
31
33
|
"@hono/node-ws": "^1.1.0",
|
|
32
34
|
"commander": "^13.0.0",
|