squad-station 0.8.5 → 0.8.6

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/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to Squad Station are documented in this file.
4
4
 
5
+ ## v0.8.6 — Remove Codex PostToolUse hook (2026-04-01)
6
+
7
+ Removes the PostToolUse hook from Codex provider hook installation. Codex agents run in `--yolo` mode (full auto-approve) and never stop to ask for user input. The `Bash` matcher fired on every tool call, sending duplicate `[SQUAD INPUT NEEDED]` signals that confused the orchestrator.
8
+
9
+ ### Fixed
10
+
11
+ - **Removed PostToolUse hook for Codex provider** — `install_codex_hooks()` no longer installs a PostToolUse hook with the `Bash` matcher.
12
+
13
+ ---
14
+
5
15
  ## v0.7.2 — npm Installer Hardening (2026-03-24)
6
16
 
7
17
  Fixes npm installer issues that prevented clean upgrades and macOS Gatekeeper blocks on downloaded binaries.
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.8.5';
46
+ var VERSION = '0.8.6';
47
47
  var REPO = 'thientranhung/squad-station';
48
48
 
49
49
  var isWindows = process.platform === 'win32';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squad-station",
3
- "version": "0.8.5",
3
+ "version": "0.8.6",
4
4
  "description": "Message routing and orchestration for AI agent squads",
5
5
  "repository": {
6
6
  "type": "git",