Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

epic-ai-swarm-orchestration史诗般的 AI 群编排

Agent Skill

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

总安装

5,328

周安装

222

GitHub Stars

公开资料未说明

下载量

1,776
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:epic-ai-swarm-orchestration(史诗般的 AI 群编排)
来源仓库:https://github.com/linkbag/epic-ai-swarm-orchestration
安装命令:
openclaw skills install epic-ai-swarm-orchestration
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install epic-ai-swarm-orchestration

简介

并行运行 Claude、Codex、Gemini 等多模型 AI 代理编排框架。

  • 适用于复杂编码任务的多模型协同与令牌限制自动回退。
  • 通过职责表选择最优模型提升任务完成率。epic-ai-swarm-orchestration 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用前需确认各模型 API 密钥与并发资源配额。
  • 建议设置超时与重试机制保障任务稳定性。

SKILL.md

name
epic-ai-swarm-orchestration
description
Production playbook for running parallel AI coding agents (Claude, Codex, Gemini) with automatic model selection via duty table, token-limit auto-fallback, human oversight, quality gates, and automated integration. Use when orchestrating multi-agent coding swarms, spawning parallel builders with review loops, managing model availability/rotation across vendors, or integrating branches from multiple AI agents. Triggers on phrases like "run the swarm", "spawn agents", "AI swarm", "multi-agent build", "duty table", "model rotation", "parallel coding agents".

Epic AI Swarm Orchestration v3.2.1

Production system for running parallel AI coding agents with dynamic model selection, automatic token-limit failover, and quality gates.

Prerequisites

Required CLIs (on PATH)

  • tmux — agent sandboxing (each agent in its own session)
  • git — worktree creation, branching, commits, push
  • gh — GitHub CLI (authenticated via gh auth login)
  • python3 — JSON manipulation (no pip packages)
  • openclaw — notification delivery (Telegram/other)

Model CLIs (at least one, authenticated)

  • claude — Anthropic CLI (OAuth or API key)
  • codex — OpenAI Codex CLI (optional)
  • gemini — Google Gemini CLI (optional)

Scripts use host-authenticated CLIs — they do not store credentials.

Quick Start

  1. Copy scripts/ to ~/workspace/swarm/
  2. Edit scripts/swarm.conf with notification target
  3. Run scripts/assess-models.sh to initialize the duty table
  4. Read references/workflow.md for the 3-phase workflow
  5. Read references/duty-table.md for model rotation system
  6. Read references/tools.md for spawn commands

v3.2.1 Bookkeeping Fix

This release fixes a critical integration-watcher bookkeeping bug: spawn-batch.sh and queue-watcher.sh now record the actual tmux session emitted by spawn-agent.sh after duty-table/fallback resolution, instead of predicting names from the requested agent. integration-watcher.sh also refuses to treat unknown/misspelled expected sessions as complete.

Architecture Overview

┌─────────────────────────────────────────────────────────┐
│                    DUTY TABLE                           │
│  assess-models.sh → duty-table.json (daily cron)       │
│  architect=claude/opus, builder=codex, reviewer=gemini  │
└───────────┬─────────────────────────────┬───────────────┘
            │                             │
    ┌───────▼───────┐           ┌─────────▼────────┐
    │ spawn-agent.sh│           │ spawn-batch.sh   │
    │ (single task) │           │ (parallel tasks)  │
    └───────┬───────┘           └────────┬─────────┘
            │  Reads role → agent/model  │
            │  from duty-table.json      │
    ┌───────▼────────────────────────────▼───────────┐
    │              RUNNER (in tmux)                    │
    │  On token limit → model-fallback.sh             │
    │  Auto-retry up to 2x with next available model  │
    │  Updates duty table for future spawns            │
    └───────┬─────────────────────────────────────────┘
            │
    ┌───────▼───────────────────────┐
    │  notify-on-complete.sh        │
    │  → auto-spawns reviewer       │
    │  → integration-watcher.sh     │
    │  → ESR + work log persistence │
    └───────────────────────────────┘

Duty Table System

The duty table (duty-table.json) maps roles to agents/models:

RolePurposeDefault Assignment
architectPlanning, designClaude Opus (best reasoning)
builderImplementationCodex or Claude Sonnet (fast)
reviewerCode review + fixesGemini Flash or Sonnet
integratorBranch mergingClaude Opus (deep thinking)

Auto-Assessment

assess-models.sh runs daily (or on-demand) to:

  1. Test all models across all 3 vendors (45s timeout each)
  2. Assign optimal 3-vendor spread to roles
  3. If both Codex + Gemini down → fallback to all-Claude table

Mid-Run Token Failover

When an agent hits a token/rate limit during execution:

  1. Runner detects the error pattern in output
  2. Calls model-fallback.sh with the role + failed model
  3. Gets the next available model from the per-role fallback chain
  4. Retries the task (up to 2 attempts)
  5. Updates duty table so future spawns use the working model
  6. Logs the switch to pending-notifications.txt

See references/duty-table.md for full details.

Core Scripts

ScriptPurpose
spawn-agent.shSpawn single agent (resolves role from duty table)
spawn-batch.shSpawn parallel agents with auto-queuing
assess-models.shTest models, update duty table
model-fallback.shFind next available model for a role
fallback-swap.shPre-spawn primary/fallback test
try-model.shQuick model health check
notify-on-complete.shWatcher: auto-review + integration
integration-watcher.shMerge all branches after batch
queue-watcher.shAuto-spawn queued overflow tasks
pulse-check.shDetect stuck agents, auto-kill
check-agents.shMonitor all active agents
endorse-task.shHuman endorsement gate
esr-log.shEngineering Status Report logging
daily-standup.shDaily status summary
cleanup.shRemove old worktrees + logs

Workflow

Phase 1: PLAN (Architect)

  • Read project context, ESR, codebase
  • Break work into parallel tasks with prompts
  • Present plan to human → HOLD until endorsed

Phase 2: BUILD + REVIEW (Builder + Reviewer)

  • spawn-batch.sh deploys agents in tmux + worktrees
  • Each agent codes autonomously with structured work log
  • notify-on-complete.sh auto-spawns reviewer (max 3 fix loops)
  • Token limits trigger automatic model switch mid-run

Phase 3: SHIP (Integrator)

  • integration-watcher.sh merges all branches sequentially
  • Conflict resolution, build verification
  • ESR + work log persisted to project history
  • Telegram notification with shipped summary

Configuration

swarm.conf:

SWARM_NOTIFY_TARGET="<telegram-user-id>"
SWARM_NOTIFY_CHANNEL="telegram"
SWARM_MAX_CONCURRENT=8

Endorsement System

Every task requires human approval before agents spawn:

endorse-task.sh <task-id>           # Single task
spawn-batch.sh ... <tasks.json>     # Batch endorsement (auto per-task)

30-second cooldown between endorsement and spawn prevents accidental double-runs.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

展示第三方安全扫描或审计结果

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

平台分布

OpenClaw

74.8%
按下载量换算1,328

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills