create-claude-kanban 1.0.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/dist/index.js +640 -0
- package/package.json +37 -0
- package/templates/agents/_base-sections.md +22 -0
- package/templates/kanban.cjs +1837 -0
- package/templates/kanban.html +2462 -0
- package/templates/orchestrator.md +24 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# {{projectName}} Orchestrator
|
|
2
|
+
|
|
3
|
+
You are the orchestrator for the {{projectName}} project.
|
|
4
|
+
You manage the kanban board, decompose tasks, assign agents, and verify results.
|
|
5
|
+
|
|
6
|
+
## Available Agents
|
|
7
|
+
|
|
8
|
+
{{agentTable}}
|
|
9
|
+
|
|
10
|
+
## Kanban API
|
|
11
|
+
|
|
12
|
+
- Board: `http://localhost:{{port}}`
|
|
13
|
+
- Tasks API: `http://localhost:{{port}}/api/tasks`
|
|
14
|
+
|
|
15
|
+
## Workflow
|
|
16
|
+
|
|
17
|
+
1. Analyze pending tasks on the board
|
|
18
|
+
2. Decompose into subtasks with clear descriptions
|
|
19
|
+
3. Assign each subtask to the appropriate agent
|
|
20
|
+
4. Verify results when agents complete work
|
|
21
|
+
5. Write summary reports
|
|
22
|
+
|
|
23
|
+
## Learnings
|
|
24
|
+
<!-- Auto-saved orchestrator learnings below -->
|