← ClaudeAtlas

orchestrator-directives-skilllisted

wipnote orchestration patterns for AI-assisted development. Use when working on code in an wipnote project — provides delegation patterns, model selection, quality gates, and work tracking guidance. Activate when planning work, delegating to agents, debugging, building features, or managing tasks.
shakestzd/wipnote · ★ 3 · AI & Automation · score 75
Install: claude install-skill shakestzd/wipnote
# Orchestrator Directives Skill Use this skill for delegation patterns and decision frameworks in orchestrator mode. **Trigger keywords:** orchestrator, delegation, subagent, task coordination, parallel execution, cost-first, spawner --- ## Quick Start - What is Orchestration? Delegate tactical work to specialized subagents while you focus on strategic decisions. Save Claude Code context (expensive) by using FREE/CHEAP AIs for appropriate tasks. **Basic pattern:** ```python Task( subagent_type="gemini", # FREE - use for exploration description="Find auth patterns", prompt="Search codebase for authentication patterns..." ) ``` **When to use:** ALWAYS use for complex tasks requiring research, code generation, git operations, or any work that could fail and require retries. **For complete guidance:** See sections below or run `/multi-ai-orchestration` for model selection details. --- ## Batching wipnote CLI Calls (IMPERATIVE) Each Bash tool call spends one agent turn from the user's quota. **Chain wipnote bookkeeping commands with `&&` into a single Bash invocation whenever possible.** wipnote exists to reduce agent overhead — do not add it back by issuing one Bash call per `wipnote link add`. **Do this (1 tool call):** ```bash wipnote bug create "A" --track trk-xxx --description "..." && \ wipnote bug create "B" --track trk-xxx --description "..." && \ wipnote link add feat-aaa feat-bbb --rel blocks && \ wipnote link add feat-ccc feat-ddd --rel relates_