🎯

agent-orchestration

🎯Skill

from parcadei/continuous-claude-v3

VibeIndex|
What it does

Orchestrates complex multi-file implementation tasks by spawning specialized agents that preserve main context and handle intricate development workflows.

agent-orchestration

Installation

Install skill:
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill agent-orchestration
3,415
Last UpdatedJan 26, 2026

Skill Details

SKILL.md

Agent Orchestration Rules

Overview

# Agent Orchestration Rules

When the user asks to implement something, use implementation agents to preserve main context.

The Pattern

Wrong - burns context:

```

Main: Read files β†’ Understand β†’ Make edits β†’ Report

(2000+ tokens consumed in main context)

```

Right - preserves context:

```

Main: Spawn agent("implement X per plan")

↓

Agent: Reads files β†’ Understands β†’ Edits β†’ Tests

↓

Main: Gets summary (~200 tokens)

```

When to Use Agents

| Task Type | Use Agent? | Reason |

|-----------|------------|--------|

| Multi-file implementation | Yes | Agent handles complexity internally |

| Following a plan phase | Yes | Agent reads plan, implements |

| New feature with tests | Yes | Agent can run tests |

| Single-line fix | No | Faster to do directly |

| Quick config change | No | Overhead not worth it |

Key Insight

Agents read their own context. Don't read files in main chat just to understand what to pass to an agent - give them the task and they figure it out.

Example Prompt

```

Implement Phase 4: Outcome Marking Hook from the Artifact Index plan.

Plan location: thoughts/shared/plans/2025-12-24-artifact-index.md (search for "Phase 4")

What to create:

  1. TypeScript hook
  2. Shell wrapper
  3. Python script
  4. Register in settings.json

When done, provide a summary of files created and any issues.

```

Trigger Words

When user says these, consider using an agent:

  • "implement", "build", "create feature"
  • "follow the plan", "do phase X"
  • "use implementation agents"

More from this repository10

🎯
agentica-claude-proxy🎯Skill

Enables seamless integration between Agentica agents and Claude Code CLI by managing proxy configurations, tool permissions, and response formatting.

🎯
git-commits🎯Skill

Manages git commits by removing Claude attribution, generating reasoning documentation, and ensuring clean commit workflows.

🎯
debug-hooks🎯Skill

Systematically diagnose and resolve hook registration, execution, and output issues in Claude Code projects by checking cache, settings, files, and manual testing.

🎯
migrate🎯Skill

Systematically researches, analyzes, plans, implements, and reviews migrations across frameworks, languages, and infrastructure with minimal risk.

🎯
background-agent-pings🎯Skill

Enables background agent execution with system-triggered progress notifications, avoiding manual polling and context flooding.

🎯
agentica-infrastructure🎯Skill

Provides comprehensive reference and infrastructure for building sophisticated multi-agent coordination patterns and workflows with precise API specifications and tracking mechanisms.

🎯
system-overview🎯Skill

Generates a comprehensive summary of the current system's configuration, components, and key metrics across skills, agents, hooks, and other core systems.

🎯
cli-reference🎯Skill

Provides comprehensive CLI commands and flags for interacting with Claude Code, enabling headless mode, automation, and session management.

🎯
braintrust-tracing🎯Skill

Traces and correlates Claude Code session events across parent and sub-agent interactions using comprehensive Braintrust instrumentation.

🎯
morph-apply🎯Skill

Rapidly edits files using AI-powered Morph Apply API with high accuracy and speed, without requiring full file context.