squad-station 0.9.1 → 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.
- package/README.md +5 -3
- package/bin/run.js +1 -1
- 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
|
|
87
|
-
| `squad-station
|
|
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
|
|
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.
|
|
48
|
+
var VERSION = '0.10.0';
|
|
49
49
|
var REPO = 'thientranhung/squad-station';
|
|
50
50
|
|
|
51
51
|
var isWindows = process.platform === 'win32';
|