Interactive workflow router - guides you to the right workflow
Routes goals to appropriate workflows based on keywords and context.
/plugin marketplace add sethdford/claude-toolkit/plugin install workflows@claude-toolkit[goal]Guide the user to the appropriate workflow based on their goal.
Ask the user:
## What would you like to do?
1. **Research** - Understand codebase, docs, or patterns
→ Use `/explore`
2. **Plan** - Design an implementation approach
→ Use `/build` with planning mode
3. **Build** - Implement a feature or component
→ Use `/build`
4. **Fix** - Investigate and resolve an issue
→ Use `/fix`
5. **Review** - Review code changes
→ Use `/review`
Which area? (or describe your goal and I'll route you)
Analyze the goal and route appropriately:
| Keywords | Route To |
|---|---|
| fix, bug, broken, error, failing | /fix |
| build, create, implement, add | /build |
| understand, explore, how does, what is | /explore |
| review, check, audit | /review |
| refactor, clean up, reorganize | /refactor |
| research, find out, investigate | /explore + oracle agent |
Input: "The login is broken"
Route: /fix "login is broken"
Input: "Add a user profile page"
Route: /build "user profile page"
Input: "How does the auth system work"
Route: /explore auth
Input: "Check my changes before committing"
Route: /review
/workflowInteractive guide to the Jezweb Workflow: 5 commands for complete project lifecycle automation.