packages/forge/src/skills/soleri-orchestrate/SKILL.md
Triggers: "implement X", "build Y", "fix Z", "add feature", or any work task needing planning + execution. Full orchestration loop: plan, execute, complete with vault context and brain recs.
npx skillsauth add adrozdenko/soleri soleri-orchestrateInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Run the full work loop with vault intelligence: plan the task, execute it step by step, and close with knowledge capture. Use this for any non-trivial task where missing context or skipping steps would cost time.
If Step 2 fans out to subagents, pick the model per subagent — don't use one size for the whole loop:
haikusonnetopusFallback flows downward only (Opus→Sonnet with warning; Sonnet→Haiku only if task is clearly simple). Never silently escalate upward. Explicit user pin always overrides the rubric.
Before every Agent call, state one line:
Dispatching <description> on <model> (tier=<simple|standard|complex>, reason=<pattern match>).
Full rubric and examples live in the soleri-subagent-driven-development skill (canonical source) and soleri-parallel-execute skill.
YOUR_AGENT_orchestrate op:orchestrate_plan
params: {
prompt: "<user task description>",
context: { domain: "<inferred domain>" }
}
Present the plan to the user. If grade < A-, ask for approval before proceeding.
Once approved, begin execution. For each task in the plan:
YOUR_AGENT_orchestrate op:orchestrate_execute
params: {
planId: "<planId from step 1>",
taskId: "<current task id>",
output: "<what you did>"
}
Log progress after each task: show completed count / total and current task title.
After all tasks are done:
YOUR_AGENT_orchestrate op:orchestrate_complete
params: {
planId: "<planId>",
summary: "<one-line outcome>",
operatorSignals: {
qualityNotes: "<any quality observations>",
unexpectedComplexity: <true|false>
}
}
Report the completion summary and any knowledge captured.
All plan tasks executed, orchestrate_complete called with outcome, knowledge persisted to vault.
testing
Triggers: "terse mode", "be brief", "less tokens", "fewer tokens", "compress output", "caveman", or invokes /terse. Token-efficient responses with full technical accuracy.
tools
Triggers: "compress this file", "compress CLAUDE.md", "compress memory", "shrink this", "reduce tokens in file", or invokes /compress. Compresses natural language files to save input tokens.
testing
Triggers: "release", "bump version", "publish packages", "cut a release", "version bump", "npm publish". Bumps monorepo versions, commits, tags, pushes to trigger CI release. Use deliver-and-ship for quality gates.
tools
Triggers: "start a loop", "run until done", "iterate until X", "loop status", "cancel loop". Iterative execution until condition met or grade threshold reached.