claude-orchestration 1.0.3 → 1.0.4
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/package.json
CHANGED
|
@@ -25,6 +25,7 @@ If React indicators are present → use `workflows/react/` directory
|
|
|
25
25
|
| `review.md` | Reviewing code for merge |
|
|
26
26
|
| `pr.md` | Generating PR title and description |
|
|
27
27
|
| `docs.md` | Writing or updating documentation |
|
|
28
|
+
| `todo.md` | Creating and managing TODO lists for complex tasks |
|
|
28
29
|
|
|
29
30
|
**Workflow Path:**
|
|
30
31
|
- React projects: `workflows/react/{workflow}.md`
|
|
@@ -36,4 +37,5 @@ If React indicators are present → use `workflows/react/` directory
|
|
|
36
37
|
- Skip workflows for trivial tasks (typos, simple renames, one-line fixes)
|
|
37
38
|
- Workflows are process guidance, not rigid scripts
|
|
38
39
|
- Read the workflow file before starting, adapt steps as needed
|
|
40
|
+
- Use `todo.md` workflow for any task requiring 3+ distinct steps
|
|
39
41
|
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# TODO Workflow
|
|
2
|
+
|
|
3
|
+
> Use for tasks with 3+ steps requiring tracking
|
|
4
|
+
|
|
5
|
+
## Process
|
|
6
|
+
|
|
7
|
+
1. **Analyze**: Read codebase, identify steps, estimate complexity
|
|
8
|
+
2. **Create**: One actionable TODO per distinct step, prioritize by dependencies
|
|
9
|
+
3. **Execute**: ONE item `in_progress` at a time, update status immediately
|
|
10
|
+
4. **Manage**: Add/cancel items as needed, break down complex items
|
|
11
|
+
|
|
12
|
+
## Rules
|
|
13
|
+
|
|
14
|
+
- Use only for complex tasks (3+ steps)
|
|
15
|
+
- Single `in_progress` item maximum
|
|
16
|
+
- Real-time status updates
|
|
17
|
+
- Brief, actionable descriptions
|
|
18
|
+
- Complete current before starting next
|
|
19
|
+
- Save TODO files in project root as `{sensibleName}_TODO.md`
|