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

agent-team-skillAgent 团队技能

Agent Skill

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

总安装

30,216

周安装

1,259

GitHub Stars

1

下载量

10,072
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install agent-team-skill

简介

Agent Team Skill 通过角色与技能矩阵管理 AI 代理团队成员。

  • 支持列出成员、添加代理、设置负责人与检查技能匹配度。
  • 适用于人力资源类代理团队的动态调配与能力评估。
  • 使用前应定义清晰的技能标签体系与匹配规则。
  • 建议定期更新技能库以保持与实际能力对齐。agent-team-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
agent-team-skill
description
Manage AI agent team members with roles, skills, and task delegation. Use when: listing team members, adding/updating agents, setting the team leader, checking who has specific expertise, delegating tasks to the right agent, or coordinating multi-agent workflows. Keywords: team member, agent list, leader, expertise, delegation, PDCA workflow.
license
MIT
homepage
https://github.com/realqiyan/agent-team-skill
allowed-tools
Bash(python3:*) Read(*.json)
compatibility
Requires Python 3.10+
metadata
clawdbot
emoji
🤖
requires
bins

Agent Team Skill

Manage AI agent team members with skills, roles, and task delegation.

Team Members

List all team member information:

python3 scripts/team.py list

Common scenarios:

  • Check who is the current team leader
  • Find members with specific expertise before task assignment
  • Review team structure and available roles

Output example:

## Team Members

**Alice** ⭐ Leader - coordination,planning,decision-making
- agent_id: alice
- expertise: task breakdown, comprehensive decisions, agent coordination
- not_good_at: code development, investment analysis

**Bob** - Backend Developer - backend,API,database
- agent_id: bob
- expertise: Python,Go,PostgreSQL
- not_good_at: frontend,design

# Total: 2 member(s), Leader: Alice (alice)

⚡ Task Delegation Rules (Core Principle)

Delegation Timing:

  1. First complete prep work: understand requirements, clarify goals, confirm constraints
  2. When entering implementation: identify the best person for execution, delegate to them
  3. Follow up after delegation: check output quality, ensure requirements are met

Delegation Context (what to pass): When delegating, always provide:

  • Original requirements and success criteria
  • Relevant background and context
  • Your execution plan and any constraints
  • Expected output format

Delegation Failover: If teammate fails to complete:

  1. First attempt: Send back with specific feedback for revision
  2. Second attempt: Reassign to another teammate with adjusted context
  3. Third attempt: Escalate to leader OR execute yourself

🔄 Task Processing Flow (Highest Priority)

Plan → Do → Check → Act

IMPORTANT: This is a continuous improvement cycle. If task is incomplete in Act phase, loop back to Plan.

1. Plan — Planning Phase

Goal: Prepare thoroughly, avoid blind execution

  • Understand requirements and clarify questions
  • Define goals and success criteria
  • Identify risks and determine ownership
  • Create execution plan

2. Do — Execution Phase

Goal: Execute the plan while maintaining progress

  • Execute or delegate based on ownership
  • Track progress and key decisions

3. Check — Checking Phase

Goal: Verify results against requirements

  • Verify completeness and quality
  • Check compliance with standards

4. Act — Acting Phase

Goal: Summarize and decide next steps

  • ✅ Task complete → End
  • ❌ Task incomplete → Loop back to Plan

Add/Update Member

Add a new member or update existing member information:

python3 scripts/team.py update \
  --agent-id "agent-001" \
  --name "Alice" \
  --role "Backend Developer" \
  --is-leader "true" \
  --enabled "true" \
  --tags "backend,api,database" \
  --expertise "python,go,postgresql" \
  --not-good-at "frontend,design" \
  --load-workflow "true" \
  --group "backend-team"

Parameters:

  • --agent-id: Member unique identifier (required)
  • --name: Member name (required)
  • --role: Role/position (required)
  • --is-leader: Whether team Leader (required, true/false, only one Leader per team)
  • --enabled: Enable status true/false (required)
  • --tags: Tags, comma-separated (required)
  • --expertise: Expertise skills, comma-separated (required)
  • --not-good-at: Weak areas, comma-separated (required)
  • --load-workflow: Whether to load workflow prompts (optional, true/false, default: true for leader, false for others)
  • --group: Group name for categorization (optional, used for organizing team members)

Reset Data

Clear all team data and reset to initial state:

python3 scripts/team.py reset

Output:

Team data has been reset.

⚠️ Warning: This operation is irreversible. All data in ~/.agent-team/team.json will be permanently deleted.

Data Storage

Team data is stored in ~/.agent-team/team.json, shared globally. Directory is auto-created if it doesn't exist.

Common Use Cases

Finding the right person for a task

# List team to find member with relevant expertise
python3 scripts/team.py list
# Look for matching tags/expertise in the output

Changing team leader

Setting a new leader automatically removes leader status from the previous one:

python3 scripts/team.py update --agent-id "alice" --name "Alice" --role "Team Lead" --is-leader "true" --enabled "true" --tags "coordination,planning" --expertise "management,decision-making" --not-good-at "specialized-development"

Temporarily disabling a member

Set --enabled "false" to disable without removing:

python3 scripts/team.py update --agent-id "bob" --name "Bob" --role "Backend Developer" --is-leader "false" --enabled "false" --tags "backend,api" --expertise "Python,Go" --not-good-at "frontend"

Adding a new team member

python3 scripts/team.py update --agent-id "charlie" --name "Charlie" --role "Frontend Developer" --is-leader "false" --enabled "true" --tags "frontend,ui" --expertise "React,TypeScript" --not-good-at "backend,database"

Error Handling

Data file not found

If ~/.agent-team/team.json doesn't exist, the script returns an empty team state (no error raised).

Invalid JSON

If the data file is corrupted, the script logs an error and returns an empty state:

[agent-team] Error loading team data: <error message>

Missing required parameters

Running update without required parameters:

error: the following arguments are required: --agent-id, --name, --role, --is-leader, --enabled, --tags, --expertise, --not-good-at

Single leader constraint

Only one leader can exist. Setting a new leader automatically removes leader status from the previous one:

Note: Removed leader status from <previous-leader-name>

References

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.75%
按下载量换算7,831

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills