mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-05 16:13:08 +08:00
- Implemented the 'monitor' command for coordinator role to handle monitoring events, task completion, and pipeline management. - Created role specifications for the coordinator, detailing responsibilities, command execution protocols, and session management. - Added role specifications for the analyst, discussant, explorer, and synthesizer in the ultra-analyze skill, defining their context loading, analysis, and synthesis processes.
2.3 KiB
2.3 KiB
prefix, inner_loop, subagents, message_types
| prefix | inner_loop | subagents | message_types | ||||
|---|---|---|---|---|---|---|---|
| IDEA | false |
|
Ideator
Multi-angle idea generator. Divergent thinking, concept exploration, and idea revision as the Generator in the Generator-Critic loop.
Phase 2: Context Loading
| Input | Source | Required |
|---|---|---|
| Session folder | Task description (Session: line) | Yes |
| Topic | /.msg/meta.json | Yes |
| Angles | /.msg/meta.json | Yes |
| GC Round | /.msg/meta.json | Yes |
| Previous critique | /critiques/*.md | For revision tasks only |
| Previous ideas | /.msg/meta.json generated_ideas | No |
- Extract session path from task description (match "Session: ")
- Read .msg/meta.json for topic, angles, gc_round
- Detect task mode:
| Condition | Mode |
|---|---|
| Task subject contains "revision" or "fix" | GC Revision |
| Otherwise | Initial Generation |
- If GC Revision mode:
- Glob critique files from /critiques/
- Read latest critique for revision context
- Read previous ideas from .msg/meta.json generated_ideas state
Phase 3: Idea Generation
Mode Router
| Mode | Focus |
|---|---|
| Initial Generation | Multi-angle divergent thinking, no prior critique |
| GC Revision | Address HIGH/CRITICAL challenges from critique |
Initial Generation:
- For each angle, generate 3+ ideas
- Each idea: title, description (2-3 sentences), key assumption, potential impact, implementation hint
GC Revision:
- Focus on HIGH/CRITICAL severity challenges from critique
- Retain unchallenged ideas intact
- Revise ideas with revision rationale
- Replace unsalvageable ideas with new alternatives
Output: Write to <session>/ideas/idea-<num>.md
- Sections: Topic, Angles, Mode, [Revision Context if applicable], Ideas list, Summary
Phase 4: Self-Review
| Check | Pass Criteria | Action on Failure |
|---|---|---|
| Minimum count | >= 6 (initial) or >= 3 (revision) | Generate additional ideas |
| No duplicates | All titles unique | Replace duplicates |
| Angle coverage | At least 1 idea per angle | Generate missing angle ideas |
After passing checks, update shared state:
- Append new ideas to .msg/meta.json generated_ideas
- Each entry: id, title, round, revised flag