agent-orchestration
SolidAgent Orchestration Rules
AI & Automation 519 stars
44 forks Updated 1 weeks ago MIT
Install
Quality Score: 88/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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:
- "impleme...
Details
- Author
- vibeeval
- Repository
- vibeeval/vibecosystem
- Created
- 4 months ago
- Last Updated
- 1 weeks ago
- Language
- C#
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
agent-orchestration
Agent orchestration patterns for agentic loops, multi-agent coordination, alternative frameworks, and multi-scenario workflows. Use when building autonomous agent loops, coordinating multiple agents, evaluating CrewAI/AutoGen/Swarm, or orchestrating complex multi-step scenarios.
208 Updated today
yonatangross AI & Automation Solid
orchestrate
Wire Commands, Agents, and Skills together for complex features. Use when building features that need research, planning, and implementation phases.
2,653 Updated today
rohitg00 AI & Automation Listed
orchestrate
Use when multiple independent tasks need coordinated delegation across agents with progress tracking. "orchestrate", "오케스트레이션", "위임 모드", "에이전트 조율", "작업 분배", "병렬 위임", "멀티 에이전트" 요청 시 사용.
1 Updated 2 days ago
SONGYEONGSIN