@atercates/claude-deck 0.2.8 → 0.2.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atercates/claude-deck",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "Self-hosted web UI for managing Claude Code sessions",
5
5
  "bin": {
6
6
  "claude-deck": "./scripts/claude-deck"
@@ -80,8 +80,15 @@ if ! command -v git &> /dev/null; then
80
80
  fi
81
81
 
82
82
  if ! command -v tmux &> /dev/null; then
83
- log_error "tmux is required. Install it with: sudo apt install tmux"
84
- exit 1
83
+ log_warn "tmux is not installed (required for session management)"
84
+ ask "Install tmux now? (y/n)" "y" INSTALL_TMUX
85
+ if [[ "$INSTALL_TMUX" == "y" ]]; then
86
+ sudo apt install -y tmux
87
+ log_success "tmux installed"
88
+ else
89
+ log_error "tmux is required. Install it manually and re-run."
90
+ exit 1
91
+ fi
85
92
  fi
86
93
 
87
94
  # ─── Node.js ──────────────────────────────────────────────────────────────────