Acolytes for Claude Code - Multi-agent system with 57+ specialized AI assistants
Project description
Revolutionary Multi-Agent System v2.0.0 with
โพ๏ธ NEURAL MEMORY NETWORK
Transform Claude Code into an intelligent project orchestrator with 60 specialized agents + 5 setup agents + project-specific Acolytes. Features revolutionary Acolytes Quest System for unprecedented multi-agent coordination and persistent SQLite memory for cumulative learning.
๐ FIRST IN THE WORLD TO ACHIEVE THIS
๐ BREAKTHROUGH: Acolytes Quest System
NEVER BEFORE ACHIEVED: Acolytes for Claude Code features the world's first stateful multi-agent coordination system that enables real-time communication and collaboration between 55 specialized agents + 5 setup agents. The Quest system operates through persistent SQLite database, ensuring no information loss and perfect autonomous coordination.
Quest System Success Stories
- โ Real-time Agent Communication: Agents communicate through persistent SQLite database
- โ Autonomous Coordination: Turn-based system prevents conflicts and ensures perfect handoffs
- โ Stateful Memory: Project Acolytes maintain 14 types of persistent memory
- โ Enterprise Reliability: Production-tested coordination with complete audit trails
Quest System Workflow Example (Fully Automated)
USER> "/prequest implement OAuth authentication"
โ
Claude โ ๐ญ @coordinator.backend creates Quest #1847
โ
๐ @service.auth: "Building OAuth flow... need users schema"
โ
๐ @database.postgres: "Creating oauth_provider, refresh_token columns"
โ
๐ญ @coordinator.backend: "Schema ready, continue OAuth implementation"
โ
๐ @service.auth: "OAuth flow complete with Google & GitHub"
โ
Claude โ ๐ฏ "Quest completed: OAuth system ready"
๐ค Everything happens automatically - no manual coordination needed!
๐๏ธ Advanced Multi-Agent Architecture
58 Global Agents
- Backend: API, Go, Java, Laravel, Node.js, Python, Rust, Serverless
- Frontend: Angular, React, Vue, Mobile
- Database: PostgreSQL, MongoDB, Redis, MariaDB, SQLite, pgvector, PostGIS, Vectorial
- DevOps: Bash, CI/CD, Containers, Git, IaC, Monitoring, Performance, Troubleshooting, Webserver
- Business: Billing, Payments, Subscriptions
- Services: AI/ML, Auth, Communication, Data Processing, Integrations, Mapbox
- Coordinators: Backend, Frontend, Database, DevOps, Infrastructure, Migration, Security, Testing
- Analysis: Data Analysis, Strategic Planning, Compliance, Security Audit
- Documentation: Specialist
- Testing: Quality Assurance
- System: Setup (5 agents), Planning
Acolytes (Auto-Created per Project)
- One expert agent per detected module (acolyte.auth, acolyte.api, etc.)
- Deep module knowledge stored in 14-memory SQLite system
- Created during
/setupPhase 6 via@setup.acolytes-creator
๐ฏ Intelligent Agent Routing System
17-rule anti-ambiguity system eliminates agent selection errors:
- Strategy vs Implementation: Coordinators for decisions, specialists for execution
- RAG/Vector Search: PostgreSQL+embeddings โ
@database.pgvector, Any vector platform โ@database.vectorial - Auth vs Security: OAuth/JWT โ
@service.auth, Architecture/compliance โ@coordinator.security - Multi-Agent Workflows: Sequential, parallel, and coordinated execution patterns
๐ IMPORTANT: READ DOCUMENTATION FIRST
๐จ CRITICAL: Before using Acolytes, you MUST read the complete documentation:
- ๐ INSTALLATION.md - Complete setup guide with proper command sequences
- ๐ HOW-TO.md - How to use the Quest system and communicate with agents
- ๐พ SAVE.md - Memory system and session persistence
- ๐ QUEST.md - Understanding the revolutionary Quest coordination
These guides contain essential information for proper usage. Do not skip them.
โก Quick Start
Installation
Option 1: Install from PyPI (Recommended)
# Install Acolytes package
pip install acolytes
# Initialize Acolytes system (copies all files to ~/.claude)
acolytes --init
# Navigate to YOUR project
cd /path/to/your/project
# Open Claude with safety bypass (โ ๏ธ hooks protect against malicious commands)
claude --dangerously-skip-permissions -c
# Inside Claude, run setup
/setup
Option 2: Install from Source
# Clone repository
git clone https://github.com/unmasSk/Acolytes.git
cd Acolytes
# Install package
pip install -e .
# Initialize Acolytes system
acolytes --init
# Navigate to YOUR project
cd /path/to/your/project
# Open Claude with safety bypass (โ ๏ธ hooks protect against malicious commands)
claude --dangerously-skip-permissions -c
# Inside Claude, run setup
/setup
Available Commands
| Command | Description | Agent Integration |
|---|---|---|
/setup |
Integrates Acolytes into your project (new or existing) - 6-phase analysis | 5 setup agents + Acolytes creation |
/commit |
Smart commits with auto-versioning, changelog, and git tagging | @docs.specialist + bump2version |
/pr |
Create pull request with comprehensive analysis | @ops.git + review agents |
/acolytes |
Process agent coordination (IN DEVELOPMENT) | Quest system coordinator |
/save |
Save current session to SQLite database | Session persistence |
Claude auto-selects the right agent based on context:
- USER> "Optimize my API endpoints" โ Claude automatically invokes
@backend.pythonor@backend.nodejs - USER> "The authentication is broken" โ Claude knows to invoke
@service.auth - USER> "Add payment processing to my app" โ Claude orchestrates
@business.payment+@database.postgres+@backend.api
Or you can explicitly request an agent:
- USER> "Use @database.postgres to fix the indexing issues" โ Claude directs task to specified agent
- USER> "Ask @coordinator.security about compliance requirements" โ Claude consults the security coordinator
๐๏ธ Revolutionary Architecture
Main Claude Session (Orchestrator)
โ
โโโ ๐ GLOBAL AGENTS (58) - ~/.claude/agents/
โ โโโ ๐ป Backend & Frontend Engineers
โ โโโ ๐๏ธ Coordinators: Strategic architects for complex decisions
โ โโโ ๐พ Database Experts: All major databases + vector stores
โ โโโ โ๏ธ DevOps & Operations: CI/CD, monitoring, performance
โ โโโ ๐ผ Business Systems: Payments, billing, subscriptions
โ โโโ ๐ Analysis & Audit: Security, compliance, data analysis
โ โโโ ๐ง System Agents: Setup, planning
โ
โโโ ๐ PROJECT ACOLYTES - project/.claude/agents/
โ โโโ acolyte.auth (YOUR authentication module)
โ โโโ acolyte.api (YOUR API endpoints)
โ โโโ [Auto-created for each detected module]
โ
โโโ ๐๏ธ PERSISTENT MEMORY (SQLite + MCP)
โโโ Session Memory: Jobs system groups Claude sessions
โโโ Acolyte Memory: 14 types per project Acolyte
โโโ Full audit trail of all operations
๐๏ธ Persistent Memory System
SQLite Database (8 Active Tables)
agents_catalog- Directory of all 60 agents with routing rulesagents_memory- Deep knowledge storage for each agent/modulesessions- Conversation history with context preservationmessages- Individual message tracking with metadatatool_logs- Execution history for optimizationtodos- Task management synced with Claudeacolyte_quests- Quest coordination dataacolyte_status_changes- Agent status and communication logs
In Development: agent_health - Agent monitoring and performance metrics
14 Agent Memory Types
knowledge- Core understanding: purpose, features, architecture, TODOsstructure- Code organization: files, classes, functions, APIspatterns- Best practices: conventions, design patterns, anti-patternsinterfaces- Module exports: public APIs, events, contractsdependencies- Connections: internal/external deps, servicesschemas- Data models: entities, validation, transformationsquality- Code health: tests, coverage, security analysisoperations- DevOps: deployment, monitoring, CI/CD, migrationscontext- Business logic: decisions, history, roadmapdomain- Specialized: ML models, GraphQL, i18nsecurity- Security profile: permissions, compliance, vulnerabilitieserrors- Error handling: common failures, recovery proceduresperformance- Optimization: bottlenecks, caching, scalinghistory- Recent interactions: consultations, implementations
MCP Server Integration
Required MCPs:
mcp-code-index: # Fast code search and indexing
mcp-server-fetch: # External API interactions
sequential-thinking: # Complex reasoning chains
playwright: # Browser automation and testing
context7: # Advanced context management
Optional MCPs:
mcp-server-sqlite: # Database operations (if needed)
mcp-server-git: # Git operations (if needed)
n8n-mcp: # Workflow automation
21st-dev_magic: # UI/UX enhancements
๐ Real-World Usage Examples
Example 1: Authentication System (Automatic Orchestration)
USER> "Implement OAuth authentication with Google and GitHub"
Claude automatically orchestrates:
@coordinator.securityโ Recommends OAuth2 + JWT hybrid approach@service.authโ Implements OAuth flow with passport.js@database.postgresโ Creates users, sessions, oauth_providers tables@backend.nodejsโ Integrates middleware and endpoints@frontend.reactโ Builds login components with provider buttons
Result: Complete OAuth system in one request, all coordinated automatically
Example 2: Performance Optimization
Example 3: Complex Migration (Multi-Agent Coordination)
USER> "Migrate from MongoDB to PostgreSQL"
Coordinated execution:
@coordinator.migrationโ Creates migration strategy@database.mongodb+@database.postgresโ Schema mapping- Data type mapping coordinated automatically
@backend.nodejsโ Updates all queries and models@ops.monitoringโ Sets up migration monitoring- Rollback plan stored in SQLite for safety
All decisions preserved in Jobs system for future reference
๐บ๏ธ Roadmap to Revolution
Current Version: v1.0.7 โจ โ Target Version: v2.0.0 ๐
๐ฏ 8-Phase Evolution (10 Months)
|
๐ญ Phase 1 v2.0.0 8 weeks Quest System Revolution Multi-agent coordination, stateful communication, turn-based orchestration |
๐ Phase 2 v2.1.0 2 weeks Dashboard & Control Center Real-time agent monitoring, Quest visualization, performance metrics |
๐ Phase 3 v2.2.0 3 weeks Templates & Patterns 8 specialized templates: E-commerce, SaaS, API, Mobile, ML, CMS |
๐ฆ Phase 4 v2.3.0 2 weeks Export/Import & Portability Configuration portability, backup/restore, team sharing |
๐ Phase 5 v2.4.0 2 weeks Auto-Update & Intelligence Zero-downtime updates, smart rollouts, community agents |
๐ง Phase 6 v2.5.0 3 weeks Knowledge Management Cross-project learning, pattern recognition, collective intelligence |
๐ข Phase 7 v2.6.0 4 weeks Enterprise Features Code review automation, notifications, achievements, RBAC |
๐ Phase 8 v3.0.0 4 weeks Universal AI Platform Semantic routing, enhanced parallel spawning, universal MCP, multi-LLM support |
๐ฏ What's Coming Next
๐ฅ Priority 1 - Dashboard Revolution (v2.1.0)
/acolytes --dashboard # Real-time command center with live agent monitoring
- ๐ Real-time metrics - Performance, success rates, agent health
- ๐ฏ Quest visualization - Live coordination system monitoring
- ๐ฏ Agent status grid - All 60 agents at a glance
- โก <500ms rendering - Lightning-fast dashboard experience
๐ The V2.0.0 Vision:
- Stateful multi-agent orchestration - First-ever persistent agent coordination
- Zero context loss - Perfect memory continuity across sessions
- Turn-based communication - Conflict-free agent collaboration
- Autonomous task completion - Agents work together without human intervention
"From Revolutionary v1.0.7 to Legendary v2.0.0 - The Quest System Era"
๐ Why Acolytes for Claude Code is Revolutionary
Enterprise-Grade Multi-Agent Coordination
No other system provides seamless cross-agent coordination through persistent SQLite database communication. This enables zero information loss during agent handoffs and perfect task continuity.
Enterprise-Grade Architecture
Unlike simple prompt templates, Acolytes for Claude Code is a complete development ecosystem with persistent memory, intelligent routing, and cross-agent coordination that scales with your project complexity.
Production-Ready Command System
With commands like /todo, /acolytes, /save, and /mcp, Acolytes for Claude Code provides a complete workflow management system that bridges sessions and maintains project continuity.
๐ฏ Acolytes for Claude Code vs Standard Claude Code
| Feature | Standard Claude Code | Acolytes for Claude Code |
|---|---|---|
| Agents | Single AI assistant | 60 agents (55 specialized + 5 setup) + project Acolytes |
| Memory | Session-only context | Persistent SQLite + cross-session Jobs |
| Coordination | Manual task switching | Automatic Quest system with handoffs |
| Agent Selection | User must specify | Auto-routing based on context |
| Setup | Manual configuration | Auto-detection + 6-phase analysis |
| Project Learning | Starts from zero | Builds cumulative module knowledge |
| Error Recovery | Manual intervention | Automatic cross-agent coordination |
๐ Issues & Bug Reports
Found a bug or have an issue? Please report it at:
https://github.com/unmasSk/Acolytes/issues
Your feedback helps improve Acolytes for everyone!
๐ Documentation
Core System
- Agent Catalog - All 60 agents with capabilities
- Agent Routing Rules - 17-rule disambiguation system
Commands
- Setup Command - 6-phase project initialization
- Commit Command - Smart commits with auto-versioning
- PR Command - Pull request automation
- Acolytes Command - Process coordination tasks (IN DEVELOPMENT)
- Save Command - Session persistence
Templates & Resources
- CLAUDE.md Template - Main project configuration
- Acolytes Template - Acolyte agent creation
- Architecture Template - System design docs
- Infrastructure Template - DevOps setup
- Roadmap Template - Project planning
- Tech Stack Template - Technology choices
- Vision Template - Project goals & mission
๐ Why Developers Choose Acolytes
๐ฏ Real Impact, Real Numbers
โก 26x faster API optimization (2.3s โ 87ms)
๐ 50x faster code search with MCP code-index
๐ฏ Always up-to-date agents with Context7
๐ง 14 memory types per project Acolyte (never forget anything)
๐ค Up to 10 specialists working in parallel
โพ๏ธ Infinite context through Jobs system
๐ฉ Zero coordination overhead with Quest System
๐ Game-Changing Innovations
You used to: Write prompts, copy code, lose context, start over
Now you: Give one command, watch up to 10 specialists orchestrate the solution
You used to: Manually coordinate between frontend and backend
Now: Quest System automatically handles cross-domain coordination
You used to: Explain your project every new session
Now: Your project has a living, growing memory
๐ฌ What Developers Say
"It's like having a senior dev team that never sleeps, never forgets, and never needs explanations twice."
"Quest System changed everything. My agents coordinate like never before."
"First time I've seen AI actually understand my entire codebase."
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
Free for commercial and personal use.
โญ The Future is Here
๐ฏ One request. Up to 10 specialists coordinated. Zero overhead.
Imagine typing "implement authentication" and watching as:
- ๐ Security architects design the system
- ๐๏ธ Database experts create the schema
- โ๏ธ Backend engineers write the logic
- ๐จ Frontend developers build the UI
- ๐ฉ All coordinating through Quest System, automatically
โ No more context switching.
โ No more manual handoffs.
โ No more starting from scratch.
Every decision, every piece of knowledge, every solution - preserved forever in your project's neural memory. ๐ง
This isn't just an upgrade to Claude Code.
This is the emergence of autonomous development intelligence. ๐ค
โจ Your code doesn't just get written.
๐ญ It gets orchestrated.
pip install acolytes
๐ Welcome to the revolution. โพ๏ธ
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file acolytes-2.1.2.tar.gz.
File metadata
- Download URL: acolytes-2.1.2.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0853d6a6ed1903a0f4aa6cf31a5e2f7bab7b951b59c5a2a583927db8f2493312
|
|
| MD5 |
693a0cb83b3c7d9eb4ee33716ab87e76
|
|
| BLAKE2b-256 |
d90868adc7acc490fb43814ae843d026577eb7cd46563bbf7fd9f88a70232490
|
File details
Details for the file acolytes-2.1.2-py3-none-any.whl.
File metadata
- Download URL: acolytes-2.1.2-py3-none-any.whl
- Upload date:
- Size: 1.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dff091bb00bd361131c09e14a60f50582843670e3cf7cce3e918b4ea7aac46f
|
|
| MD5 |
79291f8e61871071b356301cb00f6c57
|
|
| BLAKE2b-256 |
5c833350246fee93b5b062223b9f03c746d302bea31bf11cdbc933cd683250cb
|