π¦ ClawHub
Agent-team-manager
by @komong
Professional AI agent team management system for coordinating multiple OpenClaw agents. Implements the proven Otter Camp methodology with task assignment, pr...
TERMINAL
clawhub install ai-agent-team-managerπ About This Skill
name: ai-agent-team-manager description: Professional AI agent team management system for coordinating multiple OpenClaw agents. Implements the proven Otter Camp methodology with task assignment, progress tracking, quality control, and performance evaluation. metadata: openclaw: requires: env: - OPENCLAW_WORKSPACE bins: - git - node - python3
AI Agent Team Manager
Overview
This skill implements a professional AI agent team management system based on the Otter Camp methodology. It enables you to coordinate multiple OpenClaw agents working together on complex projects with proper task assignment, progress tracking, quality control, and performance evaluation.When to Use This Skill
Use this skill when you need to:Core Features
Task Assignment & Coordination
Progress Tracking & Monitoring
Quality Control & Review
Performance Evaluation
Usage Examples
Basic Team Setup
const teamManager = new AIAgentTeamManager({
workspace: '/path/to/workspace',
agents: ['xiaolv', 'laogou', 'xiaoqiu', 'xiaozhu'],
methodology: 'otter-camp'
});
Task Coordination
await teamManager.assignTask({
taskId: 'email-analysis-2026',
description: 'Analyze 3,418 emails from QQ mailbox',
assignee: 'xiaolv',
reviewers: ['laogou'],
deadline: '2026-03-10',
qualityChecks: ['accuracy', 'completeness', 'formatting']
});
Performance Reporting
const report = await teamManager.generatePerformanceReport({
period: 'last-30-days',
metrics: ['tasksCompleted', 'qualityScore', 'efficiency', 'cost']
});