@vibeflow-tools/cli 0.2.0 → 0.4.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 +10 -6
- package/dist/cli/index.js +46 -37
- package/dist/client/kanban-browser.js +8 -8
- package/dist/client/overlay-browser.js +1 -1
- package/dist/index.js +46 -37
- package/package.json +1 -4
package/README.md
CHANGED
|
@@ -54,14 +54,17 @@ vibeflow kanban # open the Kanban board
|
|
|
54
54
|
|
|
55
55
|
### 3. Hand to your agent
|
|
56
56
|
|
|
57
|
-
|
|
57
|
+
Give your AI agent one prompt. It claims the next task, implements it, and marks it for review — all through the CLI.
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
vibeflow tasks --
|
|
60
|
+
vibeflow tasks --next
|
|
61
61
|
```
|
|
62
62
|
|
|
63
63
|
> **The magic prompt for your agent:**
|
|
64
|
-
> *"Get new tasks
|
|
64
|
+
> *"Get new tasks and implement them, once done check again for new ones:*
|
|
65
|
+
> *`npx @vibeflow-tools/cli tasks --next`"*
|
|
66
|
+
|
|
67
|
+
`--next` atomically claims the highest-priority todo task (sets it in-progress), preventing two agents from picking the same task. Run it again after completing each task to get the next one.
|
|
65
68
|
|
|
66
69
|
---
|
|
67
70
|
|
|
@@ -79,11 +82,12 @@ vibeflow tasks --status todo
|
|
|
79
82
|
| Command | Description |
|
|
80
83
|
|---------|-------------|
|
|
81
84
|
| `vibeflow tasks` | List all tasks |
|
|
85
|
+
| `vibeflow tasks --next` | Claim the next todo task (sets in-progress, returns full task details) |
|
|
82
86
|
| `vibeflow tasks --status todo` | Filter to open tasks |
|
|
83
87
|
| `vibeflow tasks --type Bug` | Filter by type (Task, Bug, Feature, Enhancement, Research) |
|
|
84
88
|
| `vibeflow tasks --get <id>` | Full task detail with comments, file attachments, and linked commits |
|
|
85
89
|
| `vibeflow tasks --add --title "..." --description "..."` | Create a new task |
|
|
86
|
-
| `vibeflow tasks --edit <id> --set-status review --comment "..."` |
|
|
90
|
+
| `vibeflow tasks --edit <id> --set-status review --commit-message "..." --comment "..."` | Mark task as review, auto-commit staged files, add report |
|
|
87
91
|
| `vibeflow tasks --json` | Machine-readable JSON output |
|
|
88
92
|
|
|
89
93
|
**Task statuses:** backlog → todo → in-progress → review → done
|
|
@@ -111,8 +115,8 @@ vibeflow tasks --status todo
|
|
|
111
115
|
# Open the Kanban board
|
|
112
116
|
npx vibeflow kanban
|
|
113
117
|
|
|
114
|
-
# Tell your agent to implement open tasks
|
|
115
|
-
npx vibeflow tasks --
|
|
118
|
+
# Tell your agent to implement all open tasks (--next workflow)
|
|
119
|
+
npx vibeflow tasks --next
|
|
116
120
|
```
|
|
117
121
|
|
|
118
122
|
---
|