@vibedx/vibekit 0.6.0 → 0.6.1
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 +8 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -51,6 +51,8 @@ npx skills add vibedx/vibekit
|
|
|
51
51
|
|
|
52
52
|
The skill teaches agents the ticket-driven workflow — they'll create focused tickets before writing code, track work through git branches, and keep tickets as living documentation.
|
|
53
53
|
|
|
54
|
+
**Coordinating multiple agents?** See **[docs/agent-workflow.md](./docs/agent-workflow.md)** for a framework-agnostic pattern for running multi-agent teams on a shared repo — assignees, polling loops, escalation, and loop prevention.
|
|
55
|
+
|
|
54
56
|
## 🤔 Why VibeKit?
|
|
55
57
|
|
|
56
58
|
- **🎯 Vibe code with manageable smaller tasks** - Break down complex features into focused tickets
|
|
@@ -94,13 +96,13 @@ vibe get-started
|
|
|
94
96
|
```bash
|
|
95
97
|
# Create a new ticket
|
|
96
98
|
vibe new "Fix login bug"
|
|
97
|
-
vibe new "Add dark mode" --priority high --assignee
|
|
98
|
-
vibe new "Quick task" --assignee
|
|
99
|
+
vibe new "Add dark mode" --priority high --assignee alice
|
|
100
|
+
vibe new "Quick task" --assignee bob -n # -n skips AI prompt
|
|
99
101
|
|
|
100
102
|
# List all tickets (with optional filtering)
|
|
101
103
|
vibe list
|
|
102
104
|
vibe list --status=open
|
|
103
|
-
vibe list --assignee=
|
|
105
|
+
vibe list --assignee=alice
|
|
104
106
|
|
|
105
107
|
# Close/complete a ticket
|
|
106
108
|
vibe close TKT-001
|
|
@@ -116,11 +118,11 @@ vibe start TKT-001 --base main --update-status
|
|
|
116
118
|
vibe team
|
|
117
119
|
|
|
118
120
|
# Add a member (stored in .vibe/team.yml)
|
|
119
|
-
vibe team add
|
|
120
|
-
vibe team add
|
|
121
|
+
vibe team add alice --name "Alice" --github alice --slack U0ABC123 --role Engineer
|
|
122
|
+
vibe team add bob --name "Bob" --github bob --slack U0DEF456 --role Designer
|
|
121
123
|
|
|
122
124
|
# Show a member's details
|
|
123
|
-
vibe team show
|
|
125
|
+
vibe team show alice
|
|
124
126
|
|
|
125
127
|
# Remove a member
|
|
126
128
|
vibe team remove old-member
|