agileflow 2.99.4 → 2.99.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.
- package/CHANGELOG.md +5 -0
- package/package.json +1 -1
- package/scripts/claude-tmux.sh +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.99.5] - 2026-02-09
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Fix tmux startup after reboot by starting server before global options
|
|
14
|
+
|
|
10
15
|
## [2.99.4] - 2026-02-09
|
|
11
16
|
|
|
12
17
|
### Fixed
|
package/package.json
CHANGED
package/scripts/claude-tmux.sh
CHANGED
|
@@ -405,6 +405,11 @@ fi
|
|
|
405
405
|
# Create new tmux session with Claude
|
|
406
406
|
echo "Starting Claude in tmux session: $SESSION_NAME"
|
|
407
407
|
|
|
408
|
+
# Ensure tmux server is running (required for set-option when no sessions exist).
|
|
409
|
+
# Only new-session, start-server, and kill-server can start a server.
|
|
410
|
+
# Without this, set-option fails with "error connecting to..." after a reboot.
|
|
411
|
+
tmux start-server
|
|
412
|
+
|
|
408
413
|
# Set base-index globally BEFORE creating session so first window gets index 1
|
|
409
414
|
tmux set-option -g base-index 1
|
|
410
415
|
|