---
name: Agent Manager
slug: agent-manager-2
category: Automation
description: Agent Manager orchestrates multiple local CLI agents in parallel with tmux. Use it to start, assign, monitor, and schedule agent tasks from the command line.
github: "https://github.com/ccplugins/awesome-claude-code-plugins/tree/main/plugins/agent-manager-skill/commands/agent-manager-skill.md"
language: JavaScript
stars: 922
forks: 392
install: "npx degit https://github.com/ccplugins/awesome-claude-code-plugins/tree/main/plugins/agent-manager-skill/commands ~/.claude/skills/commands"
installs_to: ~/.claude/skills/commands
source_path: plugins/agent-manager-skill/commands/agent-manager-skill.md
collection_size: 25
category_size: 1523
collection_url: "https://dirskills.com/collections/ccplugins/awesome-claude-code-plugins"
added: 2026-08-22T05:20:41.504Z
last_synced: 2026-08-22T05:20:41.504Z
canonical_url: "https://dirskills.com/skills/agent-manager-2"
---

# Agent Manager

Agent Manager orchestrates multiple local CLI agents in parallel with tmux. Use it to start, assign, monitor, and schedule agent tasks from the command line.

**Install:**

```bash
npx degit https://github.com/ccplugins/awesome-claude-code-plugins/tree/main/plugins/agent-manager-skill/commands ~/.claude/skills/commands
```

## README

## Usage

`/agent-manager-skill <TASK>`

## Goal

Help the user run and coordinate multiple local agents in parallel using `tmux`.

## Instructions

1. Ask the user where `agent-manager-skill` is installed (or have them clone it):

   ```bash
   git clone https://github.com/fractalmind-ai/agent-manager-skill.git
   ```

2. Run a quick environment check:

   ```bash
   python3 agent-manager/scripts/main.py doctor
   ```

3. List configured agents:

   ```bash
   python3 agent-manager/scripts/main.py list
   ```

4. Based on the user task ($ARGUMENTS), start/assign/monitor agents:

   ```bash
   python3 agent-manager/scripts/main.py start EMP_0001
   python3 agent-manager/scripts/main.py assign EMP_0001 <<'EOF'
   $ARGUMENTS
   EOF
   python3 agent-manager/scripts/main.py monitor EMP_0001 --follow
   ```

## Output

- Summarize which agents were started and what they are doing.
- Provide the exact commands to reproduce.
