agileflow 2.99.5 → 2.99.7

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
@@ -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.7] - 2026-02-11
11
+
12
+ ### Fixed
13
+ - Suppress tmux same-index message on session start
14
+
15
+ ## [2.99.6] - 2026-02-09
16
+
17
+ ### Fixed
18
+ - Fix tmux session creation after reboot with atomic command
19
+
10
20
  ## [2.99.5] - 2026-02-09
11
21
 
12
22
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agileflow",
3
- "version": "2.99.5",
3
+ "version": "2.99.7",
4
4
  "description": "AI-driven agile development system for Claude Code, Cursor, Windsurf, and more",
5
5
  "keywords": [
6
6
  "agile",
@@ -405,16 +405,14 @@ 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
-
413
- # Set base-index globally BEFORE creating session so first window gets index 1
414
- tmux set-option -g base-index 1
415
-
416
- # Create session in detached mode first (will use base-index 1)
417
- tmux new-session -d -s "$SESSION_NAME" -n "main"
408
+ # Create session and set base-index 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
413
+ # Move window to index 1 if not already there (suppress stdout "same index"
414
+ # message when base-index was already 1 from a previous session)
415
+ tmux move-window -t "$SESSION_NAME":1 >/dev/null 2>&1 || true
418
416
 
419
417
  # Apply tmux configuration
420
418
  configure_tmux_session "$SESSION_NAME"