agent-manager-skill

Manage multiple local CLI agents in tmux sessions with start, stop, monitor, and assign commands.

2|Updated Jan 10, 2026
One-click install
npx skills add https://github.com/Shubh2310-developer/ENGUNITYCORE --skill agent-manager-skill-shubh2310-developer
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agent-manager-skill
Source: https://github.com/Shubh2310-developer/ENGUNITYCORE/tree/main/.claude/skills/agent-manager-skill
Command: npx skills add https://github.com/Shubh2310-developer/ENGUNITYCORE --skill agent-manager-skill-shubh2310-developer

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Running several local CLI agents at once is hard to coordinate: processes get lost, logs are scattered, and assigning recurring work requires manual supervision. This Skill centralizes agent lifecycle management so you can start, stop, monitor, and assign tasks to agents from one place. ## Core Features & Use Cases - Parallel Agent Management: Run multiple local CLI agents simultaneously, each isolated in its own tmux session. - Lifecycle Control: Start, stop, list, and tail agent logs with simple commands like start EMP_0001 and monitor EMP_0001 --follow. - Task Assignment & Scheduling: Assign workflow instructions to agents and schedule recurring agent work via cron. - Use Case: You operate a fleet of maintenance agents (e.g., EMP_0001, EMP_0002). Use this Skill to start each agent in its own tmux session, assign a workflow file to follow, and monitor their output in real time. ## Quick Start Ask the assistant to start agent EMP_0001 in a tmux session and monitor its log output.

Frequently Asked Questions about agent-manager-skill

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run multiple CLI agents in parallel with tmux?

Start each agent in its own tmux session using the agent-manager CLI, for example `python3 agent-manager/scripts/main.py start EMP_0001`. Each agent runs isolated, and you can list all running agents with the `list` command.

How do I monitor agent logs in real time?

Use the monitor command with the follow flag: `python3 agent-manager/scripts/main.py monitor EMP_0001 --follow`. This tails the agent's log output continuously so you can watch task execution as it happens.

How do I assign a task to a running agent?

Pipe the task instructions into the assign command, for example `python3 agent-manager/scripts/main.py assign EMP_0002` followed by a heredoc containing the workflow to follow. The agent receives the instructions and executes them in its session.

What are the requirements for running the agent manager?

The host needs tmux and python3 installed. Agents must be configured under an agents/ directory, and the agent-manager repository should be cloned into your workspace before running its scripts.

Can I schedule recurring agent work with cron?

Yes, the agent-manager commands are cron-friendly, so you can add entries to your crontab that start agents or assign tasks on a schedule. This enables recurring maintenance or monitoring work without manual intervention.