🦀 ClawHub
Task Decomposition
by @mzfshark
Break complex tasks into executable, dependency-aware steps.
⚡ When to Use
💡 Examples
Input:
raw_task_description: “Add a CLI command to export reports.â€constraints: ["No breaking changes", "Must include tests"]Output (excerpt):
summary: "Add report export command and tests"
open_questions:
- "What output formats are required (json/csv/pdf)?"
steps:
- id: 1
action: "Locate existing CLI entrypoints and command router"
targets: ["src/cli/*"]
risk: low
validation: "CLI help shows existing commands unchanged"
done_when: "Command dispatch mechanism is identified"
🔒 Constraints
TERMINAL
clawhub install axodus-task-decomposition