@vibedx/vibekit 0.5.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 +18 -6
- package/package.json +1 -1
- package/src/commands/lint/index.js +6 -1
package/README.md
CHANGED
|
@@ -41,6 +41,18 @@ vibe new "Add user authentication"
|
|
|
41
41
|
vibe start TKT-001
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
+
### 🤖 Use with AI Agents (skills.sh)
|
|
45
|
+
|
|
46
|
+
Install the vibekit skill so AI coding agents (Claude Code, Cursor, Codex, etc.) know how to use it:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
npx skills add vibedx/vibekit
|
|
50
|
+
```
|
|
51
|
+
|
|
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
|
+
|
|
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
|
+
|
|
44
56
|
## 🤔 Why VibeKit?
|
|
45
57
|
|
|
46
58
|
- **🎯 Vibe code with manageable smaller tasks** - Break down complex features into focused tickets
|
|
@@ -84,13 +96,13 @@ vibe get-started
|
|
|
84
96
|
```bash
|
|
85
97
|
# Create a new ticket
|
|
86
98
|
vibe new "Fix login bug"
|
|
87
|
-
vibe new "Add dark mode" --priority high --assignee
|
|
88
|
-
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
|
|
89
101
|
|
|
90
102
|
# List all tickets (with optional filtering)
|
|
91
103
|
vibe list
|
|
92
104
|
vibe list --status=open
|
|
93
|
-
vibe list --assignee=
|
|
105
|
+
vibe list --assignee=alice
|
|
94
106
|
|
|
95
107
|
# Close/complete a ticket
|
|
96
108
|
vibe close TKT-001
|
|
@@ -106,11 +118,11 @@ vibe start TKT-001 --base main --update-status
|
|
|
106
118
|
vibe team
|
|
107
119
|
|
|
108
120
|
# Add a member (stored in .vibe/team.yml)
|
|
109
|
-
vibe team add
|
|
110
|
-
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
|
|
111
123
|
|
|
112
124
|
# Show a member's details
|
|
113
|
-
vibe team show
|
|
125
|
+
vibe team show alice
|
|
114
126
|
|
|
115
127
|
# Remove a member
|
|
116
128
|
vibe team remove old-member
|
package/package.json
CHANGED
|
@@ -87,7 +87,12 @@ function getRequiredFrontmatter(config) {
|
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
const frontmatter = yaml.load(parts[1]);
|
|
90
|
-
|
|
90
|
+
// Only require fields that have non-empty default values in the template
|
|
91
|
+
// Fields like assignee: "" and author: "" are optional
|
|
92
|
+
return Object.keys(frontmatter || {}).filter(key => {
|
|
93
|
+
const val = frontmatter[key];
|
|
94
|
+
return val !== '' && val !== null && val !== undefined;
|
|
95
|
+
});
|
|
91
96
|
} catch (error) {
|
|
92
97
|
// Fallback to default required fields
|
|
93
98
|
return ['id', 'title', 'slug', 'status', 'priority', 'created_at', 'updated_at'];
|