-
Notifications
You must be signed in to change notification settings - Fork 3
Advanced Workflows
JRS1986 edited this page May 6, 2026
·
5 revisions
Start simple. Add advanced workflows only after the team has validated the basics.
RouteLLM can expose one OpenAI-compatible endpoint that routes actual requests between weak/routine and strong/heavy-lift models.
coding-scaffold setup-addon --target ~/dev/my-project --addon routellm
coding-scaffold route --target ~/dev/my-project --backend routellmGenerated files:
.coding-scaffold/ROUTELLM.md.coding-scaffold/routellm.config.yaml
Use RouteLLM when endpoint-level model routing matters. For simple explainable recommendations, use
coding-scaffold select-model.
Open Multi-Agent is an optional workflow backend for repeatable TypeScript automation:
coding-scaffold setup-addon --target ~/dev/my-project --addon open-multi-agent
coding-scaffold workflow --target ~/dev/my-project --backend open-multi-agentGenerated files:
.coding-scaffold/OPEN_MULTI_AGENT.md.coding-scaffold/open-multi-agent.team.jsonexamples/open-multi-agent/team-coding-workflow.ts
Recommended adoption path:
- Validate the workflow interactively in OpenCode.
- Capture it as a skill.
- Run the generated workflow in plan-only mode.
- Review permissions, traces, and verification signals.
- Automate only after the team trusts the process.