agileflow 2.99.4 → 2.99.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 +10 -0
- package/package.json +1 -1
- package/scripts/claude-tmux.sh +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.99.6] - 2026-02-09
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Fix tmux session creation after reboot with atomic command
|
|
14
|
+
|
|
15
|
+
## [2.99.5] - 2026-02-09
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Fix tmux startup after reboot by starting server before global options
|
|
19
|
+
|
|
10
20
|
## [2.99.4] - 2026-02-09
|
|
11
21
|
|
|
12
22
|
### Fixed
|
package/package.json
CHANGED
package/scripts/claude-tmux.sh
CHANGED
|
@@ -405,11 +405,11 @@ fi
|
|
|
405
405
|
# Create new tmux session with Claude
|
|
406
406
|
echo "Starting Claude in tmux session: $SESSION_NAME"
|
|
407
407
|
|
|
408
|
-
#
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
#
|
|
412
|
-
tmux new-session -d -s "$SESSION_NAME" -n "main"
|
|
408
|
+
# Create session, set base-index, and move window to index 1 in one atomic command.
|
|
409
|
+
# new-session starts the server (required after reboot when no server exists).
|
|
410
|
+
# Separate start-server/set-option calls fail because the server exits immediately
|
|
411
|
+
# when no sessions exist. The \; syntax chains commands on the same server instance.
|
|
412
|
+
tmux new-session -d -s "$SESSION_NAME" -n "main" \; set-option -g base-index 1 \; move-window -t 1
|
|
413
413
|
|
|
414
414
|
# Apply tmux configuration
|
|
415
415
|
configure_tmux_session "$SESSION_NAME"
|