Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Ai Agent Team Management

ASecurity

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…

19 stars
0 votes
0 copies
1 views
Added 9/19/2026
developmenttypescriptpythongobashsqlreactgitapidatabasefrontend

Works with

api

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill ai-agent-team-management --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Ai Agent Team Management?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Ai Agent Team Management
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-ai-agent-team-management/badge)](https://www.skillsdirectory.com/skills/rondoflow-ai-agent-team-management)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: ai-agent-team-management
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…"
category: "AI & Agents"
author: community
version: "2.1.9"
icon: bot
---

# Agent Team Skill

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

## Team Members

List all team member information:

```bash
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:
```markdown
## 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:

```bash
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:

```bash
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
```bash
# 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:
```bash
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:
```bash
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
```bash
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

- [Plugin Installation Guide](https://github.com/realqiyan/agent-team-skill/blob/master/integrations/openclaw/agent-team/README.md) - How to install and configure the OpenClaw plugin

Attribution

rondoflowrondoflow
View sourceMore from rondoflow →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284722 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →