codeforge-dev 1.5.2 → 1.5.4

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,6 +1,14 @@
1
1
  # CodeForge Devcontainer Changelog
2
2
 
3
- ## [v1.5.2] - 2026-02-06
3
+ ## [v1.5.3] - 2026-02-06
4
+
5
+ ### Added
6
+
7
+ - **Catppuccin Mocha tmux theme**: Replaced barebones tmux config with Catppuccin v2.1.3. Rounded window tabs, Nerd Font icons, transparent status bar, colored pane borders. Installed at build time via shallow git clone (~200KB, ~2s)
8
+
9
+ ### Fixed
10
+
11
+ - **ccstatusline powerline glyphs**: Powerline separators/caps were empty strings, rendering as underscores. Now uses proper Nerd Font glyphs (U+E0B0, U+E0B4, U+E0B6)
4
12
 
5
13
  ### Fixed
6
14
 
@@ -94,10 +94,10 @@ CONFIG_JSON=$(jq -n '{
94
94
  globalBold: false,
95
95
  powerline: {
96
96
  enabled: true,
97
- separators: [""],
97
+ separators: ["\ue0b0"],
98
98
  separatorInvertBackground: [true],
99
- startCaps: [""],
100
- endCaps: [""],
99
+ startCaps: ["\ue0b6"],
100
+ endCaps: ["\ue0b4"],
101
101
  autoAlign: false,
102
102
  theme: "monokai"
103
103
  },
@@ -5,9 +5,11 @@ Installs tmux for Claude Code Agent Teams split-pane support.
5
5
  ## What This Provides
6
6
 
7
7
  - **tmux** terminal multiplexer for managing multiple terminal sessions
8
+ - **Catppuccin Mocha** theme with rounded window tabs and Nerd Font icons
8
9
  - Pre-configured for Claude Code Agent Teams with optimized settings
9
10
  - Mouse support enabled for easy pane navigation
10
- - Clean status bar showing session info
11
+ - True color support (works with WezTerm, iTerm2, and other modern terminals)
12
+ - Transparent status bar background (inherits terminal theme)
11
13
 
12
14
  ## Claude Code Agent Teams Integration
13
15
 
@@ -7,46 +7,65 @@ echo "Installing tmux for Claude Code Agent Teams..."
7
7
  apt-get update
8
8
  apt-get install -y tmux
9
9
 
10
- # Create a basic tmux config optimized for Claude Code teams
10
+ # Install Catppuccin theme (shallow clone for fast builds)
11
+ CATPPUCCIN_DIR="/usr/share/tmux/plugins/catppuccin"
12
+ echo "Installing Catppuccin tmux theme..."
13
+ mkdir -p "$(dirname "$CATPPUCCIN_DIR")"
14
+ git clone --depth 1 -b v2.1.3 https://github.com/catppuccin/tmux.git "$CATPPUCCIN_DIR"
15
+ # Remove .git to save space (we pinned the version, don't need history)
16
+ rm -rf "$CATPPUCCIN_DIR/.git"
17
+
18
+ # Create tmux config optimized for Claude Code teams + Catppuccin Mocha
11
19
  TMUX_CONF="/etc/tmux.conf"
12
20
  cat > "$TMUX_CONF" << 'EOF'
13
21
  # Claude Code Agent Teams - tmux configuration
22
+ # Theme: Catppuccin Mocha
14
23
 
15
- # Enable mouse support for pane selection
24
+ # ── Core Settings ──────────────────────────────────────────────
16
25
  set -g mouse on
17
-
18
- # Start window numbering at 1
19
26
  set -g base-index 1
20
27
  setw -g pane-base-index 1
21
-
22
- # Increase scrollback buffer
23
28
  set -g history-limit 10000
24
-
25
- # Reduce escape time for better responsiveness
26
29
  set -sg escape-time 10
30
+ set -g focus-events on
31
+ set -g renumber-windows on
32
+
33
+ # ── True Color Support ─────────────────────────────────────────
34
+ set -g default-terminal "tmux-256color"
35
+ set -ga terminal-overrides ",*256col*:Tc"
36
+ set -ga terminal-overrides ",xterm-256color:RGB"
27
37
 
28
- # Status bar configuration
29
- set -g status-style 'bg=#1e1e2e fg=#cdd6f4'
30
- set -g status-left '[#S] '
31
- set -g status-right '%H:%M '
32
- set -g status-left-length 20
38
+ # ── Catppuccin Theme ──────────────────────────────────────────
39
+ set -g @catppuccin_flavor "mocha"
33
40
 
34
- # Pane border styling
35
- set -g pane-border-style 'fg=#45475a'
36
- set -g pane-active-border-style 'fg=#89b4fa'
41
+ # Window tabs: rounded style with Nerd Font icons
42
+ set -g @catppuccin_window_status_style "rounded"
43
+ set -g @catppuccin_window_text " #W"
44
+ set -g @catppuccin_window_current_text " #W"
45
+ set -g @catppuccin_window_flags "icon"
46
+ set -g @catppuccin_window_number_position "left"
37
47
 
38
- # Window status
39
- setw -g window-status-current-style 'fg=#1e1e2e bg=#89b4fa bold'
40
- setw -g window-status-current-format ' #I:#W '
41
- setw -g window-status-style 'fg=#cdd6f4'
42
- setw -g window-status-format ' #I:#W '
48
+ # Pane borders: colored with active pane indicator
49
+ set -g @catppuccin_pane_status_enabled "yes"
50
+ set -g @catppuccin_pane_border_status "top"
43
51
 
44
- # Enable true color support
45
- set -g default-terminal "tmux-256color"
46
- set -ga terminal-overrides ",*256col*:Tc"
52
+ # Status bar background: transparent (inherit terminal bg)
53
+ set -g @catppuccin_status_background "none"
54
+
55
+ # Status bar: left side
56
+ set -g status-left ""
57
+
58
+ # Status bar: right side — session name + date/time
59
+ set -g @catppuccin_date_time_text " %H:%M"
60
+ set -g status-right "#{E:@catppuccin_status_session}"
61
+ set -agF status-right "#{E:@catppuccin_status_date_time}"
62
+
63
+ # Load Catppuccin (must come after all @catppuccin settings)
64
+ run /usr/share/tmux/plugins/catppuccin/catppuccin.tmux
47
65
  EOF
48
66
 
49
67
  echo "tmux installed successfully"
50
68
  echo " - Config: $TMUX_CONF"
69
+ echo " - Theme: Catppuccin Mocha"
51
70
  echo " - Use 'tmux new -s claude-teams' to start a session"
52
71
  echo " - Claude Code Agent Teams will auto-detect tmux when available"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeforge-dev",
3
- "version": "1.5.2",
3
+ "version": "1.5.4",
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": {