This repository contains the unified module system for the AI Agent Ecosystem, providing a centralized registry and management system for all agents across the organization.
- Modular Architecture: Pluggable modules for different agent categories
- Central Registry: Unified management of all agent modules
- Cross-Repo Integration: References agents from all repositories
- TypeScript Support: Modern TypeScript implementation
- Core: Base interfaces and registry
- Agents: Comprehensive list of all agents across repos
import { moduleRegistry } from './src/modules/core/registry';
// List all agents
const agents = await moduleRegistry.executeTask('agents', 'list');
// Get agents by category
const syncAgents = await moduleRegistry.executeTask('agents', 'getByCategory', { category: 'sync' });This module system integrates agents from:
- agents
- auto_builder
- credentials
- infinity-xos
- industries
- vision_cortex
See src/modules/agents/index.ts for the full list.
- Clone the repo
npm installnpm run buildnpm start
MIT