codeforge-dev 1.5.6 → 1.5.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.
@@ -1,11 +1,19 @@
1
1
  # CodeForge Devcontainer Changelog
2
2
 
3
+ ## [v1.5.7] - 2026-02-06
4
+
5
+ ### Fixed
6
+
7
+ - **tmux linked sessions**: Opening multiple terminals no longer mirrors the same view. Uses `new-session -t claude-teams` (linked session) instead of `new-session -A` (shared attach). Each terminal gets independent window navigation while sharing the same window pool for Agent Teams panes
8
+
9
+ ---
10
+
3
11
  ## [v1.5.6] - 2026-02-06
4
12
 
5
13
  ### Added
6
14
 
7
15
  - **tmux as default terminal**: All terminals (VS Code, WezTerm, docker exec) now auto-enter tmux `claude-teams` session. Ensures `$TMUX` is always set so Agent Teams `teammateMode: "auto"` uses split panes
8
- - VS Code: Added `tmux` terminal profile as default in `devcontainer.json` (`tmux -u new-session -A -s claude-teams`)
16
+ - VS Code: Added `tmux` terminal profile as default in `devcontainer.json`
9
17
  - All shells: Auto-enter tmux block in `.bashrc`/`.zshrc` via `setup-aliases.sh` (guarded: skips if already in tmux, non-interactive, or tmux not installed)
10
18
  - Plain `bash` profile kept as alternative in VS Code
11
19
 
@@ -80,8 +80,8 @@
80
80
  "settings": {
81
81
  "terminal.integrated.profiles.linux": {
82
82
  "tmux": {
83
- "path": "tmux",
84
- "args": ["-u", "new-session", "-A", "-s", "claude-teams"]
83
+ "path": "bash",
84
+ "args": ["-c", "if tmux has-session -t claude-teams 2>/dev/null; then exec tmux -u new-session -t claude-teams; else exec tmux -u new-session -s claude-teams; fi"]
85
85
  },
86
86
  "bash": {
87
87
  "path": "bash"
@@ -66,7 +66,11 @@ for rc in ~/.bashrc ~/.zshrc; do
66
66
 
67
67
  # Auto-enter tmux for Agent Teams split-pane support
68
68
  if [ -z "$TMUX" ] && [ -n "$PS1" ] && command -v tmux &>/dev/null; then
69
- exec tmux -u new-session -A -s claude-teams
69
+ if tmux has-session -t claude-teams 2>/dev/null; then
70
+ exec tmux -u new-session -t claude-teams
71
+ else
72
+ exec tmux -u new-session -s claude-teams
73
+ fi
70
74
  fi
71
75
  TMUX_BLOCK
72
76
  fi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeforge-dev",
3
- "version": "1.5.6",
3
+ "version": "1.5.7",
4
4
  "description": "Complete development container that sets up Claude Code with modular devcontainer features, modern dev tools, and persistent configurations. Drop it into any project and get a production-ready AI development environment in minutes.",
5
5
  "main": "setup.js",
6
6
  "bin": {