Install
openclaw skills install ai-agent-team-managerProfessional 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.
openclaw skills install ai-agent-team-managerThis 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.
Use this skill when you need to:
const teamManager = new AIAgentTeamManager({
workspace: '/path/to/workspace',
agents: ['xiaolv', 'laogou', 'xiaoqiu', 'xiaozhu'],
methodology: 'otter-camp'
});
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']
});
const report = await teamManager.generatePerformanceReport({
period: 'last-30-days',
metrics: ['tasksCompleted', 'qualityScore', 'efficiency', 'cost']
});