codeforge-dev 1.5.7 → 1.5.8

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,21 +1,11 @@
1
1
  # CodeForge Devcontainer Changelog
2
2
 
3
- ## [v1.5.7] - 2026-02-06
3
+ ## [v1.5.8] - 2026-02-06
4
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
-
11
- ## [v1.5.6] - 2026-02-06
12
-
13
- ### Added
5
+ ### Changed
14
6
 
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
16
- - VS Code: Added `tmux` terminal profile as default in `devcontainer.json`
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)
18
- - Plain `bash` profile kept as alternative in VS Code
7
+ - **tmux is now opt-in in VS Code**: Reverted auto-tmux-everywhere approach (forced all terminals into tmux, caused shared-view conflicts and hotkey clashes with Claude Code). Default terminal is plain `bash`. A **"Claude Teams (tmux)"** profile is available from the VS Code terminal dropdown for Agent Teams split-pane sessions. External terminal connectors (WezTerm/iTerm2) are unchanged — they still auto-enter tmux
8
+ - **Removed auto-tmux from `.bashrc`/`.zshrc`**: The `exec tmux` block that forced every interactive shell into tmux has been removed from `setup-aliases.sh`
19
9
 
20
10
  ---
21
11
 
@@ -150,7 +150,7 @@ GitHub CLI credentials are automatically persisted across container rebuilds. Th
150
150
 
151
151
  ### The `cc` Command
152
152
 
153
- The `cc` command is an alias that launches Claude Code with the project's system prompt and plan-mode permissions. All terminals (VS Code, WezTerm, docker exec) auto-enter a tmux `claude-teams` session for Agent Teams split-pane support.
153
+ The `cc` command is an alias that launches Claude Code with the project's system prompt and plan-mode permissions. For Agent Teams split-pane support, use the **"Claude Teams (tmux)"** terminal profile in VS Code (dropdown next to the `+` button) or connect via `connect-external-terminal.sh`.
154
154
 
155
155
  ```bash
156
156
  cc # Start Claude Code in current directory
@@ -215,7 +215,7 @@ CodeForge includes several custom devcontainer features:
215
215
  - **Plan mode default**: The container starts in "plan" mode, which prompts for approval before making changes
216
216
  - **Project-local config**: Config files are auto-copied to `.claude/` on container start via `setup-config.sh`
217
217
  - **GitHub auth persists**: Run `gh auth login` once; credentials survive container rebuilds (stored in `/workspaces/.gh/`)
218
- - **Terminals auto-enter tmux**: All interactive shells auto-enter the `claude-teams` tmux session for Agent Teams split panes. Use the `bash` terminal profile in VS Code if you need a plain shell
218
+ - **Agent Teams needs tmux**: Split panes only work inside tmux. Use the "Claude Teams (tmux)" VS Code terminal profile or `connect-external-terminal.sh` from WezTerm/iTerm2
219
219
 
220
220
  ## Further Reading
221
221
 
@@ -79,15 +79,15 @@
79
79
  "vscode": {
80
80
  "settings": {
81
81
  "terminal.integrated.profiles.linux": {
82
- "tmux": {
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
- },
86
82
  "bash": {
87
83
  "path": "bash"
84
+ },
85
+ "Claude Teams (tmux)": {
86
+ "path": "bash",
87
+ "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"]
88
88
  }
89
89
  },
90
- "terminal.integrated.defaultProfile.linux": "tmux",
90
+ "terminal.integrated.defaultProfile.linux": "bash",
91
91
  "terminal.integrated.enableBell": true,
92
92
  "remote.extensionKind": {
93
93
  "wenbopan.vscode-terminal-osc-notifier": ["ui"]
@@ -59,21 +59,6 @@ for rc in ~/.bashrc ~/.zshrc; do
59
59
  echo 'export LANG=en_US.UTF-8' >> "$rc"
60
60
  echo 'export LC_ALL=en_US.UTF-8' >> "$rc"
61
61
  fi
62
- # Auto-enter tmux for Agent Teams split-pane support
63
- # Guards: not already in tmux, interactive shell only, tmux available
64
- if ! grep -q 'Auto-enter tmux' "$rc" 2>/dev/null; then
65
- cat >> "$rc" << 'TMUX_BLOCK'
66
-
67
- # Auto-enter tmux for Agent Teams split-pane support
68
- if [ -z "$TMUX" ] && [ -n "$PS1" ] && command -v tmux &>/dev/null; then
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
74
- fi
75
- TMUX_BLOCK
76
- fi
77
62
  echo "$ALIAS_CC" >> "$rc"
78
63
  echo "$ALIAS_CLAUDE" >> "$rc"
79
64
  echo "$ALIAS_CCRAW" >> "$rc"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeforge-dev",
3
- "version": "1.5.7",
3
+ "version": "1.5.8",
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": {