Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计未展示

cloud-swarm云群

Agent Skill

cloud-swarm 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

436

周安装

18

GitHub Stars

公开资料未说明

下载量

143
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cloud-swarm(云群)
来源仓库:https://github.com/vamseeachanta/workspace-hub
仓库路径:skills/cloud-swarm
安装命令:
npx skills add vamseeachanta/workspace-hub --skill "cloud-swarm"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add vamseeachanta/workspace-hub --skill "cloud-swarm"

简介

云群技能协调多个轻量级 Agent 并行处理分布式计算任务。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中大规模数据处理或并发实验。
  • 自动负载均衡与容错重试,提升整体吞吐量。
  • 安装命令:npx skills add vamseeachanta/workspace-hub --skill "cloud-swarm"。
  • 节点通信依赖稳定网络,高延迟环境下性能可能下降。

SKILL.md

Cloud Swarm Orchestration

Deploy, coordinate, and scale multi-agent swarms in Flow Nexus cloud for complex task execution.

Quick Start

// Initialize a swarm with mesh topology
mcp__flow-nexus__swarm_init({
  topology: "mesh",
  maxAgents: 8,
  strategy: "balanced"
})

// Deploy specialized agents
mcp__flow-nexus__agent_spawn({ type: "researcher", name: "Lead Researcher" })
mcp__flow-nexus__agent_spawn({ type: "coder", name: "Implementation Expert" })

// Orchestrate a complex task
mcp__flow-nexus__task_orchestrate({
  task: "Build authentication API with JWT tokens",
  strategy: "parallel",
  priority: "high"
})

When to Use

  • Deploying multi-agent systems for complex problem-solving
  • Orchestrating parallel task execution across specialized agents
  • Scaling AI workloads dynamically based on requirements
  • Coordinating distributed workflows with agent collaboration
  • Setting up hierarchical or mesh-based agent coordination

Prerequisites

  • Flow Nexus account with active session
  • MCP server flow-nexus configured: claude mcp add flow-nexus npx flow-nexus@latest mcp start
  • Sufficient rUv credits for agent deployment

Core Concepts

Swarm Topologies

TopologyDescriptionBest For
HierarchicalQueen-led coordination with central controlComplex projects requiring oversight
MeshPeer-to-peer distributed networkCollaborative problem-solving
RingCircular coordination patternSequential processing workflows
StarCentralized hub-and-spokeSingle-objective focused tasks

Agent Types

TypeSpecialization
researcherInformation gathering and analysis
coderImplementation and development
analystData processing and pattern recognition
optimizerPerformance tuning and efficiency
coordinatorWorkflow management and orchestration

Distribution Strategies

  • balanced: Even distribution across agent capabilities
  • specialized: Focus on specific agent types for task needs
  • adaptive: Dynamic adjustment based on workload

MCP Tools Reference

Swarm Initialization

mcp__flow-nexus__swarm_init({
  topology: "hierarchical",  // mesh, ring, star, hierarchical
  maxAgents: 8,              // Maximum agents in swarm (1-100)
  strategy: "balanced"       // balanced, specialized, adaptive
})
// Returns: { swarm_id, topology, status, agents: [] }

Agent Deployment

mcp__flow-nexus__agent_spawn({
  type: "researcher",        // researcher, coder, analyst, optimizer, coordinator
  name: "Agent Name",        // Custom identifier
  capabilities: ["web_search", "analysis", "summarization"]
})
// Returns: { agent_id, type, name, status, capabilities }

Task Orchestration

mcp__flow-nexus__task_orchestrate({
  task: "Task description",  // What to accomplish
  strategy: "parallel",      // parallel, sequential, adaptive
  maxAgents: 5,              // Agents to assign (1-10)
  priority: "high"           // low, medium, high, critical
})
// Returns: { task_id, status, assigned_agents, strategy }

Swarm Management

// Check swarm status
mcp__flow-nexus__swarm_status({ swarm_id: "optional" })

// List all swarms
mcp__flow-nexus__swarm_list({ status: "active" })  // active, destroyed, all

// Scale swarm
mcp__flow-nexus__swarm_scale({ target_agents: 10 })

// Destroy swarm
mcp__flow-nexus__swarm_destroy({ swarm_id: "id" })

Template-Based Creation

// List available templates
mcp__flow-nexus__swarm_templates_list({
  category: "quickstart",    // quickstart, specialized, enterprise, custom, all
  includeStore: true
})

// Create from template
mcp__flow-nexus__swarm_create_from_template({
  template_id: "template_id",
  overrides: { maxAgents: 10, strategy: "adaptive" }
})

Usage Examples

Example 1: Research and Development Swarm

// Step 1: Initialize hierarchical swarm for R&D
const swarm = await mcp__flow-nexus__swarm_init({
  topology: "hierarchical",
  maxAgents: 6,
  strategy: "specialized"
});

// Step 2: Deploy specialized agents
await mcp__flow-nexus__agent_spawn({
  type: "researcher",
  name: "Market Researcher",
  capabilities: ["web_search", "trend_analysis"]
});

await mcp__flow-nexus__agent_spawn({
  type: "analyst",
  name: "Data Analyst",
  capabilities: ["data_processing", "visualization"]
});

await mcp__flow-nexus__agent_spawn({
  type: "coder",
  name: "Prototype Developer",
  capabilities: ["rapid_prototyping", "api_development"]
});

// Step 3: Orchestrate research task
await mcp__flow-nexus__task_orchestrate({
  task: "Research competitor authentication solutions and prototype an improved version",
  strategy: "sequential",
  maxAgents: 3,
  priority: "high"
});

// Step 4: Monitor progress
const status = await mcp__flow-nexus__swarm_status();
console.log(`Active agents: ${status.agents.length}, Tasks: ${status.active_tasks}`);

Example 2: Parallel Processing with Mesh Topology

// Initialize mesh for collaborative processing
await mcp__flow-nexus__swarm_init({
  topology: "mesh",
  maxAgents: 8,
  strategy: "balanced"
});

// Deploy multiple coders for parallel work
for (const module of ["auth", "api", "database", "frontend"]) {
  await mcp__flow-nexus__agent_spawn({
    type: "coder",
    name: `${module}-developer`,
    capabilities: ["implementation", "testing"]
  });
}

// Orchestrate parallel development
await mcp__flow-nexus__task_orchestrate({
  task: "Build microservices architecture with 4 independent modules",
  strategy: "parallel",
  maxAgents: 4,
  priority: "critical"
});

// Scale up if needed
await mcp__flow-nexus__swarm_scale({ target_agents: 12 });

Example 3: Using Templates

// List available templates
const templates = await mcp__flow-nexus__swarm_templates_list({
  category: "enterprise",
  includeStore: true
});

// Deploy from template
await mcp__flow-nexus__swarm_create_from_template({
  template_name: "full-stack-development",
  overrides: {
    maxAgents: 10,
    strategy: "adaptive"
  }
});

Execution Checklist

  • Verify Flow Nexus authentication status
  • Choose appropriate topology for task requirements
  • Initialize swarm with correct parameters
  • Deploy agents with relevant capabilities
  • Orchestrate tasks with suitable strategy
  • Monitor swarm performance and agent utilization
  • Scale swarm based on workload
  • Clean up: destroy swarm when complete

Best Practices

  1. Topology Selection: Choose hierarchical for complex projects, mesh for collaboration, ring for sequential workflows
  2. Agent Specialization: Deploy agents with capabilities matching task requirements
  3. Resource Efficiency: Start with fewer agents and scale up as needed
  4. Task Decomposition: Break complex objectives into manageable sub-tasks
  5. Monitoring: Regularly check swarm status and agent utilization
  6. Cleanup: Always destroy swarms when work is complete to free resources

Error Handling

ErrorCauseSolution
swarm_init_failedInvalid topology or max agentsVerify topology is valid, agents between 1-100
agent_spawn_failedInvalid type or swarm not activeCheck agent type, ensure swarm is initialized
insufficient_creditsLow rUv balanceAdd credits via payment tools
swarm_not_foundInvalid swarm_idUse swarm_list to get valid IDs

Metrics & Success Criteria

  • Agent Utilization: Target >80% utilization during active tasks
  • Task Completion: All orchestrated tasks complete successfully
  • Response Time: Swarm initialization <5 seconds
  • Scaling Efficiency: Scale operations complete <10 seconds

Integration Points

With Workflows

// Create workflow that uses swarm
await mcp__flow-nexus__workflow_create({
  name: "Swarm-Powered Pipeline",
  steps: [
    { id: "init", action: "swarm_init", config: { topology: "mesh" } },
    { id: "deploy", action: "agent_spawn", depends: ["init"] },
    { id: "execute", action: "task_orchestrate", depends: ["deploy"] }
  ]
});

With Sandboxes

// Deploy agents with sandbox execution capabilities
await mcp__flow-nexus__agent_spawn({
  type: "coder",
  name: "Sandbox Developer",
  capabilities: ["sandbox_execution", "code_testing"]
});

Related Skills

References

Version History

  • 1.0.0 (2026-01-02): Initial release - converted from flow-nexus-swarm agent

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

31.47%
按下载量换算45

windsurf

21.23%
按下载量换算30

trae

16.59%
按下载量换算24

OpenCode

12.88%
按下载量换算18

Cursor

8.51%
按下载量换算12

Codex

3.59%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills