Manage multiple local CLI agents via tmux sessions (start/stop/monitor/assign) with cron-friendly scheduling.
Add this skill
npx mdskills install sickn33/agent-manager-skillUseful parallel agent orchestration but lacks actionable agent instructions and edge case handling
1---2name: agent-manager-skill3description: Manage multiple local CLI agents via tmux sessions (start/stop/monitor/assign) with cron-friendly scheduling.4---56# Agent Manager Skill78## When to use910Use this skill when you need to:1112- run multiple local CLI agents in parallel (separate tmux sessions)13- start/stop agents and tail their logs14- assign tasks to agents and monitor output15- schedule recurring agent work (cron)1617## Prerequisites1819Install `agent-manager-skill` in your workspace:2021```bash22git clone https://github.com/fractalmind-ai/agent-manager-skill.git23```2425## Common commands2627```bash28python3 agent-manager/scripts/main.py doctor29python3 agent-manager/scripts/main.py list30python3 agent-manager/scripts/main.py start EMP_000131python3 agent-manager/scripts/main.py monitor EMP_0001 --follow32python3 agent-manager/scripts/main.py assign EMP_0002 <<'EOF'33Follow teams/fractalmind-ai-maintenance.md Workflow34EOF35```3637## Notes3839- Requires `tmux` and `python3`.40- Agents are configured under an `agents/` directory (see the repo for examples).41
Full transparency — inspect the skill content before installing.