@vibedx/vibekit 0.7.0 → 0.8.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 +44 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -106,6 +106,9 @@ vibe list
|
|
|
106
106
|
vibe list --status=open
|
|
107
107
|
vibe list --assignee=alice
|
|
108
108
|
|
|
109
|
+
# Check active worktrees and ticket progress
|
|
110
|
+
vibe status
|
|
111
|
+
|
|
109
112
|
# Close/complete a ticket
|
|
110
113
|
vibe close TKT-001
|
|
111
114
|
|
|
@@ -116,6 +119,10 @@ vibe start TKT-001 --base main --update-status
|
|
|
116
119
|
# Start in a separate worktree (parallel work without switching branches)
|
|
117
120
|
vibe start TKT-001 --worktree
|
|
118
121
|
vibe start TKT-001 -w
|
|
122
|
+
|
|
123
|
+
# Spawn a Claude agent to work on a ticket automatically
|
|
124
|
+
vibe start TKT-001 --agent # Single ticket, current directory
|
|
125
|
+
vibe start TKT-001 TKT-002 -w --agent # Multiple tickets in worktrees with agents
|
|
119
126
|
```
|
|
120
127
|
|
|
121
128
|
### 👥 Team Management
|
|
@@ -260,6 +267,43 @@ $ vibe close TKT-005
|
|
|
260
267
|
✅ Closed TKT-005
|
|
261
268
|
```
|
|
262
269
|
|
|
270
|
+
### Autonomous Development with Claude Agents
|
|
271
|
+
```bash
|
|
272
|
+
# Spawn a Claude agent to work on a single ticket
|
|
273
|
+
$ vibe start TKT-006 --agent
|
|
274
|
+
🤖 Starting Claude agent for TKT-006...
|
|
275
|
+
⏱️ Agent timeout: 15 minutes (configurable in .vibe/config.yml)
|
|
276
|
+
✨ Agent has full tool access (git, file I/O, CLI)
|
|
277
|
+
|
|
278
|
+
# Agent automatically:
|
|
279
|
+
• Creates the branch and updates ticket to in_progress
|
|
280
|
+
• Reads ticket requirements and implements the work
|
|
281
|
+
• Commits changes with clear commit messages
|
|
282
|
+
• Marks ticket as done when complete (or in_progress if changes needed)
|
|
283
|
+
|
|
284
|
+
# Work on multiple tickets with agents in parallel worktrees
|
|
285
|
+
$ vibe start TKT-006 TKT-007 TKT-008 -w --agent
|
|
286
|
+
🌿 Creating 3 worktrees with Claude agents...
|
|
287
|
+
🤖 Agent 1 working on TKT-006
|
|
288
|
+
🤖 Agent 2 working on TKT-007
|
|
289
|
+
🤖 Agent 3 working on TKT-008
|
|
290
|
+
|
|
291
|
+
# Monitor progress
|
|
292
|
+
$ vibe status
|
|
293
|
+
Active Worktrees:
|
|
294
|
+
🌿 feature/TKT-006-... (TKT-006: in_progress) 🤖 Agent running...
|
|
295
|
+
🌿 feature/TKT-007-... (TKT-007: in_progress) 🤖 Agent running...
|
|
296
|
+
🌿 feature/TKT-008-... (TKT-008: in_progress) 🤖 Agent running...
|
|
297
|
+
```
|
|
298
|
+
|
|
299
|
+
### Agent Configuration
|
|
300
|
+
```yaml
|
|
301
|
+
# In .vibe/config.yml
|
|
302
|
+
worktree:
|
|
303
|
+
agent:
|
|
304
|
+
timeout: 900 # 15 minutes (seconds), increase for complex work
|
|
305
|
+
```
|
|
306
|
+
|
|
263
307
|
### Quality Control with Lint
|
|
264
308
|
```bash
|
|
265
309
|
# Check all tickets for formatting issues
|