$npx -y skills add SamarthaKV29/antigravity-god-mode --skill agent-manager-skillManage multiple local CLI agents via tmux sessions (start/stop/monitor/assign) with cron-friendly scheduling.
| 1 | # Agent Manager Skill |
| 2 | |
| 3 | ## When to use |
| 4 | |
| 5 | Use this skill when you need to: |
| 6 | |
| 7 | - run multiple local CLI agents in parallel (separate tmux sessions) |
| 8 | - start/stop agents and tail their logs |
| 9 | - assign tasks to agents and monitor output |
| 10 | - schedule recurring agent work (cron) |
| 11 | |
| 12 | ## Prerequisites |
| 13 | |
| 14 | Install `agent-manager-skill` in your workspace: |
| 15 | |
| 16 | ```bash |
| 17 | git clone https://github.com/fractalmind-ai/agent-manager-skill.git |
| 18 | ``` |
| 19 | |
| 20 | ## Common commands |
| 21 | |
| 22 | ```bash |
| 23 | python3 agent-manager/scripts/main.py doctor |
| 24 | python3 agent-manager/scripts/main.py list |
| 25 | python3 agent-manager/scripts/main.py start EMP_0001 |
| 26 | python3 agent-manager/scripts/main.py monitor EMP_0001 --follow |
| 27 | python3 agent-manager/scripts/main.py assign EMP_0002 <<'EOF' |
| 28 | Follow teams/fractalmind-ai-maintenance.md Workflow |
| 29 | EOF |
| 30 | ``` |
| 31 | |
| 32 | ## Notes |
| 33 | |
| 34 | - Requires `tmux` and `python3`. |
| 35 | - Agents are configured under an `agents/` directory (see the repo for examples). |