원클릭으로
orchestrator-agent
Advanced orchestration agent for managing subagents, commands, MCP servers, and skills with parallel execution capabilities
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Advanced orchestration agent for managing subagents, commands, MCP servers, and skills with parallel execution capabilities
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Comprehensive research specialist for market intelligence, company analysis, and competitive research. Use when you need in-depth research on companies, markets, tools, or business opportunities. Provides structured reports with source verification, multi-source analysis, and actionable insights. (project, gitignored)
A sophisticated multi-layered prompt engineering system with analysis, optimization, customization, and validation engines for creating high-quality, domain-specific prompts
Comprehensive skill for creating, managing, and maintaining Claude Code Marketplaces including plugin development, validation, deployment, and lifecycle management
Comprehensive Claude Code plugin development expert providing guidance for creation, maintenance, installation, configuration, and troubleshooting of plugins and skills
| name | orchestrator-agent |
| description | Advanced orchestration agent for managing subagents, commands, MCP servers, and skills with parallel execution capabilities |
The Orchestrator Agent is an advanced coordination system for managing Claude Code agents, commands, MCP servers, and skills. It provides intelligent task planning, parallel execution optimization, and resource management capabilities.
Use this agent when you need to:
import OrchestratorAgent from './index';
const orchestrator = new OrchestratorAgent({
maxParallelAgents: 5,
skillMatchingThreshold: 0.8,
});
await orchestrator.initialize();
// Create task plan
const taskId = await orchestrator.createTaskPlan('Code review project', {
requiredSkills: ['code-review', 'security-analysis'],
priority: 1,
parallelExecution: true,
});
// Execute task
await orchestrator.executeTask(taskId);
// Discover available agents
const agents = orchestrator.getAvailableAgents();
// Plan complex workflow
const workflowId = await orchestrator.planWorkflow({
name: 'Feature development pipeline',
steps: [
{ name: 'requirements-analysis', agents: ['general-purpose'] },
{ name: 'architecture-design', agents: ['feature-dev:code-architect'] },
{ name: 'implementation', agents: ['general-purpose'], parallel: true },
{ name: 'testing', agents: ['general-purpose'], parallel: true },
{ name: 'documentation', agents: ['pr-review-toolkit:comment-analyzer'] },
],
dependencies: {
'architecture-design': ['requirements-analysis'],
implementation: ['architecture-design'],
testing: ['implementation'],
documentation: ['testing'],
},
});
// Execute workflow
await orchestrator.executeWorkflow(workflowId);
// Optimize resource allocation
const optimization = await orchestrator.optimizeResources();
console.log('Optimizations applied:', optimization.optimizations);
console.log('Recommendations:', optimization.recommendations);
// Monitor performance
const status = orchestrator.getSystemStatus();
console.log('Active tasks:', status.activeTasks.length);
console.log(
'Agent utilization:',
status.agents.filter((a) => a.status === 'busy').length
);
const orchestrator = new OrchestratorAgent({
maxParallelAgents: 10,
taskTimeout: 300000,
retryAttempts: 3,
skillMatchingThreshold: 0.7,
resourceAllocation: 'dynamic',
});
const orchestrator = new OrchestratorAgent({
maxParallelAgents: 15,
taskTimeout: 600000,
retryAttempts: 5,
skillMatchingThreshold: 0.8,
resourceAllocation: 'performance',
discoveryInterval: 60000,
optimizationStrategy: 'aggressive',
monitoring: {
enableMetrics: true,
enableLogging: true,
logLevel: 'info',
},
});
The orchestrator includes a dynamic discovery system that:
The orchestrator works seamlessly with marketplace plugins:
Enable detailed logging for troubleshooting:
const orchestrator = new OrchestratorAgent({
monitoring: {
enableLogging: true,
logLevel: 'debug',
},
});
Use built-in monitoring tools:
// Get system status
const status = orchestrator.getSystemStatus();
// Get discovery status
const discoveryStatus = orchestrator.getDiscoveryStatus();
// Get performance metrics
const metrics = orchestrator.getPerformanceMetrics();
This orchestrator agent provides comprehensive coordination and optimization capabilities for complex multi-agent workflows in Claude Code.