Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

teamclaw-orchestrator团队之爪协调器

Agent Skill

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

总安装

3,501

周安装

143

GitHub Stars

公开资料未说明

下载量

1,121
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install teamclaw-orchestrator

简介

动态组建虚拟软件团队完成功能开发或缺陷修复。

  • 根据任务类型自动匹配开发者、测试员等角色。
  • 实时同步进度并支持人工干预调整策略。teamclaw-orchestrator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 适用于快速原型开发与紧急 bug 响应场景。
  • 建议限制单次最大并发代理数量以防过载。

SKILL.md

name
teamclaw
description
>
Triggers
build me ...", "create a ...", "team status", "assign to team", "teamclaw",
version
1.0.0
metadata
openclaw
author
TeamClaws
homepage
https://github.com/topcheer/teamclaw
links
homepage
https://github.com/topcheer/teamclaw
repository
https://github.com/topcheer/teamclaw
documentation
https://github.com/topcheer/teamclaw/blob/main/README.md
changelog
https://github.com/topcheer/teamclaw/releases

TeamClaw — AI Team Orchestration

Orchestrate a virtual software team through natural conversation. Submit requirements, monitor progress, review deliverables, and answer clarifications — all without leaving your chat.

When to Use This Skill

Activate when the user:

  • Wants to build, create, or implement something (e.g., "build me a todo app", "create an auth system")
  • Asks to delegate work to a team (e.g., "have the team work on this", "assign this to the developer")
  • Wants to check team status (e.g., "what are the workers doing?", "show me task progress")
  • Needs to review results (e.g., "show me what the developer built", "check the QA report")
  • Has pending clarifications to answer (e.g., "are there questions from the team?")
  • Mentions teamclaw by name

Prerequisites

TeamClaw must be running in controller mode. Detect the controller URL:

# Default controller URL
TEAMCLAW_URL="http://127.0.0.1:9527"

# Health check — verify the controller is running
curl -sf "$TEAMCLAW_URL/api/v1/health"

If the health check fails, tell the user to start TeamClaw first (install the teamclaw-setup skill for guidance).

Core Workflow

1. Submit a Requirement

When the user describes what they want built, submit it to the controller intake:

curl -s -X POST "$TEAMCLAW_URL/api/v1/controller/intake" \
  -H "Content-Type: application/json" \
  -d '{"message": "<user requirement here>"}'

The controller will:

  1. Analyze the requirement
  2. Decompose it into tasks for appropriate roles (developer, architect, QA, etc.)
  3. Assign tasks to available workers
  4. Return a controller run with tracking info

Response fields:

  • controllerRun.id — run identifier for tracking
  • controllerRun.statusrunning, completed, failed
  • result — the controller agent's orchestration output

Important: The intake call may take 30-180 seconds as the controller agent plans and decomposes the work. Use --max-time 300 with curl for large requirements.

2. Monitor Progress

Check team overview

curl -s "$TEAMCLAW_URL/api/v1/team/status"

Key response fields:

  • workers — map of all workers with their status (idle, busy, offline)
  • tasks — map of all tasks with status (pending, assigned, in-progress, completed, failed)
  • pendingClarificationCount — number of unanswered questions from workers
  • controllerRuns — orchestration run history

List tasks

curl -s "$TEAMCLAW_URL/api/v1/tasks"

Get task details with execution history

curl -s "$TEAMCLAW_URL/api/v1/tasks/<taskId>/execution"

Returns the task with full execution log (lifecycle events, progress updates, errors).

List workers

curl -s "$TEAMCLAW_URL/api/v1/workers"

3. Review Results

When a task completes, its result contract contains structured deliverables:

# Get the task to see its resultContract
curl -s "$TEAMCLAW_URL/api/v1/tasks/<taskId>"

The resultContract includes:

  • summary — what was accomplished
  • deliverables[] — list of files, notes, or artifacts produced
  • discoveredPatterns[] — patterns noticed during execution
  • suggestedNextSteps[] — recommended follow-up actions

4. Handle Clarifications

Workers may need clarification to proceed. Check and answer them:

# List pending clarifications
curl -s "$TEAMCLAW_URL/api/v1/clarifications"

# Answer a clarification
curl -s -X POST "$TEAMCLAW_URL/api/v1/clarifications/<clarificationId>/answer" \
  -H "Content-Type: application/json" \
  -d '{"answer": "<your answer>", "answeredBy": "user"}'

5. Create Individual Tasks

For fine-grained control, create tasks directly:

curl -s -X POST "$TEAMCLAW_URL/api/v1/tasks" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Implement user login",
    "description": "Create a login form with email/password auth",
    "priority": "high",
    "assignedRole": "developer"
  }'

Valid roles: pm, architect, developer, qa, release-engineer, infra-engineer, devops, security-engineer, designer, marketing.

Valid priorities: low, medium, high.

6. Send Messages to the Team

# Direct message to a role
curl -s -X POST "$TEAMCLAW_URL/api/v1/messages/direct" \
  -H "Content-Type: application/json" \
  -d '{
    "from": "user",
    "toRole": "developer",
    "content": "Please also add input validation"
  }'

# Broadcast to all workers
curl -s -X POST "$TEAMCLAW_URL/api/v1/messages/broadcast" \
  -H "Content-Type: application/json" \
  -d '{
    "from": "user",
    "content": "Deadline moved up — prioritize core features"
  }'

Response Presentation

When presenting results to the user:

  1. After intake submission: Summarize what the controller planned — how many tasks, which roles assigned, estimated workflow.
  1. For status checks: Show a concise table of workers and tasks:
   Workers: 3 active (developer: busy, qa: idle, architect: idle)
   Tasks: 5 total (2 completed, 1 in-progress, 2 pending)
   Clarifications: 1 pending
  1. For completed tasks: Highlight the deliverables, key files changed, and suggested next steps.
  1. For clarifications: Present the question clearly and ask the user to provide an answer.

Web UI

TeamClaw also provides a web dashboard for visual monitoring:

Open in browser: $TEAMCLAW_URL/ui

Mention this to users who prefer a visual overview.

Troubleshooting

IssueSolution
Health check failsEnsure TeamClaw plugin is enabled in controller mode: openclaw plugins list
No workers availableCheck processModel config; single-process creates workers automatically
Intake times outIncrease taskTimeoutMs in TeamClaw config; ensure AI model is responsive
Task stuck in pendingNo idle worker for the assigned role; check GET /api/v1/workers
Clarification blockingAnswer pending clarifications via POST /api/v1/clarifications/:id/answer

Read references for detailed API docs

Read references/api-quick-ref.md for the complete endpoint reference when you need exact request/response formats.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

93.09%
按下载量换算1,044

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills