@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.
Files changed (2) hide show
  1. package/README.md +8 -6
  2. 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 opusaku
98
- vibe new "Quick task" --assignee mani-yadv -n # -n skips AI prompt
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=opusaku
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 mani-yadv --name "Mani" --github mani-yadv --slack U0ABC123 --x vernon1943 --role Founder
120
- vibe team add opusaku --name "Opus" --github opusaku --slack U0DEF456 --role "Senior Engineer"
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 mani-yadv
125
+ vibe team show alice
124
126
 
125
127
  # Remove a member
126
128
  vibe team remove old-member
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibedx/vibekit",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "A powerful CLI tool for managing development tickets and project workflows",
5
5
  "main": "index.js",
6
6
  "type": "module",