بنقرة واحدة
swarm-coordination
Orchestrate multi-agent swarms for complex parallel task execution
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Orchestrate multi-agent swarms for complex parallel task execution
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
CLI modernization and hooks system enhancement for claude-flow v3. Implements interactive prompts, command decomposition, enhanced hooks integration, and intelligent workflow automation.
Core module implementation for claude-flow v3. Implements DDD domains, clean architecture patterns, dependency injection, and modular TypeScript codebase with comprehensive testing.
Domain-Driven Design architecture for claude-flow v3. Implements modular, bounded context architecture with clean separation of concerns and microkernel pattern.
Deep agentic-flow@alpha integration implementing ADR-001. Eliminates 10,000+ duplicate lines by building claude-flow as specialized extension rather than parallel implementation.
MCP server optimization and transport layer enhancement for claude-flow v3. Implements connection pooling, load balancing, tool registry optimization, and performance monitoring for sub-100ms response times.
Unify 6+ memory systems into AgentDB with HNSW indexing for 150x-12,500x search improvements. Implements ADR-006 (Unified Memory Service) and ADR-009 (Hybrid Memory Backend).
| name | swarm-coordination |
| description | Orchestrate multi-agent swarms for complex parallel task execution |
| version | 1.0.0 |
| invocable | true |
| author | agentic-flow |
| capabilities | ["swarm_init","agent_spawn","task_orchestration","topology_optimization"] |
Coordinate multi-agent swarms for parallel task execution with intelligent topology selection.
# Initialize a mesh swarm with 5 agents
npx agentic-flow@alpha swarm init --topology mesh --agents 5
# Spawn specialized agents
npx agentic-flow@alpha swarm spawn --type researcher --name "Research Agent"
npx agentic-flow@alpha swarm spawn --type coder --name "Code Agent"
# Orchestrate a task
npx agentic-flow@alpha swarm orchestrate "Implement feature X with tests"
# Check swarm status
npx agentic-flow@alpha swarm status
| Type | Description | Use Case |
|---|---|---|
| researcher | Deep analysis | Requirements gathering |
| coder | Implementation | Feature development |
| tester | Quality assurance | Test creation |
| reviewer | Code quality | PR review |
| architect | System design | Architecture decisions |
| coordinator | Task routing | Complex workflows |
// Initialize swarm
mcp__claude-flow__swarm_init({ topology: "mesh", maxAgents: 8 })
// Spawn agent
mcp__claude-flow__agent_spawn({ type: "coder", name: "Feature Dev" })
// Orchestrate task
mcp__claude-flow__task_orchestrate({
task: "Implement OAuth",
strategy: "parallel"
})