Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

caid-multi-agentcaid 多 Agent

Agent Skill

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

总安装

3,058

周安装

130

GitHub Stars

公开资料未说明

下载量

1,071
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install caid-multi-agent

简介

caid-multi-agent 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 基于 CAID 框架协调多个子代理协同完成长期软件工程任务。
  • 适用于复杂系统开发中的任务分解与异步协作管理。
  • 安装命令为 openclaw skills install caid-multi-agent,需确认通信协议与资源分配机制。
  • 使用时可能涉及高并发调度,应评估其对宿主性能的影响。

SKILL.md

name
caid-multi-agent
description
Coordinate multiple sub-agents to collaboratively complete long-horizon software engineering tasks using the CAID (Centralized Asynchronous Isolated Delegation) paradigm. Use when tasks require complex multi-file edits, interdependent subtasks, parallelizable work, or when a single agent would take too long. This skill implements branch-and-merge coordination with git worktree isolation, dependency-aware task delegation, and structured integration. CRITICAL: Never use CAID as a fallback after single-agent failure; use from the outset. Max 2-4 engineers (8 absolute max). Physical git worktree isolation is mandatory; soft isolation degrades performance.

CAID Multi-Agent Coordination

This skill implements the Centralized Asynchronous Isolated Delegation (CAID) paradigm for coordinating multiple agents working on shared artifacts.

⚠️ CRITICAL WARNINGS FROM PAPER: - Use CAID from the outset — Don't run single-agent first as fallback. Sequential strategy costs nearly 2x with minimal gain. - Physical worktree isolation is mandatory — Soft isolation (instruction-only) degrades performance on complex tasks. - Engineer limits are strict — 2 for PaperBench-style, 4 for Commit0-style, never exceed 8. - Higher cost/runtime trade-off — CAID improves accuracy, not speed. Integration is sequential/test-gated.

Core Principles

  1. Centralized Task Delegation — A manager agent decomposes tasks into dependency-aware units
  2. Asynchronous Execution — Multiple engineer agents work concurrently
  3. Isolated Workspaces — Each agent works in its own isolated branch/worktree
  4. Structured Integration — Progress is merged via git commit/merge with test verification

When to Use This Skill

Use CAID from the outset for:

  • Long-horizon tasks with multiple interdependent files
  • Clear dependency structure (imports, test mappings)
  • Parallelizable work exists
  • Integration can be verified by executable tests

Don't use as fallback: Running single-agent first then CAID is inefficient (cost/runtime nearly additive, minimal performance gain).

Use single-agent for:

  • Isolated, single-file changes
  • No clear parallelization opportunities
  • Exploratory/research-oriented tasks

Coordination Workflow

0. Manager Pre-Setup (CRITICAL)

Before ANY delegation, the manager must:

  1. Prepare runtime environment

- Ensure dependencies installed - Set up virtual environment

  1. Organize entry points

- Create main entry files - Ensure import paths work

  1. Add minimal function stubs

- Empty function definitions so imports don't fail - Type signatures if available

  1. Commit to main branch

- All engineer branches created from consistent base - Without this, engineers start from divergent states

# Pre-setup commit
git add .
git commit -m "setup: initial stubs and entry points"
git push origin main

1. Task Analysis & Dependency Graph Creation

Manager's role: Before delegating, analyze the task structure:

  • Identify atomic units of work (files, functions, modules)
  • Build a dependency graph: G=(V,E) where edges indicate dependencies
  • Define Ready(v) ⇔ all dependencies of v are completed
  • Only delegate tasks that are Ready (all dependencies satisfied)

Commit0-style tasks (clear file structure):

  1. Check import statements to identify file-level dependencies
  2. Collect executable test cases from repository
  3. Examine which files tests exercise
  4. Identify components to implement earlier (upstream dependencies)
  5. Delegate at file level first — only split to function level if file has many unimplemented functions

PaperBench-style tasks (inferred structure):

  1. Read paper to identify main contribution
  2. Infer implementation order from contribution
  3. Use max 2 engineers — manager task is harder, more agents destabilize

Dependency graph construction:

Ready_t(v_j) ⇔ ∀(v_i, v_j) ∈ E, v_i ∈ Completed_t

Only delegate tasks from {v ∈ V | Ready_t(v)}

2. Workspace Isolation Setup

Create PHYSICALLY isolated worktrees (not soft isolation):

# Main branch is the single source of truth
git worktree add ../workspace-engineer-1 <branch-name-1>
git worktree add ../workspace-engineer-2 <branch-name-2>
# etc.
⚠️ WARNING: Soft isolation (same workspace, instruction-level constraints) degrades performance to below single-agent on PaperBench. Physical git worktree isolation is mandatory.

Key isolation principles:

  • Each engineer operates in its own git worktree (physical filesystem isolation)
  • All worktrees are derived from the main branch
  • Engineers modify files only within their assigned workspace
  • Restricted files (shared across engineers): __init__.py, config files, global constants — engineers must NOT commit changes to these

3. Dependency-Aware Task Delegation

STRICT Engineer Limits:

Task TypeMax EngineersWhy
PaperBench-style2Inferred dependencies; more destabilizes
Commit0-style4Clear file structure; test-guided
General SWE2-4Balance parallelism vs integration overhead
Absolute max8Beyond this, coordination tax exceeds gains
⚠️ Critical: Increasing engineers beyond optimal degrades performance due to integration overhead and conflict resolution costs.

Task prioritization heuristics: Manager should prioritize tasks that:

  1. Enable earlier test execution (expose evaluation signals sooner)
  2. Lie closer to upstream of dependency chain
  3. Are simpler functions before complex ones

Round definition:

One round = complete cycle of delegation → implementation → dependency update

Recommended iteration limits (from paper experiments):

RoleMax Iterations
Manager50
Each Engineer80
Total Rounds~22 (varies by task)

Delegation algorithm:

At round t:
1. Ready_Set = {v ∈ V | Ready_t(v)}  // all dependencies satisfied
2. Select up to N tasks from Ready_Set (N = max parallel engineers above)
3. Apply prioritization heuristics
4. Delegate to available engineers
5. Wait for completion signals
6. Update dependency state after each successful integration

Task assignment JSON format (structured communication — NO free-form dialog):

{
  "task_id": "string",
  "task_description": "string",
  "target_files": ["path/to/file.py"],
  "target_functions": ["function_name"],
  "dependencies": ["task_id_1", "task_id_2"],
  "expected_outcome": "description of success criteria",
  "verification_command": "pytest tests/test_file.py -v",
  "restricted_files": ["src/__init__.py", "src/config.py"],
  "priority": "high|medium|low"
}
Key: All communication uses structured JSON, not free-form dialog. This prevents inter-agent misalignment (primary failure mode in multi-agent systems).

4. Asynchronous Execution Loop

Event loop pattern:

  1. Delegate → Manager assigns tasks to available engineers
  2. Execute → Engineers work concurrently in isolated worktrees
  3. Self-Verify → Engineer runs tests, fixes failures
  4. Complete → Engineer submits commit when ALL tests pass
  5. Integrate → Manager attempts merge to main
  6. Conflict Resolution (if needed) → Responsible engineer resolves
  7. Update → Manager updates dependency graph
  8. Repeat → Continue until all tasks complete or limits reached

Engineer self-verification (MANDATORY before submission):

  • Run relevant tests that import/reference modified files
  • If no explicit mapping, run repository's default test command
  • Any failed test or runtime exception MUST be resolved
  • Use concrete error logs and tracebacks for iterative refinement
  • Only submit commit after ALL tests pass

5. Integration via Merge

Merge workflow:

# Manager attempts merge
git checkout main
git merge <engineer-branch>

# If conflict:
# 1. Engineer who produced conflicting commit is RESPONSIBLE for resolution
# 2. Engineer pulls latest main: git pull origin main
# 3. Resolves conflicts locally
# 4. Re-runs tests to ensure resolution didn't break anything
# 5. Resubmits commit
# 6. Manager retries merge

Main branch is single source of truth throughout execution.

6. Context Management for Manager

To prevent context explosion, manager uses LLMSummarizingCondenser pattern:

Periodically:
1. Summarize prior interaction rounds
2. Preserve structured artifacts:
   - Dependency graph (current state)
   - Completed tasks (with commit hashes)
   - Unresolved errors (with traceback summaries)
3. Discard detailed conversation history
4. Maintain execution traceability without bloat

Compressed execution history format:

{
  "round": 5,
  "completed": ["task-1", "task-2", "task-3"],
  "ready": ["task-4", "task-5"],
  "blocked": ["task-6: waiting for task-5"],
  "active_engineers": 2,
  "main_branch_commits": ["abc123", "def456"],
  "unresolved_errors": []
}

7. Worktree Synchronization & Cleanup

State synchronization when main advances:

# Engineer syncs to latest integrated state
cd ../workspace-engineer-1
git fetch origin
git reset --hard origin/main  # Sync worktree to latest main

Worktree cleanup (after completion or limit reached):

# Remove worktree when engineer finishes or hits iteration limit
git worktree remove ../workspace-engineer-1
rm -rf ../workspace-engineer-1  # Clean up directory
Worktrees are deleted after all assigned tasks are completed or when the engineer reaches the predefined iteration limit.

8. Termination Conditions

  • Success: All units completed and integrated into main
  • Failure: Maximum rounds/iterations reached with unresolved tasks
  • Incomplete: Task considered incomplete if any units remain unresolved

Manager iteration limits (from paper):

  • Manager: max_iterations=50
  • Each engineer: max_iterations=80
  • Total rounds: ~22 (varies by task)

9. Manager Final Review

After the asynchronous loop completes, the manager does a final review before submitting the final product.

Final review checklist:

  1. Verify all tasks from dependency graph are completed
  2. Run full test suite: pytest tests/ -v
  3. Check integration completeness (all commits merged)
  4. Review any unresolved errors or warnings
  5. Validate final state matches expected outcome
  6. Submit final product only after verification
# Manager final verification
git checkout main
pytest tests/ -v                    # Full test suite
python -m mypackage --version       # Smoke test
# Review any integration gaps

Implementation Guidelines

Using OpenClaw Sub-agents

For OpenClaw, the sessions_spawn tool enables parallel agent execution:

Spawn engineer agents:

// For each task in Ready_Set, spawn an engineer
{
  "runtime": "subagent",
  "task": "<task specification with context>",
  "agentId": "<engineer-agent-id>",
  "mode": "run",
  "runTimeoutSeconds": 300
}

Check progress:

// Poll for completion
{
  "action": "list"
}

Worktree Synchronization

When main advances, update worktrees:

# Engineer pulls latest main before continuing
cd ../workspace-engineer-1
git fetch origin
git reset --hard origin/main  # Or rebase

This ensures engineers work from latest integrated state.

Verification Intensity vs Efficiency Trade-off

From paper analysis (Section 4.4):

StrategyPass RateRuntimeWhen to Use
Round-Manager Review60.2%3689sMaximum correctness required
Engineer Self-Verification55.1%2244sDefault - balanced
Efficiency-Prioritized54.0%1909sTime-critical, acceptable risk

Default: Engineer self-verification without repeated manager review.

Common Pitfalls & Solutions

PitfallSolution
Using CAID as fallback after single-agent failsUse from outset; sequential costs ~2x with minimal gain
Soft isolation (instruction-only)Mandatory git worktree physical isolation
Too many engineers (>4-8)Strict limits: 2 PaperBench, 4 Commit0, 8 absolute max
Skipping manager pre-setupAlways prepare runtime/stubs/entry points first
Skipping manager final reviewAlways do final verification before submission
Merge conflicts from concurrent editsGroup dependent files; engineer resolves own conflicts
Not cleaning up worktreesDelete worktrees after completion/limit reached
Agents develop inconsistent viewsStructured JSON only; no free-form dialog
Silent interference between agentsExplicit merge with test verification
Tasks not clearly definedBuild dependency graph before ANY delegation
Integration failures discovered lateSelf-verification mandatory before commit
Context explosionUse LLMSummarizingCondenser pattern
Missing restricted filesMark __init__.py, configs as restricted

Cost/Runtime Expectations

CAID trade-offs (vs single-agent):

  • Higher API cost — Multiple agents = more LLM calls
  • Similar or longer wall-clock time — Integration is sequential/test-gated
  • Substantially higher accuracy — +26.7% PaperBench, +14.3% Commit0

When worth it: Long-horizon shared-artifact tasks where correctness matters more than speed.

Example Workflows

See references/examples.md for concrete implementation examples including:

  • Commit0-style library implementation
  • PaperBench-style paper reproduction
  • Bug fixing (single-file vs multi-file)
  • Feature addition with API and frontend

References

  • Paper: "Effective Strategies for Asynchronous Software Engineering Agents" (arXiv:2603.21489v1)
  • GitHub: https://github.com/JiayiGeng/async-swe-agents
  • Built on OpenHands agent SDK principles

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.13%
按下载量换算826

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills