@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 CHANGED
@@ -54,14 +54,17 @@ vibeflow kanban # open the Kanban board
54
54
 
55
55
  ### 3. Hand to your agent
56
56
 
57
- Paste the task output into GitHub Copilot, Claude, Cursor, or any AI tool. The agent receives the CSS selector, source file, line number, and your noteno manual explanation needed.
57
+ Give your AI agent one prompt. It claims the next task, implements it, and marks it for reviewall through the CLI.
58
58
 
59
59
  ```bash
60
- vibeflow tasks --status todo
60
+ vibeflow tasks --next
61
61
  ```
62
62
 
63
63
  > **The magic prompt for your agent:**
64
- > *"Get new tasks from `vibeflow tasks --status todo` and implement them."*
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 "..."` | Update a task status and add an implementation report |
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 --status todo
118
+ # Tell your agent to implement all open tasks (--next workflow)
119
+ npx vibeflow tasks --next
116
120
  ```
117
121
 
118
122
  ---