A file-backed workspace for orchestrating AI coding agents. Acts as a shared backend for Claude Code, Aider, Cursor, and other AI coding tools.
# Install globally
npm install -g agentifyer
# Configure your AI coding tools
agentifyer setup
# Initialize a project
cd your-project
agentifyer initAgentifyer provides:
- Multi-agent messaging - Send messages between agents
- Task management - Create tasks with todos and acceptance criteria
- Memory - Persistent notes per agent
- Workspace state - File-backed storage for all agent data
- MCP integration - Tools available to Claude Code via MCP server
# Initialize workspace (creates .agentifyer/ and CLAUDE.md)
agentifyer init
# Spawn an agent
agentifyer spawn researcher researcher
# Send a task
agentifyer send --to researcher --subject "Research APIs" --body "Find best HTTP libraries"
# Check inbox
agentifyer inbox researcher
# Create a task
agentifyer task create --owner implementer --title "Build API" --body "Implement REST endpoints"
# Manage todos
agentifyer todo add --task task-id --item "Write tests"
# Workspace status
agentifyer status
# Start MCP server for Claude Code
agentifyer mcpAdd to ~/Library/Application Support/Claude/mcp_servers.json:
{
"mcpServers": {
"agentifyer": {
"command": "node",
"args": ["~/.agentifyer/bin/cli.js", "mcp"]
}
}
}Available MCP tools:
agentifyer_init- Initialize workspaceagentifyer_spawn- Spawn agentagentifyer_send- Send messageagentifyer_reply- Reply to messageagentifyer_inbox- Check inboxagentifyer_status- Workspace statusagentifyer_task_create- Create taskagentifyer_task_list- List tasksagentifyer_task_status- Update task statusagentifyer_todo- Manage todosagentifyer_memory- Agent memory notesagentifyer_recover- Recover state
- Claude Code (
claude) - Aider (
aider) - Cursor (
cursor) - Windsurf (
windsurf) - Roo Code (
roocode) - OpenCode (
opencode) - Cline (
cline)
project/
├── .agentifyer/ # Workspace data
│ ├── orchestrator/ # Orchestrator agent
│ ├── agents/ # Spawned agents
│ └── shared/ # Shared config
├── CLAUDE.md # Instructions (or AGENT.md)
└── agentifyer.md # Fallback instructions
MIT