vibeteam 0.2.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/LICENSE +21 -0
- package/README.md +126 -0
- package/bin/cli.js +832 -0
- package/bin/vibeteam +71 -0
- package/data/.gitkeep +0 -0
- package/dist/server/server/CommitWatcher.js +307 -0
- package/dist/server/server/GitStatusManager.js +349 -0
- package/dist/server/server/ProjectsManager.js +439 -0
- package/dist/server/server/index.js +5994 -0
- package/dist/server/shared/defaults.js +28 -0
- package/dist/server/shared/types.js +33 -0
- package/hooks/install.sh +77 -0
- package/hooks/vibeteam-hook.sh +384 -0
- package/package.json +48 -0
- package/public/apple-touch-icon.png +0 -0
- package/public/assets/index-BNFGxstP.js +4793 -0
- package/public/assets/index-F7oFKwZy.css +1 -0
- package/public/favicon-16x16.png +0 -0
- package/public/favicon-32x32.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/favicon.svg +14 -0
- package/public/index.html +21 -0
- package/public/logo.svg +22 -0
- package/public/models/.gitkeep +0 -0
- package/public/models/models/.gitkeep +0 -0
- package/public/site.webmanifest +25 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 asara
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
# VibTeam
|
|
2
|
+
|
|
3
|
+
3D visualization of Claude Code as an interactive workshop. Watch Claude move between workstations as it uses tools.
|
|
4
|
+
|
|
5
|
+
  
|
|
6
|
+
|
|
7
|
+
## Requirements
|
|
8
|
+
|
|
9
|
+
- **macOS or Linux** (Windows not supported - hooks require bash)
|
|
10
|
+
- **Node.js** 18+
|
|
11
|
+
- **jq** - for hook scripts (`brew install jq` / `apt install jq`)
|
|
12
|
+
- **tmux** - for session management (`brew install tmux` / `apt install tmux`)
|
|
13
|
+
|
|
14
|
+
## Quick Start
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
# 1. Install dependencies
|
|
18
|
+
brew install jq tmux # macOS
|
|
19
|
+
# sudo apt install jq tmux # Ubuntu/Debian
|
|
20
|
+
|
|
21
|
+
# 2. Configure hooks (one time)
|
|
22
|
+
npx vibeteam setup
|
|
23
|
+
|
|
24
|
+
# 3. Start server
|
|
25
|
+
npx vibeteam
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Open http://localhost:4003 and use Claude Code normally. You'll see Claude move around the workshop as it uses tools.
|
|
29
|
+
|
|
30
|
+
**From source:**
|
|
31
|
+
```bash
|
|
32
|
+
git clone https://github.com/Elysian-Labs/vibeteam
|
|
33
|
+
cd vibeteam && npm install && npm run dev
|
|
34
|
+
# Opens on http://localhost:4002
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
**To uninstall:** `npx vibeteam uninstall` (removes hooks, keeps your data)
|
|
38
|
+
|
|
39
|
+
## Browser Control (Optional)
|
|
40
|
+
|
|
41
|
+
Run Claude in tmux to send prompts from browser:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
tmux new -s claude
|
|
45
|
+
claude
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Then use the input field in the visualization with "Send to tmux" checked.
|
|
49
|
+
|
|
50
|
+
## Stations
|
|
51
|
+
|
|
52
|
+
| Station | Tools | Details |
|
|
53
|
+
|---------|-------|---------|
|
|
54
|
+
| Bookshelf | Read | Books on shelves |
|
|
55
|
+
| Desk | Write | Paper, pencil, ink pot |
|
|
56
|
+
| Workbench | Edit | Wrench, gears, bolts |
|
|
57
|
+
| Terminal | Bash | Glowing screen |
|
|
58
|
+
| Scanner | Grep, Glob | Telescope with lens |
|
|
59
|
+
| Antenna | WebFetch, WebSearch | Satellite dish |
|
|
60
|
+
| Portal | Task (subagents) | Glowing ring portal |
|
|
61
|
+
| Taskboard | TodoWrite | Board with sticky notes |
|
|
62
|
+
|
|
63
|
+
## Features
|
|
64
|
+
|
|
65
|
+
- **Floating context labels** - See file paths and commands above active stations
|
|
66
|
+
- **Thought bubbles** - Claude shows thinking animation while processing
|
|
67
|
+
- **Response capture** - Claude's responses appear in the activity feed
|
|
68
|
+
- **Subagent visualization** - Mini-Claudes spawn at portal for parallel tasks
|
|
69
|
+
- **Cancel button** - Send Ctrl+C to interrupt Claude
|
|
70
|
+
- **Split-screen layout** - 60% 3D scene (Workshop), 40% activity feed
|
|
71
|
+
- **Voice input** - Speak prompts with real-time transcription (requires Deepgram API key)
|
|
72
|
+
- **Attention system** - Zones pulse when sessions need input or finish
|
|
73
|
+
- **Sound effects** - Synthesized audio feedback for tools and events ([docs/SOUND.md](docs/SOUND.md))
|
|
74
|
+
- **Draw mode** - Paint hex tiles with colors, 3D stacking, and text labels (press `D`)
|
|
75
|
+
- **Text labels** - Add multi-line labels to hex tiles with custom modal
|
|
76
|
+
- **Zone context menus** - Right-click zones for Info (`I`) or quick Command (`C`) input
|
|
77
|
+
- **Station panels** - Toggle with `P` to see recent tool history per workstation
|
|
78
|
+
- **Context-aware animations** - Claude celebrates commits, shakes head on errors
|
|
79
|
+
|
|
80
|
+
## Orchestration (Multi-Claude)
|
|
81
|
+
|
|
82
|
+
Run multiple Claude instances and direct work to each:
|
|
83
|
+
|
|
84
|
+
1. Click **"+ New"** (or `Alt+N`) to spawn a new session
|
|
85
|
+
2. Configure name, directory, and flags (`-r`, `--chrome`, `--dangerously-skip-permissions`)
|
|
86
|
+
3. Click a session or press `1-6` (or `Alt+1-6` in inputs) to select it
|
|
87
|
+
4. Send prompts to whichever Claude you want
|
|
88
|
+
|
|
89
|
+
Each session runs in its own tmux, with status tracking (idle/working/offline).
|
|
90
|
+
|
|
91
|
+
See [docs/ORCHESTRATION.md](docs/ORCHESTRATION.md) for the full API and architecture.
|
|
92
|
+
|
|
93
|
+
## Keyboard Shortcuts
|
|
94
|
+
|
|
95
|
+
| Key | Action |
|
|
96
|
+
|-----|--------|
|
|
97
|
+
| `Tab` / `Esc` | Switch focus between Workshop and Feed |
|
|
98
|
+
| `1-6` | Switch to session (extended: QWERTY, ASDFGH, ZXCVBN) |
|
|
99
|
+
| `0` / `` ` `` | All sessions / overview |
|
|
100
|
+
| `Alt+N` | New session |
|
|
101
|
+
| `Alt+R` | Toggle voice input |
|
|
102
|
+
| `F` | Toggle follow mode |
|
|
103
|
+
| `P` | Toggle station panels |
|
|
104
|
+
| `D` | Toggle draw mode |
|
|
105
|
+
|
|
106
|
+
**Draw mode:** `1-6` colors, `0` eraser, `Q/E` brush size, `R` 3D stack, `X` clear
|
|
107
|
+
|
|
108
|
+
## CLI Options
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
vibeteam [options]
|
|
112
|
+
|
|
113
|
+
Options:
|
|
114
|
+
--port, -p <port> WebSocket server port (default: 4003)
|
|
115
|
+
--help, -h Show help
|
|
116
|
+
--version, -v Show version
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
See [docs/SETUP.md](docs/SETUP.md) for detailed setup guide.
|
|
120
|
+
See [CLAUDE.md](CLAUDE.md) for technical documentation.
|
|
121
|
+
|
|
122
|
+
Website: https://vibeteam.sh
|
|
123
|
+
|
|
124
|
+
## License
|
|
125
|
+
|
|
126
|
+
MIT
|