team-coordinator

团队协调与智能任务分配。作为高管,将用户任务拆解并分配给最合适的员工 agent 执行,协调多 agent 并行协作,汇总审核产出。

33 stars

Best use case

team-coordinator is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

团队协调与智能任务分配。作为高管,将用户任务拆解并分配给最合适的员工 agent 执行,协调多 agent 并行协作,汇总审核产出。

Teams using team-coordinator should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/team-coordinator/SKILL.md --create-dirs "https://raw.githubusercontent.com/aAAaqwq/AGI-Super-Team/main/skills/team-coordinator/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/team-coordinator/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How team-coordinator Compares

Feature / Agentteam-coordinatorStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

团队协调与智能任务分配。作为高管,将用户任务拆解并分配给最合适的员工 agent 执行,协调多 agent 并行协作,汇总审核产出。

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 团队协调 - Team Coordinator

- Author: Daniel Li
- Copyright © Daniel Li. All rights reserved.

## 当使用此技能

- 收到需要专业执行的任务(代码、数据、运维、研究等)
- 需要拆解复杂任务分配给多个员工
- 需要协调多 agent 并行工作
- 审核员工产出并汇总交付

## 核心原则

**你是高管,不是执行者。** 能派员工做的事不自己做。

## 员工能力矩阵

| 员工 | accountId | 核心能力 | 适合任务 | 不适合 |
|------|-----------|---------|---------|--------|
| 小code | xiaocode | 代码开发、脚本、bug修复 | Python/JS/Go 开发、API对接、自动化工具、代码审查 | 业务分析、文案 |
| 小ops | xiaoops | 运维监控、系统诊断 | 服务故障排查、端口/进程/日志诊断、安全审计、部署 | 数据分析、开发 |
| 小quant | xiaoq | 量化交易、市场分析 | Polymarket 交易、赔率分析、策略执行、风控 | 非交易类任务 |
| 小data | xiaodata | 数据采集、分析、爬虫 | 网页抓取、数据清洗、Excel/CSV、可视化 | 代码架构设计 |
| 小finance | xiaofinance | 财务核算、盈亏分析 | 交易盈亏、资产报表、成本分析、预算 | 技术开发 |
| 小research | xiaoresearch | 研究分析、情报收集 | 论文、竞品分析、行业报告、深度调研 | 执行类任务 |
| 小market | xiaomarket | 市场营销、内容创作 | 文案、社交媒体、SEO、推广策略 | 技术开发 |
| 小pm | xiaopm | 项目管理、任务分解 | PRD、里程碑规划、任务拆解、风险评估 | 技术执行 |

## 任务分配决策流程

```
收到任务
  ├─ 判断任务类型和复杂度
  │   ├─ 简单查询/决策 → 小a自己处理
  │   ├─ 单一专业任务 → 派一个员工
  │   └─ 复杂多面任务 → 拆解后派多个员工并行
  │
  ├─ 选择执行者
  │   ├─ 匹配核心能力(见能力矩阵)
  │   ├─ 优先选择能力最匹配的员工
  │   └─ 能力重叠时选择更专精的
  │
  └─ 执行与跟进
      ├─ 通过 message(accountId=xxx) 下达任务
      ├─ 明确任务目标、交付物、截止时间
      ├─ 监控执行进度
      └─ 审核产出质量,汇总交付用户
```

## 调度方式

### 单任务分配
```
message(action=send, accountId="xiaocode", target="群ID", message="任务描述...")
```

### 多任务并行
同时向多个员工下达子任务,各自执行后汇总:
```
→ 小code: 开发脚本
→ 小data: 采集数据
→ 小pm: 制定计划
```

### 子 agent spawn(后台异步)
对于耗时长的独立任务,使用 `sessions_spawn` 创建隔离会话:
```
sessions_spawn(task="...", agentId="code")
```

## 质量把控

1. **任务下达时**: 明确目标、格式、约束条件
2. **执行过程中**: 关键节点检查进度
3. **交付时**: 审核产出是否达标,不达标则反馈修改
4. **汇总时**: 整合多员工产出,统一口径交付用户

## 执行哲学:MVP 优先

**🚀 先完成,再完美。**

- 80% 的方案快速上线 > 100% 的方案永远停留在规划
- 第一版不求完美,但求可运行、可验证
- 快速迭代:上线 → 收集反馈 → 优化 → 再上线
- 避免 analysis paralysis(分析瘫痪):想太多 = 不执行

适用场景:
- 新功能开发:先跑通主流程,边缘情况后续补
- 策略制定:先用简单规则跑起来,再逐步精细化
- 工具集成:先用起来,体验优化放后面

## 触发词

- "帮我做..."(判断是否需要分配)
- "让小code/小ops/..." 
- "分配任务"
- "团队协作"
- 任何涉及代码、运维、数据、研究等专业领域的请求

Related Skills

Team Foreman — 团队监工巡查 Skill

33
from aAAaqwq/AGI-Super-Team

> 每 15 分钟由 cron 调用。核心目标:**真实推进任务,不是写报告。**

team-daily-report

33
from aAAaqwq/AGI-Super-Team

自动汇总团队内 agent、cron、skill 进展与关键事件,生成并推送结构化日报。

microsoft-teams-automation

33
from aAAaqwq/AGI-Super-Team

Automate Microsoft Teams tasks via Rube MCP (Composio): send messages, manage channels, create meetings, handle chats, and search messages. Always search tools first for current schemas.

cross-team-comm

33
from aAAaqwq/AGI-Super-Team

通过 Tailscale、SSH、Gateway API 与 sessions_send 实现跨团队、跨实例的 OpenClaw 协作通信。

agent-team-orchestration

33
from aAAaqwq/AGI-Super-Team

Orchestrate multi-agent teams with defined roles, task lifecycles, handoff protocols, and review workflows. Use when: (1) Setting up a team of 2+ agents with different specializations, (2) Defining task routing and lifecycle (inbox → spec → build → review → done), (3) Creating handoff protocols between agents, (4) Establishing review and quality gates, (5) Managing async communication and artifact sharing between agents.

wemp-operator

33
from aAAaqwq/AGI-Super-Team

> 微信公众号全功能运营——草稿/发布/评论/用户/素材/群发/统计/菜单/二维码 API 封装

Content & Documentation

zsxq-smart-publish

33
from aAAaqwq/AGI-Super-Team

Publish and manage content on 知识星球 (zsxq.com). Supports talk posts, Q&A, long articles, file sharing, digest/bookmark, homework tasks, and tag management. Use when publishing content to 知识星球, creating/editing posts, uploading files/images/audio, managing digests, batch publishing, or formatting content for 知识星球.

zoom-automation

33
from aAAaqwq/AGI-Super-Team

Automate Zoom meeting creation, management, recordings, webinars, and participant tracking via Rube MCP (Composio). Always search tools first for current schemas.

zoho-crm-automation

33
from aAAaqwq/AGI-Super-Team

Automate Zoho CRM tasks via Rube MCP (Composio): create/update records, search contacts, manage leads, and convert leads. Always search tools first for current schemas.

ziliu-publisher

33
from aAAaqwq/AGI-Super-Team

字流(Ziliu) - AI驱动的多平台内容分发工具。用于一次创作、智能适配排版、一键分发到16+平台(公众号/知乎/小红书/B站/抖音/微博/X等)。当用户需要多平台发布、内容排版、格式适配时使用。触发词:字流、ziliu、多平台发布、一键分发、内容分发、排版发布。

zhihu-post-skill

33
from aAAaqwq/AGI-Super-Team

> 知乎文章发布——知乎平台内容创作与发布自动化

zendesk-automation

33
from aAAaqwq/AGI-Super-Team

Automate Zendesk tasks via Rube MCP (Composio): tickets, users, organizations, replies. Always search tools first for current schemas.