squad-station 0.7.6 → 0.7.8
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 +26 -14
- package/bin/run.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,29 +1,37 @@
|
|
|
1
1
|
# Squad Station
|
|
2
2
|
|
|
3
|
-
Message routing and orchestration for AI agent squads —
|
|
3
|
+
Message routing and orchestration for AI agent squads — coordinate multiple AI agents through a single orchestrator using tmux sessions and SQLite messaging.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Provider-agnostic: works with Claude Code, Gemini CLI, or any terminal-based AI tool.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npx squad-station install
|
|
10
|
+
npx squad-station@latest install
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
This downloads the `squad-station` binary
|
|
13
|
+
This downloads the `squad-station` binary for your platform and scaffolds project files:
|
|
14
14
|
|
|
15
15
|
```
|
|
16
16
|
.squad/
|
|
17
|
-
├── sdd/
|
|
17
|
+
├── sdd/ # SDD methodology playbooks
|
|
18
18
|
│ ├── gsd-playbook.md
|
|
19
19
|
│ ├── bmad-playbook.md
|
|
20
|
+
│ ├── openspec-playbook.md
|
|
20
21
|
│ └── superpowers-playbook.md
|
|
21
|
-
|
|
22
|
+
├── rules/ # Git workflow rule templates
|
|
23
|
+
│ ├── git-workflow-get-shit-done.md
|
|
24
|
+
│ ├── git-workflow-bmad-method.md
|
|
25
|
+
│ ├── git-workflow-openspec.md
|
|
26
|
+
│ └── git-workflow-superpowers.md
|
|
27
|
+
└── examples/ # Example squad.yml configs
|
|
22
28
|
├── orchestrator-claude.yml
|
|
23
29
|
└── orchestrator-gemini.yml
|
|
24
30
|
```
|
|
25
31
|
|
|
26
|
-
|
|
32
|
+
Handles macOS quarantine (xattr removal) and upgrades over existing cargo-installed symlinks automatically.
|
|
33
|
+
|
|
34
|
+
## Quick Start
|
|
27
35
|
|
|
28
36
|
```bash
|
|
29
37
|
# 1. Copy an example config
|
|
@@ -62,23 +70,27 @@ agents:
|
|
|
62
70
|
provider: claude-code
|
|
63
71
|
role: worker
|
|
64
72
|
model: opus
|
|
65
|
-
description: Technical
|
|
73
|
+
description: Technical lead, planning, analysis, code reviews
|
|
66
74
|
```
|
|
67
75
|
|
|
68
76
|
## Commands
|
|
69
77
|
|
|
70
78
|
| Command | Description |
|
|
71
|
-
|
|
72
|
-
| `squad-station init` | Launch squad from `squad.yml` — creates DB,
|
|
79
|
+
|---------|-------------|
|
|
80
|
+
| `squad-station init` | Launch squad from `squad.yml` — creates DB, sessions, hooks |
|
|
73
81
|
| `squad-station send <agent> --body "<task>"` | Send a task to an agent |
|
|
74
|
-
| `squad-station signal
|
|
75
|
-
| `squad-station list` | List messages |
|
|
82
|
+
| `squad-station signal [agent]` | Signal agent task completion |
|
|
83
|
+
| `squad-station list` | List messages (`--agent`, `--status`, `--limit`) |
|
|
76
84
|
| `squad-station agents` | List agents with live status |
|
|
77
85
|
| `squad-station status` | Project and agent summary |
|
|
78
|
-
| `squad-station view` | Open tmux tiled view of all agents |
|
|
79
86
|
| `squad-station ui` | Interactive TUI dashboard |
|
|
80
|
-
| `squad-station
|
|
87
|
+
| `squad-station view` | Tiled tmux view of all agent sessions |
|
|
88
|
+
| `squad-station doctor` | Health check for diagnosing issues |
|
|
89
|
+
| `squad-station watch --daemon` | Start watchdog health monitor |
|
|
81
90
|
| `squad-station reset` | Kill sessions, delete DB, relaunch |
|
|
91
|
+
| `squad-station clean` | Kill sessions and delete DB (`--all` includes logs) |
|
|
92
|
+
|
|
93
|
+
All commands support `--json` for machine-readable output.
|
|
82
94
|
|
|
83
95
|
## Requirements
|
|
84
96
|
|
package/bin/run.js
CHANGED
|
@@ -43,7 +43,7 @@ function install() {
|
|
|
43
43
|
|
|
44
44
|
function installBinary() {
|
|
45
45
|
// Binary version — may differ from npm package version
|
|
46
|
-
var VERSION = '0.7.
|
|
46
|
+
var VERSION = '0.7.8';
|
|
47
47
|
var REPO = 'thientranhung/squad-station';
|
|
48
48
|
|
|
49
49
|
var isWindows = process.platform === 'win32';
|