Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,26 @@
"debugging"
]
},
{
"name": "agent-manager-skill",
"source": "./plugins/agent-manager-skill",
"description": "Orchestrate multiple local CLI agents via tmux using agent-manager-skill (start/stop/monitor/assign + cron-friendly scheduling).",
"version": "0.1.0",
"author": {
"name": "fractalmind-ai",
"url": "https://github.com/fractalmind-ai"
},
"category": "Workflow Orchestration",
"homepage": "https://github.com/ccplugins/awesome-claude-code-plugins/tree/main/plugins/agent-manager-skill",
"keywords": [
"workflow",
"orchestration",
"tmux",
"agents",
"monitoring",
"scheduling"
]
},
{
"name": "code-review",
"source": "./plugins/code-review",
Expand Down
1 change: 1 addition & 0 deletions README-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@

### 工作流编排
- [angelos-symbo](./plugins/angelos-symbo)
- [agent-manager-skill](./plugins/agent-manager-skill)
- [ceo-quality-controller-agent](./plugins/ceo-quality-controller-agent)
- [claude-desktop-extension](./plugins/claude-desktop-extension)
- [lyra](./plugins/lyra)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ Install or disable them dynamically with the `/plugin` command — enabling you

### Workflow Orchestration
- [angelos-symbo](./plugins/angelos-symbo)
- [agent-manager-skill](./plugins/agent-manager-skill)
- [ceo-quality-controller-agent](./plugins/ceo-quality-controller-agent)
- [claude-desktop-extension](./plugins/claude-desktop-extension)
- [lyra](./plugins/lyra)
Expand Down
10 changes: 10 additions & 0 deletions plugins/agent-manager-skill/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "agent-manager-skill",
"description": "Orchestrate multiple local CLI agents via tmux using agent-manager-skill (start/stop/monitor/assign + cron-friendly scheduling).",
"version": "0.1.0",
"author": {
"name": "fractalmind-ai",
"url": "https://github.com/fractalmind-ai"
},
"homepage": "https://github.com/fractalmind-ai/agent-manager-skill"
}
48 changes: 48 additions & 0 deletions plugins/agent-manager-skill/commands/agent-manager-skill.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
description: Use /agent-manager-skill to orchestrate multiple local CLI agents via tmux using agent-manager-skill (start/stop/monitor/assign + cron-friendly scheduling).
author: fractalmind-ai
version: 0.1.0
---

## 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.