@vibedx/vibekit 0.5.0 → 0.6.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 CHANGED
@@ -41,6 +41,16 @@ 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
+
44
54
  ## 🤔 Why VibeKit?
45
55
 
46
56
  - **🎯 Vibe code with manageable smaller tasks** - Break down complex features into focused tickets
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibedx/vibekit",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "A powerful CLI tool for managing development tickets and project workflows",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -87,7 +87,12 @@ function getRequiredFrontmatter(config) {
87
87
  }
88
88
 
89
89
  const frontmatter = yaml.load(parts[1]);
90
- return Object.keys(frontmatter || {});
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'];