agent-manager

Installation

Prerequisites

You need Node.js >= 18 and at least one supported AI CLI agent installed before proceeding.

  • Claude Codenpm install -g @anthropic-ai/claude-code
  • Gemini CLInpm install -g @google/gemini-cli

Install Methods

From npm

1

Install globally

npm install -g agent-manager
bash
2

Run the manager

agent-manager
bash

From source

1

Clone and build

git clone https://github.com/georgelivas/agent-manager.git
cd agent-manager
npm install
npm run build
bash
2

Start the manager

npm start
bash

Development

# Run with live reload
npm run dev
bash

Hook Installation

To enable messaging connector integration with Claude Code, install the hooks:

npm run install-hooks
bash

This registers three hooks in ~/.claude/settings.json that route Claude Code events through the manager's IPC server. To remove them, run npm run uninstall-hooks.