claude-queue 1.1.0 → 1.2.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.
@@ -42,34 +42,20 @@ Check the arguments passed to this skill:
42
42
  When invoked with `/queue plan <project-id>`:
43
43
 
44
44
  1. **Connect**: Call `queue_watch` with the project ID
45
- 2. **Ask for input**: Ask the user "What would you like to plan?"
46
- 3. **Generate tasks**: Based on the description, propose a breakdown:
47
- - List each task with a title and brief description
48
- - Keep tasks focused and actionable
49
- - Order them logically (dependencies first if relevant)
50
- 4. **Refine**: Ask if they want to adjust anything
51
- 5. **Confirm destination**: Ask "Add to ready (default) or backlog?"
52
- 6. **Create tasks**: Call `queue_create_task` for each task with the chosen status
53
- 7. **Done**: Summarize what was created (count and column)
54
-
55
- ### Example Planning Flow
56
-
57
- ```
58
- User: /queue plan kbn-a3x9
59
- Claude: What would you like to plan?
60
- User: User authentication with email/password
61
- Claude: Here's my proposed breakdown:
62
-
63
- 1. **Create auth database schema** - users table with email, password_hash, created_at
64
- 2. **Implement registration endpoint** - POST /auth/register with validation
65
- 3. **Implement login endpoint** - POST /auth/login returning JWT
66
- 4. **Add auth middleware** - Verify JWT on protected routes
67
- 5. **Create React auth context** - Login state and token management
68
-
69
- Want me to adjust anything? If not, should I add these to ready (default) or backlog?
70
- User: Looks good, add to ready
71
- Claude: ✓ Created 5 tasks in ready column for kbn-a3x9
72
- ```
45
+ 2. **Check for existing context**: Read the project's CLAUDE.md file if it exists (at the project path)
46
+ 3. **Start discovery**: Ask the user what they're planning to work on
47
+ 4. **Iterative refinement**: Use the AskUserQuestion tool to ask clarifying questions. Keep asking until you have a clear understanding of:
48
+ - What they want to accomplish
49
+ - The scope and constraints
50
+ - What success looks like
51
+ - Any preferences or requirements
52
+ 5. **Propose the plan**: Present a comprehensive plan document capturing everything discussed. Ask if it captures their intent correctly.
53
+ 6. **Refine until approved**: If the user wants changes, refine the plan. Repeat until they're happy.
54
+ 7. **Create/update CLAUDE.md**: Once approved, write the plan to CLAUDE.md in the project directory. This provides context for all future sessions.
55
+ 8. **Break into tasks**: Derive task titles and detailed descriptions from the plan
56
+ 9. **Ready to start?**: Ask "Ready to start? (or should I just add these to backlog for later?)"
57
+ - If user wants to start: Create tasks in "ready", then proceed to **Work Mode** and begin the main loop
58
+ - If user wants backlog: Create tasks in "backlog", inform them they can start later by running `/queue <project-id>`
73
59
 
74
60
  ---
75
61
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-queue",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "A local kanban board for managing Claude Code projects",
5
5
  "type": "module",
6
6
  "bin": {