agentswarm-cli 0.0.0-next-202603192031 → 1.2.28
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 +3 -1
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Agent Swarm CLI is the terminal client for Agent Swarm.
|
|
4
4
|
|
|
5
|
+
If you use the Python framework, `agency.terminal_demo()` provisions this binary automatically. You do not need a separate npm install for that path.
|
|
6
|
+
|
|
5
7
|
## Install
|
|
6
8
|
|
|
7
9
|
```bash
|
|
@@ -27,4 +29,4 @@ This package installs a platform-specific binary package behind the scenes. That
|
|
|
27
29
|
## Source
|
|
28
30
|
|
|
29
31
|
- Framework: [VRSEN/agency-swarm](https://github.com/VRSEN/agency-swarm)
|
|
30
|
-
- CLI
|
|
32
|
+
- CLI: [VRSEN/agentswarm-cli](https://github.com/VRSEN/agentswarm-cli)
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentswarm-cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.2.28",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Agent Swarm CLI for the terminal.",
|
|
7
|
-
"homepage": "https://github.com/VRSEN/
|
|
7
|
+
"homepage": "https://github.com/VRSEN/agentswarm-cli",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/
|
|
10
|
+
"url": "https://github.com/VRSEN/agentswarm-cli.git"
|
|
11
11
|
},
|
|
12
12
|
"keywords": [
|
|
13
13
|
"agent-swarm",
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
24
24
|
},
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"agent-swarm-cli-windows-x64": "
|
|
27
|
-
"agent-swarm-cli-linux-arm64": "
|
|
28
|
-
"agent-swarm-cli-linux-x64-baseline": "
|
|
29
|
-
"agent-swarm-cli-linux-x64": "
|
|
30
|
-
"agent-swarm-cli-darwin-arm64": "
|
|
31
|
-
"agent-swarm-cli-windows-arm64": "
|
|
32
|
-
"agent-swarm-cli-windows-x64-baseline": "
|
|
33
|
-
"agent-swarm-cli-linux-x64-musl": "
|
|
34
|
-
"agent-swarm-cli-linux-arm64-musl": "
|
|
35
|
-
"agent-swarm-cli-linux-x64-baseline-musl": "
|
|
36
|
-
"agent-swarm-cli-darwin-x64": "
|
|
37
|
-
"agent-swarm-cli-darwin-x64-baseline": "
|
|
26
|
+
"agent-swarm-cli-windows-x64": "1.2.28",
|
|
27
|
+
"agent-swarm-cli-linux-arm64": "1.2.28",
|
|
28
|
+
"agent-swarm-cli-linux-x64-baseline": "1.2.28",
|
|
29
|
+
"agent-swarm-cli-linux-x64": "1.2.28",
|
|
30
|
+
"agent-swarm-cli-darwin-arm64": "1.2.28",
|
|
31
|
+
"agent-swarm-cli-windows-arm64": "1.2.28",
|
|
32
|
+
"agent-swarm-cli-windows-x64-baseline": "1.2.28",
|
|
33
|
+
"agent-swarm-cli-linux-x64-musl": "1.2.28",
|
|
34
|
+
"agent-swarm-cli-linux-arm64-musl": "1.2.28",
|
|
35
|
+
"agent-swarm-cli-linux-x64-baseline-musl": "1.2.28",
|
|
36
|
+
"agent-swarm-cli-darwin-x64": "1.2.28",
|
|
37
|
+
"agent-swarm-cli-darwin-x64-baseline": "1.2.28"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|