pilotswarm-cli 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/README.md +30 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # pilotswarm-cli
2
+
3
+ Terminal UI for PilotSwarm.
4
+
5
+ Install:
6
+
7
+ ```bash
8
+ npm install pilotswarm-cli
9
+ ```
10
+
11
+ For app-specific worker modules or direct SDK imports, also add:
12
+
13
+ ```bash
14
+ npm install pilotswarm-sdk
15
+ ```
16
+
17
+ Run locally against a plugin directory:
18
+
19
+ ```bash
20
+ npx pilotswarm local --env .env --plugin ./plugin --worker ./worker-module.js
21
+ ```
22
+
23
+ `pilotswarm-cli` provides the shipped TUI. Your app customizes it with `plugin/plugin.json`, `plugin/agents/*.agent.md`, `plugin/skills/*/SKILL.md`, and optional worker-side tools.
24
+
25
+ Common docs:
26
+
27
+ - CLI apps: `https://github.com/affandar/PilotSwarm/blob/main/docs/cli/building-cli-apps.md`
28
+ - CLI agents: `https://github.com/affandar/PilotSwarm/blob/main/docs/cli/building-agents.md`
29
+ - Keybindings: `https://github.com/affandar/PilotSwarm/blob/main/docs/keybindings.md`
30
+ - DevOps sample: `https://github.com/affandar/PilotSwarm/tree/main/examples/devops-command-center`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pilotswarm-cli",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Terminal UI for pilotswarm — interactive durable agent orchestration.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -30,7 +30,7 @@
30
30
  "url": "https://github.com/affandar/PilotSwarm/issues"
31
31
  },
32
32
  "dependencies": {
33
- "pilotswarm-sdk": "^0.1.3",
33
+ "pilotswarm-sdk": "^0.1.4",
34
34
  "@bradygaster/squad-cli": "^0.8.25",
35
35
  "chalk": "^5.6.2",
36
36
  "marked": "^15.0.12",