claude-agent-manager
Health Warn
- License — License: MIT
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Low visibility — Only 5 GitHub stars
Code Warn
- fs module — File system access in bin/update-registry.sh
Permissions Pass
- Permissions — No dangerous permissions requested
This plugin spawns and manages autonomous, background coding agents. It operates within isolated git worktrees and tracks each agent's progress using a persistent local registry file.
Security Assessment
The tool requires broad access to the local file system and heavily relies on shell execution to manage git operations (worktrees, merging, rebasing) and run background tasks. It does not request explicitly dangerous OS permissions, and no hardcoded secrets were detected. However, because it is designed to autonomously execute code changes and run optional verification commands (like `npm test`), it inherently carries an elevated risk. If a malicious or flawed task is provided, the autonomous agent could execute unintended shell commands. Overall risk is rated as Medium.
Quality Assessment
The project is very new and has low community visibility, currently sitting at only 5 GitHub stars. Despite this, it is actively maintained, featuring a recent push date and a clear, comprehensive README. The codebase benefits from an approved, standard open-source license (MIT), which is a positive indicator for enterprise or personal use.
Verdict
Use with caution — while the tool is transparent, actively updated, and legally safe under the MIT license, its low community adoption and high level of autonomous system access mean you should carefully supervise any generated code or executed tasks.
Claude Code plugin to spawn and manage autonomous background agents with persistent state, worktree isolation, and auto-completion hooks
Claude Agent Manager
A Claude Code plugin for spawning and managing autonomous background agents with persistent state across sessions.
What it does
- Spawn background agents that work in isolated git worktrees
- Track agent status with a persistent registry (
.claude/agents/registry.json) - Auto-detect completion via hooks — registry updates in real-time when agents finish
- Resume stopped or failed agents from where they left off
- Merge completed agent work back into your main branch
- Monitor agent activity with logs, diffs, and watch mode
- Learn from previous tasks via persistent worker memory
Install
claude plugin install agent-manager
When enabling, you'll be prompted for optional defaults:
- Default model —
haiku,sonnet, oropus(leave empty to inherit from session) - Default effort —
low,medium,high, ormax(leave empty forhigh)
Or test locally:
claude --plugin-dir /path/to/claude-agent-manager
Requirements
- Git — agents work in isolated git worktrees
- Node.js — used by the hook script (always available since Claude Code runs on Node)
- No other external dependencies
Commands
Core
| Command | Description |
|---|---|
/agent "task" |
Spawn a new background agent |
/agent list |
Show all agents and their status |
/agent switch <id> |
View details of a specific agent |
/agent stop <id> |
Stop a running agent |
/agent merge <id> |
Merge a completed agent's branch |
/agent history |
Show full agent history |
/agent clean |
Remove finished agents and worktrees |
Recovery
| Command | Description |
|---|---|
/agent resume <id> |
Resume a stopped/failed agent on its existing branch |
/agent retry <id> |
Re-spawn a failed agent with the same task from scratch |
Inspection
| Command | Description |
|---|---|
/agent diff <id> |
Quick inline diff preview of agent's changes |
/agent logs <id> |
Summarized activity log of what the agent did |
/agent stats |
Lifetime stats — total spawned, success rate, etc. |
Advanced
| Command | Description |
|---|---|
/agent batch "task1" "task2" |
Spawn multiple agents in parallel |
/agent note <id> "text" |
Attach a note to an agent |
/agent watch <id> |
Poll a running agent until completion |
/agent rebase <id> |
Rebase agent branch onto latest main |
/agent export <id> |
Export changes as a .patch file |
Templates
Spawn with a pre-defined template:
/agent --template api "add user profile endpoint"
Templates are stored in .claude/agents/templates/ as JSON files:
{
"name": "api",
"description": "API endpoint template",
"verifyCommand": "npm test",
"commitFormat": "feat(api): {description}"
}
Required fields: name, description. Optional: verifyCommand (overrides Phase 4 auto-detection), commitFormat (overrides conventional commit format).
Spawn Flags
| Flag | Values | Description |
|---|---|---|
--model |
haiku, sonnet, opus |
Choose which model the agent uses |
--effort |
low, medium, high, max |
Effort level metadata (worker runs at high) |
--color |
red, blue, green, yellow, purple, orange, pink, cyan |
Visual color for agent identification |
--max-turns |
<number> |
Max turns metadata (worker default: 200) |
--template |
<name> |
Use a pre-defined template |
Note:
--modelis the only flag that changes agent behavior at runtime (via the Agent tool'smodelparameter).--effortand--max-turnsare stored in the registry for tracking but the worker subagent always useseffort: highandmaxTurns: 200from its definition.--colorsets the agent's display color.
Examples:
/agent --model sonnet "refactor the auth module"
/agent --model haiku --color blue "add JSDoc comments to utils/"
/agent --max-turns 50 "quick formatting fix"
/agent batch --model sonnet "task one" "task two"
How it works
- Each spawned agent runs as a custom
workersubagent in an isolated git worktree - The worker follows a structured 5-phase process:
- Analyze — read project conventions, identify relevant files
- Plan — break task into 3-8 ordered steps with fallbacks
- Implement — execute incrementally, verify after each step
- Verify — auto-detect build system and run checks (or use template's
verifyCommand) - Commit — conventional commit, write result file back to main repo
- A
SubagentStophook auto-updates the registry when agents complete - Workers accumulate project knowledge via persistent memory (
.claude/agent-memory/worker/) - Resume agents that failed, or retry them from scratch
- When ready, merge the agent's branch back into your working branch
Plugin Structure
claude-agent-manager/
├── .claude-plugin/
│ ├── plugin.json # Plugin manifest with userConfig
│ └── marketplace.json # Marketplace metadata
├── agents/
│ └── worker.md # Custom worker subagent (background, worktree, memory)
├── skills/
│ └── agent/
│ └── SKILL.md # Main skill with all commands
├── hooks/
│ └── hooks.json # SubagentStop hook for auto-registry updates
├── bin/
│ └── update-registry.sh # Registry update script called by hook
├── README.md
├── CHANGELOG.md
└── LICENSE
Tips
First-time setup
On your first /agent command in a repo, the plugin asks for your default branch (e.g., main, master, develop). This is stored in the registry and used for all git operations. You only get asked once per project.
Monorepos with submodules
Agents run in git worktrees. For monorepos with submodules, cd into the submodule before spawning agents — this ensures the worktree is created for that specific repo:
cd my-monorepo/frontend # cd into the submodule
claude # start Claude Code here
/agent "add dark mode" # agent works on frontend repo only
Environment files in worktrees
Agents run in isolated git worktrees, which don't include gitignored files like .env. If your project needs environment variables or config files in agent worktrees, create a .worktreeinclude file at your project root:
.env
.env.local
config/secrets.json
Files matching these patterns that are also gitignored will be automatically copied into each agent's worktree.
License
MIT
Reviews (0)
Sign in to leave a review.
Leave a reviewNo results found