squad-station 0.9.0 → 0.10.0

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 (3) hide show
  1. package/README.md +5 -3
  2. package/bin/run.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -83,12 +83,14 @@ agents:
83
83
  | `squad-station list` | List messages (`--agent`, `--status`, `--limit`) |
84
84
  | `squad-station agents` | List agents with live status |
85
85
  | `squad-station status` | Project and agent summary |
86
- | `squad-station ui` | Interactive TUI dashboard |
87
- | `squad-station view` | Tiled tmux view of all agent sessions |
86
+ | `squad-station peek <agent>` | Show agent's next pending task |
87
+ | `squad-station reconcile` | Detect and fix stuck agents (`--dry-run` to preview) |
88
88
  | `squad-station doctor` | Health check for diagnosing issues |
89
89
  | `squad-station watch --daemon` | Start watchdog health monitor |
90
- | `squad-station reset` | Kill sessions, delete DB, relaunch |
90
+ | `squad-station update` | Re-apply `squad.yml`: launch new agents, restart changed ones |
91
+ | `squad-station uninstall` | Remove hooks, files, and sessions from this project |
91
92
  | `squad-station clean` | Kill sessions and delete DB (`--all` includes logs) |
93
+ | `squad-station freeze` / `unfreeze` | Block or allow orchestrator task dispatch |
92
94
 
93
95
  All commands support `--json` for machine-readable output.
94
96
 
package/bin/run.js CHANGED
@@ -45,7 +45,7 @@ function install() {
45
45
 
46
46
  function installBinary() {
47
47
  // Binary version — may differ from npm package version
48
- var VERSION = '0.9.0';
48
+ var VERSION = '0.10.0';
49
49
  var REPO = 'thientranhung/squad-station';
50
50
 
51
51
  var isWindows = process.platform === 'win32';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squad-station",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "description": "Message routing and orchestration for AI agent squads",
5
5
  "repository": {
6
6
  "type": "git",