aa-rick/xqe-agent-team/SKILL.md
Orchestrate a dynamic multi-agent team where a lead agent (opus) plans and delegates tasks to specialized worker agents (sonnet) that communicate bidirectionally. Use when tasks benefit from parallelism or specialization — code review, market research, trading signal analysis, competitive analysis, or any complex task decomposable into parallel workstreams. Triggers on phrases like "agent team", "multi-agent", "spawn agents", "parallel agents", "team of agents", "让多个agent协作", "多智能体", "agent团队".
npx skillsauth add openclaw/skills agent-teamInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Orchestrate a dynamic team of agents: one Orchestrator (opus) plans + delegates + synthesizes; multiple Worker agents (sonnet) execute specialized subtasks and communicate bidirectionally.
User
└─► Orchestrator (opus)
├─ plans team composition dynamically
├─ spawns Worker A (sonnet) ──┐
├─ spawns Worker B (sonnet) │ bidirectional
├─ spawns Worker C (sonnet) ◄─┘ via sessions_send
└─ aggregates → final report to user
Analyze the task and define 2–4 worker roles. Each role needs:
researcher, coder, reviewer)See references/role-patterns.md for common role combinations per scenario.
Spawn each worker as a persistent sub-agent session. Always set streamTo: "parent" so the user sees real-time output in their chat window:
# Pseudocode — use sessions_spawn tool
sessions_spawn(
task="You are the [ROLE] agent. [SPECIFIC TASK].
When you need input from another agent, send a message to session [SESSION_KEY].
Report your final result clearly structured.",
runtime="subagent",
mode="session", # persistent — can receive follow-up messages
model="sonnet", # worker uses sonnet
label="worker-[role]",
streamTo="parent" # stream output to user's chat in real time
)
Spawn all independent workers in parallel (single tool call block). Only spawn sequentially when a worker strictly depends on another's output.
Workers can message each other via sessions_send. The orchestrator:
subagents(action=list) — check on-demand, not in a loopsubagents(action=steer, target=<label>, message=<redirect>)Direct worker-to-worker message pattern:
Worker A finishes partial result
→ sessions_send(sessionKey=worker-B-key, message="Here's my output: ...")
Worker B incorporates it, finishes
→ sessions_send(sessionKey=orchestrator-key, message="Done: ...")
After each worker completes, send a status update to the user before moving on:
"[worker-researcher] 完成 ✅ — 找到 12 条相关数据,传给 worker-analyst"
"[worker-analyst] 处理中... 等待 worker-researcher 结果"
"[worker-reviewer] 完成 ✅ — 发现 3 个风险点"
This gives the user full visibility into the team's progress without needing to check logs manually.
Once all workers report back, the orchestrator:
| Role | Model | Rationale |
|------|-------|-----------|
| Orchestrator | Current session model (Jarvis / Friday / Jupiter) | Complex planning + synthesis |
| Workers | sonnet | Cost-efficient execution |
Orchestrator identities:
Override worker model when a subtask needs deeper reasoning: pass model="anthropic/claude-opus-4-6" to that specific spawn.
See references/role-patterns.md for ready-made role sets:
reader + security-reviewer + refactor-plannerdata-analyst + sentiment-analyst + risk-assessortechnical-analyst + fundamental-analyst + macro-watchersubagents(action=list) only when checking status on-demandsubagents(action=kill, target=<label>)tools
Use when the user wants to connect to, test, or use the McDonalds service at mcp.mcd.cn, including checking authentication, probing MCP endpoints, listing tools, or calling McDonalds MCP tools through a reusable local CLI.
development
Web scraping platform — Twitter/X data, Vinted marketplace, and general web scraping API
development
SlowMist AI Agent Security Review — comprehensive security framework for skills, repositories, URLs, on-chain addresses, and products (Claude Code version)
data-ai
去除中文文本中的 AI 写作痕迹,使其读起来自然。基于维基百科 AI 写作特征指南,检测 24 种 AI 模式。触发词:humanizer-cn、去除 AI 痕迹、去除 AI 写作痕迹、中文文本人性化。