pilotswarm-cli 0.1.3
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/bin/tui.js +279 -0
- package/cli/tui.js +6735 -0
- package/package.json +49 -0
- package/plugins/.mcp.json +7 -0
- package/plugins/plugin.json +13 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pilotswarm-cli",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "Terminal UI for pilotswarm — interactive durable agent orchestration.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"pilotswarm": "./bin/tui.js",
|
|
8
|
+
"pilotswarm-cli": "./bin/tui.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "echo 'pilotswarm-cli: no build step (plain JS)'",
|
|
12
|
+
"tui": "node bin/tui.js local --env ../../.env.remote",
|
|
13
|
+
"tui:remote": "node bin/tui.js remote --env ../../.env.remote"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"copilot",
|
|
17
|
+
"pilotswarm",
|
|
18
|
+
"tui",
|
|
19
|
+
"agent",
|
|
20
|
+
"cli"
|
|
21
|
+
],
|
|
22
|
+
"author": "Affan Dar",
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/affandar/PilotSwarm"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/affandar/PilotSwarm",
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/affandar/PilotSwarm/issues"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"pilotswarm-sdk": "^0.1.3",
|
|
34
|
+
"@bradygaster/squad-cli": "^0.8.25",
|
|
35
|
+
"chalk": "^5.6.2",
|
|
36
|
+
"marked": "^15.0.12",
|
|
37
|
+
"marked-terminal": "^7.3.0",
|
|
38
|
+
"neo-blessed": "^0.1.81"
|
|
39
|
+
},
|
|
40
|
+
"engines": {
|
|
41
|
+
"node": ">=24.0.0"
|
|
42
|
+
},
|
|
43
|
+
"files": [
|
|
44
|
+
"bin/**/*",
|
|
45
|
+
"cli/tui.js",
|
|
46
|
+
"plugins/**/*",
|
|
47
|
+
"README.md"
|
|
48
|
+
]
|
|
49
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pilotswarm",
|
|
3
|
+
"description": "Durable execution building blocks — skills, agents, and tools for long-running Copilot sessions with timers, dehydration, and worker migration.",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "affandar",
|
|
7
|
+
"url": "https://github.com/affandar/pilotswarm"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"keywords": ["pilotswarm", "durable", "copilot", "timers", "orchestration"],
|
|
11
|
+
"agents": "agents/",
|
|
12
|
+
"skills": "skills/"
|
|
13
|
+
}
|