vibora 2.14.0 → 3.0.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 +31 -2
- package/bin/vibora.js +29745 -144
- package/dist/assets/{index-BpF-1Ob3.js → index-zTbcAuyK.js} +56 -56
- package/dist/index.html +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ The Vibe Engineer's Cockpit. Orchestrate Claude Code across parallel workstreams
|
|
|
11
11
|
- **Task Terminals View** — See and control all your Claude Code sessions across every worktree in one parallel view. The killer feature for orchestrating multiple agents simultaneously.
|
|
12
12
|
- **Run Local or Remote** — Client/server architecture lets you run agents on your machine or a remote server. Launch tasks, close your laptop, and your agents keep working.
|
|
13
13
|
- **Git Worktree Isolation** — Each task runs in its own worktree. Your main branch stays clean until you're ready to merge.
|
|
14
|
-
- **
|
|
14
|
+
- **Deep Claude Integration** — Plugin with skill for automatic status sync and task management. MCP server lets Claude manage tasks, list repositories, and send notifications directly.
|
|
15
15
|
- **Persistent Terminals** — Named terminal tabs that survive restarts for ongoing work that doesn't fit into task worktrees.
|
|
16
16
|
|
|
17
17
|
## Key Features
|
|
@@ -19,7 +19,8 @@ The Vibe Engineer's Cockpit. Orchestrate Claude Code across parallel workstreams
|
|
|
19
19
|
- **Parallel Agent Orchestration** — Run multiple Claude Code sessions across different tasks and worktrees
|
|
20
20
|
- **Local or Remote Execution** — Run on your machine or a remote server; agents continue working when you disconnect
|
|
21
21
|
- **Git Worktree Isolation** — Safe experimentation without touching your main branch
|
|
22
|
-
- **Claude Code Plugin** —
|
|
22
|
+
- **Claude Code Plugin** — Skill for task management, automatic status sync, session continuity
|
|
23
|
+
- **MCP Server** — Let Claude manage tasks, list repositories, and send notifications
|
|
23
24
|
- **Kanban Task Management** — Visual task tracking from planning to done
|
|
24
25
|
- **PR Monitoring** — Track pull requests across repositories
|
|
25
26
|
- **Linear Integration** — Sync task status with Linear tickets
|
|
@@ -103,6 +104,7 @@ The Vibora plugin for Claude Code enables seamless integration:
|
|
|
103
104
|
- **Automatic Status Sync** — Task moves to "In Review" when Claude stops, "In Progress" when you respond
|
|
104
105
|
- **Slash Commands** — `/review`, `/pr`, `/notify`, `/linear`, `/task-info`
|
|
105
106
|
- **Session Continuity** — Claude sessions are tied to task IDs
|
|
107
|
+
- **MCP Server** — Task management tools available directly to Claude
|
|
106
108
|
|
|
107
109
|
The plugin is automatically installed in task worktrees when tasks are created. To install globally:
|
|
108
110
|
|
|
@@ -111,6 +113,32 @@ claude plugin marketplace add knowsuchagency/vibora
|
|
|
111
113
|
claude plugin install vibora@vibora --scope user
|
|
112
114
|
```
|
|
113
115
|
|
|
116
|
+
### MCP Tools
|
|
117
|
+
|
|
118
|
+
The plugin includes an MCP server that exposes task management tools:
|
|
119
|
+
|
|
120
|
+
- `list_tasks` — List all tasks with optional status/repo filter
|
|
121
|
+
- `get_task` — Get task details by ID
|
|
122
|
+
- `create_task` — Create a new task with git worktree
|
|
123
|
+
- `update_task` — Update task title/description
|
|
124
|
+
- `delete_task` — Delete a task
|
|
125
|
+
- `move_task` — Change task status
|
|
126
|
+
- `list_repositories` — List configured repositories
|
|
127
|
+
- `send_notification` — Send notification to enabled channels
|
|
128
|
+
|
|
129
|
+
For Claude Desktop, add to your `claude_desktop_config.json`:
|
|
130
|
+
|
|
131
|
+
```json
|
|
132
|
+
{
|
|
133
|
+
"mcpServers": {
|
|
134
|
+
"vibora": {
|
|
135
|
+
"command": "vibora",
|
|
136
|
+
"args": ["mcp"]
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
```
|
|
141
|
+
|
|
114
142
|
## Remote Server Setup
|
|
115
143
|
|
|
116
144
|
Run the backend on a remote server and connect from anywhere. Launch tasks, close your laptop, and your agents keep working. As AI becomes more capable of autonomous work, this becomes essential.
|
|
@@ -174,6 +202,7 @@ vibora up # Start server daemon
|
|
|
174
202
|
vibora down # Stop server
|
|
175
203
|
vibora status # Check server status
|
|
176
204
|
vibora health # Check server health
|
|
205
|
+
vibora mcp # Start MCP server (stdio)
|
|
177
206
|
```
|
|
178
207
|
|
|
179
208
|
### Current Task (auto-detected from worktree)
|