claude-den 0.1.0
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 +101 -0
- package/dist/bin/den.d.ts +2 -0
- package/dist/bin/den.js +1467 -0
- package/dist/bin/den.js.map +1 -0
- package/dist/index.d.ts +83 -0
- package/dist/index.js +775 -0
- package/dist/index.js.map +1 -0
- package/dist/src/index.d.ts +83 -0
- package/dist/src/index.js +777 -0
- package/dist/src/index.js.map +1 -0
- package/package.json +52 -0
package/README.md
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
# claude-den
|
|
2
|
+
|
|
3
|
+
Your cozy terminal den for Claude Code.
|
|
4
|
+
|
|
5
|
+
One command to set up the perfect terminal environment for Claude Code development.
|
|
6
|
+
|
|
7
|
+
## Features
|
|
8
|
+
|
|
9
|
+
- **Auto-detect terminal** - Ghostty, iTerm2, Kitty, Alacritty, Warp, and more
|
|
10
|
+
- **5 built-in themes** - Catppuccin Mocha, Nord, Tokyo Night, Dracula, Gruvbox
|
|
11
|
+
- **Starship prompt** - Claude Code-aware status line with git integration
|
|
12
|
+
- **tmux layouts** - Predefined workflows: coding, parallel agents, monitoring
|
|
13
|
+
- **Backup & restore** - Never lose your existing configs
|
|
14
|
+
- **Doctor** - Diagnose your terminal setup
|
|
15
|
+
|
|
16
|
+
## Install
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
# Clone and install globally
|
|
20
|
+
git clone https://github.com/Longado/claude-den.git
|
|
21
|
+
cd claude-den
|
|
22
|
+
npm install && npm run build
|
|
23
|
+
npm link
|
|
24
|
+
|
|
25
|
+
# Now use it anywhere
|
|
26
|
+
den init
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Or run directly without installing:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
git clone https://github.com/Longado/claude-den.git
|
|
33
|
+
cd claude-den
|
|
34
|
+
npm install && npm run build
|
|
35
|
+
node dist/bin/den.js init
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Commands
|
|
39
|
+
|
|
40
|
+
| Command | Description |
|
|
41
|
+
|---------|-------------|
|
|
42
|
+
| `den init` | Interactive setup wizard |
|
|
43
|
+
| `den theme list` | Show available themes |
|
|
44
|
+
| `den theme preview <name>` | Preview a theme's colors |
|
|
45
|
+
| `den theme apply <name>` | Apply theme everywhere |
|
|
46
|
+
| `den layout list` | Show available tmux layouts |
|
|
47
|
+
| `den layout start <name>` | Launch a tmux layout |
|
|
48
|
+
| `den doctor` | Check terminal capabilities |
|
|
49
|
+
| `den backup` | Backup current configs |
|
|
50
|
+
| `den restore` | Restore from backup |
|
|
51
|
+
|
|
52
|
+
## Themes
|
|
53
|
+
|
|
54
|
+
| Theme | Description |
|
|
55
|
+
|-------|-------------|
|
|
56
|
+
| `catppuccin-mocha` | Soothing pastel with warm purple tones |
|
|
57
|
+
| `nord` | Arctic, north-bluish palette |
|
|
58
|
+
| `tokyo-night` | Clean dark, inspired by Tokyo city lights |
|
|
59
|
+
| `dracula` | Dark theme with vibrant colors |
|
|
60
|
+
| `gruvbox` | Retro groove with warm earthy tones |
|
|
61
|
+
|
|
62
|
+
## Layouts
|
|
63
|
+
|
|
64
|
+
| Layout | Description |
|
|
65
|
+
|--------|-------------|
|
|
66
|
+
| `coding` | Claude Code left, shell right |
|
|
67
|
+
| `parallel` | 2x2 grid for parallel Claude agents |
|
|
68
|
+
| `monitor` | Claude + git + system monitor |
|
|
69
|
+
|
|
70
|
+
## Supported Terminals
|
|
71
|
+
|
|
72
|
+
- Ghostty (recommended)
|
|
73
|
+
- iTerm2
|
|
74
|
+
- Kitty
|
|
75
|
+
- Alacritty
|
|
76
|
+
- Warp
|
|
77
|
+
|
|
78
|
+
## Prerequisites
|
|
79
|
+
|
|
80
|
+
- Node.js >= 18
|
|
81
|
+
- Recommended: [Maple Mono NF CN](https://github.com/subframe7536/maple-font) font
|
|
82
|
+
- Optional: [Starship](https://starship.rs), [tmux](https://github.com/tmux/tmux)
|
|
83
|
+
|
|
84
|
+
## Development
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
git clone https://github.com/Longado/claude-den.git
|
|
88
|
+
cd claude-den
|
|
89
|
+
npm install
|
|
90
|
+
npm test
|
|
91
|
+
npm run build
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## Roadmap
|
|
95
|
+
|
|
96
|
+
- **Phase 2**: Multi-agent orchestration (`den agent spawn 3`)
|
|
97
|
+
- **Phase 3**: Community theme engine (`den theme publish`)
|
|
98
|
+
|
|
99
|
+
## License
|
|
100
|
+
|
|
101
|
+
MIT
|