@atercates/claude-deck 0.2.13 → 0.2.14

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/README.md CHANGED
@@ -7,13 +7,13 @@ Self-hosted web UI for managing Claude Code sessions.
7
7
  ### Quick Install
8
8
 
9
9
  ```bash
10
- curl -fsSL https://raw.githubusercontent.com/ATERCATES/claude-deck/main/scripts/install.sh | bash
10
+ curl -fsSL https://raw.githubusercontent.com/ATERCATES/claude-deck/main/scripts/install.sh -o /tmp/install-claudedeck.sh
11
+ bash /tmp/install-claudedeck.sh
11
12
  ```
12
13
 
13
14
  The installer will:
14
15
 
15
- - Install Node.js 24 if needed (via [n](https://github.com/tj/n))
16
- - Install pnpm
16
+ - Install Node.js 24, pnpm, and tmux if needed
17
17
  - Ask for port, SSH host/port (for VS Code remote button)
18
18
  - Clone, build, and start as a systemd service
19
19
  - First visit prompts you to create an account
@@ -21,7 +21,7 @@ The installer will:
21
21
  ### Non-Interactive
22
22
 
23
23
  ```bash
24
- bash install.sh --port 3011 --ssh-host myserver.com --ssh-port 22 -y
24
+ curl -fsSL https://raw.githubusercontent.com/ATERCATES/claude-deck/main/scripts/install.sh | bash -s -- --port 3011 --ssh-host myserver.com --ssh-port 22 -y
25
25
  ```
26
26
 
27
27
  ### Manual Install
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atercates/claude-deck",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
4
4
  "description": "Self-hosted web UI for managing Claude Code sessions",
5
5
  "bin": {
6
6
  "claude-deck": "./scripts/claude-deck"
@@ -2,14 +2,15 @@
2
2
  #
3
3
  # ClaudeDeck Installer
4
4
  #
5
- # Install:
6
- # curl -fsSL https://raw.githubusercontent.com/ATERCATES/claude-deck/main/scripts/install.sh | bash
5
+ # Install (interactive):
6
+ # curl -fsSL https://raw.githubusercontent.com/ATERCATES/claude-deck/main/scripts/install.sh -o /tmp/install-claudedeck.sh
7
+ # bash /tmp/install-claudedeck.sh
7
8
  #
8
- # Update:
9
- # ~/.claude-deck/install.sh --update
9
+ # Install (non-interactive):
10
+ # curl -fsSL https://raw.githubusercontent.com/ATERCATES/claude-deck/main/scripts/install.sh | bash -s -- --port 3011 --ssh-host myserver.com --ssh-port 22 -y
10
11
  #
11
- # Options:
12
- # --port 3011 --ssh-host myserver.com --ssh-port 22 -y
12
+ # Update:
13
+ # ~/.claude-deck/scripts/install.sh --update
13
14
  #
14
15
 
15
16
  set -e