@vibedx/vibekit 0.2.2 → 0.3.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 +30 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -244,6 +244,36 @@ $ vibe lint --fix
|
|
|
244
244
|
🎉 Most issues have been fixed! Please review and fix remaining errors manually.
|
|
245
245
|
```
|
|
246
246
|
|
|
247
|
+
### 🦀 OpenClaw Integration - Autonomous Workflow Management
|
|
248
|
+
|
|
249
|
+
Your bot automatically understands VibeKit. Just ask it to get started:
|
|
250
|
+
|
|
251
|
+
> "Set up this project with @vibedx/vibekit, add tickets for the features we need, and start working on them."
|
|
252
|
+
|
|
253
|
+
The bot will:
|
|
254
|
+
- Install & initialize VibeKit automatically
|
|
255
|
+
- Create tickets from your requirements
|
|
256
|
+
- Work on tickets, update progress, close when done
|
|
257
|
+
- Use `vibe list` to track and manage the workflow
|
|
258
|
+
- Keep all context in tickets — never loses progress between chats
|
|
259
|
+
|
|
260
|
+
**What you can ask your bot to:**
|
|
261
|
+
- 📝 **Add tickets** - "Create tickets for user auth, database setup, API integration"
|
|
262
|
+
- ✏️ **Refine tickets** - "Update TKT-003 with better acceptance criteria"
|
|
263
|
+
- 🗑️ **Remove tickets** - "Delete TKT-005, we don't need that anymore"
|
|
264
|
+
- 🔍 **Check progress** - "What's done? What's in progress? Show me the summary"
|
|
265
|
+
- 🚀 **Keep working** - "Continue where we left off, here's what I want next"
|
|
266
|
+
|
|
267
|
+
**Why this works:**
|
|
268
|
+
- 🎯 **Bot understands scope** - Tickets define clear, focused work
|
|
269
|
+
- 🔍 **Full visibility** - You see exactly what the bot did in git history
|
|
270
|
+
- 🎮 **Stay in control** - Ask to pause, change direction, review anytime
|
|
271
|
+
- 📋 **Never restart** - Context lives in `.vibe/tickets/` — survives token limits
|
|
272
|
+
|
|
273
|
+
**📚 [Full Guide & Examples →](./docs/openclaw-use-case/OPENCLAW_INTEGRATION.md)** | **[TKT-018](/.vibe/tickets/TKT-018-add-openclaw-integration-documentation.md)** for details
|
|
274
|
+
|
|
275
|
+
<img src="./docs/openclaw-use-case/01-create-ticket.jpg" alt="Creating First Ticket with VibeKit" width="500" />
|
|
276
|
+
|
|
247
277
|
## ⚙️ Configuration
|
|
248
278
|
|
|
249
279
|
VibeKit creates a `.vibe` directory in your project root:
|