squad-station 0.5.4 → 0.5.5

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/CHANGELOG.md +88 -0
  2. package/package.json +3 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,88 @@
1
+ # Changelog
2
+
3
+ All notable changes to Squad Station are documented in this file.
4
+
5
+ ## v0.5.5 - 2026-03-19
6
+
7
+ ### 🌟 Highlights
8
+
9
+ - Orchestrator context can now be **auto-injected** on session start, resume, or compact — no more forgetting to run `/squad-orchestrator`
10
+ - CLI simplified: `close` removed, `clean` now does everything (kill sessions + delete DB)
11
+ - New orchestrator guidance for managing agent context with `/clear`
12
+
13
+ ### 🎁 Features
14
+
15
+ - `squad-station context --inject` outputs orchestrator content to stdout for SessionStart hook consumption
16
+ - Orchestrator-only guard: detects tmux session name and silently skips injection for worker agents
17
+ - Provider-aware output format: raw markdown for Claude Code, JSON `hookSpecificOutput.additionalContext` for Gemini CLI
18
+ - Opt-in SessionStart hook during `squad-station init` with interactive prompt (default: No)
19
+ - New "Context Management — /clear" section in orchestrator playbook
20
+ - QA Gate now includes step 5: "Decide if `/clear` is needed before the next task"
21
+
22
+ ### 💥 Breaking Changes
23
+
24
+ - `squad-station close` command removed — use `squad-station clean` instead
25
+ - `squad-station clean` now kills all tmux sessions AND deletes the database (previously only deleted the database)
26
+
27
+ ### 🔧 Maintenance
28
+
29
+ - Version aligned to 0.5.5 across Cargo.toml and npm-package/package.json
30
+ - Updated SDD playbooks in npm-package
31
+ - 171 tests passing
32
+
33
+ ## v0.5.3 - 2026-03-16
34
+
35
+ ### 🌟 Highlights
36
+
37
+ - New PostToolUse hook catches agent questions (AskUserQuestion) and forwards them to the orchestrator
38
+ - Elicitation dialog support for permission-like prompts
39
+
40
+ ### 🎁 Features
41
+
42
+ - PostToolUse hook: `AskUserQuestion` matcher notifies orchestrator when an agent asks a question
43
+ - Notification hook: added `elicitation_dialog` matcher alongside `permission_prompt`
44
+ - Orchestrator resolution fix for multi-agent squads
45
+
46
+ ### 📚 Documentation
47
+
48
+ - Added README to npm-package
49
+
50
+ ### 🔧 Maintenance
51
+
52
+ - `cargo fmt` formatting pass across source and tests
53
+ - 164 tests passing
54
+
55
+ ## v0.5.1 - 2026-03-16
56
+
57
+ ### 🌟 Highlights
58
+
59
+ - First public release as an npm package (`npx squad-station install`)
60
+ - Provider-agnostic hook system with auto-installation
61
+ - Colored, informative init output
62
+
63
+ ### 🎁 Features
64
+
65
+ - `npx squad-station install` — npm package with postinstall binary download for macOS and Linux
66
+ - Colored init output with squad setup summary, hook status, and get-started instructions
67
+ - Gemini CLI hooks: AfterAgent (signal) and Notification (notify) auto-installed to `.gemini/settings.json`
68
+ - Claude Code hooks: Stop (signal) and Notification (permission_prompt) auto-installed to `.claude/settings.json`
69
+ - Gemini CLI slash command generated in TOML format (`.gemini/commands/squad-orchestrator.toml`)
70
+ - Provider-specific orchestrator context file paths resolved dynamically
71
+ - Freeze/unfreeze commands to block or allow orchestrator task dispatch
72
+ - Monitor session: tiled tmux view of all agent panes created during init
73
+ - Context command: generates unified `squad-orchestrator.md` with agent roster, routing rules, and playbook references
74
+ - Signal command: auto-detects agent from tmux pane ID, idempotent completion handling
75
+ - Full messaging pipeline: send, peek, list, signal with priority ordering (urgent > high > normal)
76
+ - SQLite WAL mode with single-writer pool and 5s busy timeout
77
+ - Literal-mode `send-keys` to prevent shell injection via tmux
78
+ - Antigravity provider support (DB-only orchestrator, no tmux session)
79
+ - SDD workflow orchestration: playbook-driven task delegation to agents
80
+ - Interactive TUI dashboard (ratatui) for monitoring agent status and messages
81
+
82
+ ### 🔧 Maintenance
83
+
84
+ - Rust CLI with clap argument parsing, async tokio runtime, sqlx migrations
85
+ - 160+ tests (unit + integration)
86
+ - CI workflow for tests, clippy, and fmt
87
+ - curl-pipe-sh installer script
88
+ - MIT license
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squad-station",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
4
  "description": "Message routing and orchestration for AI agent squads",
5
5
  "repository": {
6
6
  "type": "git",
@@ -12,7 +12,8 @@
12
12
  "files": [
13
13
  "bin/",
14
14
  ".squad/sdd/",
15
- ".squad/examples/"
15
+ ".squad/examples/",
16
+ "CHANGELOG.md"
16
17
  ],
17
18
  "engines": {
18
19
  "node": ">=14"