Proximus is a production-grade, event-driven multi-agent AI system designed to autonomously plan, build, test, and ship software projects from high-level business ideas.
The system follows a microservices architecture with a Go-based core for high-performance orchestration and Python-based agents for AI reasoning.
%%{init: {'theme': 'base', 'themeVariables': { 'background': '#ffffff', 'primaryColor': '#f8fafc', 'primaryBorderColor': '#cbd5e1', 'primaryTextColor': '#0f172a', 'lineColor': '#475569', 'clusterBkg': '#ffffff', 'clusterBorder': '#cbd5e1', 'edgeLabelBackground': '#ffffff'}}}%%
flowchart TB
User(["User — Business Idea"]) -->|"HTTPS POST"| GW
subgraph GoBackend ["Go Core Services"]
GW["Gateway\nFiber HTTP · OAuth2 · JWT"]
Orch["Orchestrator\ngRPC · DAG Builder · Kafka Publisher"]
WS["WS-Hub\nWebSocket · Redis Pub/Sub"]
GW -->|"gRPC"| Orch
GW --> WS
end
Orch -->|"TaskMessage + llm_config"| Kafka
subgraph EventBus ["Apache Kafka"]
T["ai-org-tasks"]
R["ai-org-results"]
E["ai-org-events"]
end
Kafka --> Agents
subgraph Agents ["AI Agent Fleet (Python)"]
CEO["CEO · Nova Lite\nMarket Research & Scope"]
CTO["CTO · Nova Lite\nSystem Design & Tech Stack"]
ENG_FE["Engineer (FE) · Nova Lite\nFrontend Implementation"]
ENG_BE["Engineer (BE) · Nova Lite\nBackend Implementation"]
QA["QA · Nova Lite\nTesting & Bug Detection"]
OPS["DevOps · Nova Lite\nInfrastructure & CI/CD"]
FIN["Finance · Nova Micro\nBudgeting & Usage tracking"]
end
Agents -->|"Results"| R
Agents -->|"Events"| E
E --> WS
subgraph DataLayer ["Data & Storage Layer"]
DB["Postgres\nProject & Task State"]
Redis["Redis\nWebsocket PubSub & Cache"]
Qdrant["Qdrant\nSemantic Vector Memory"]
end
GoBackend --> DataLayer
Agents --> DataLayer
WS -->|"WebSocket"| Dash["Next.js Dashboard\nLive DAG & Agent Logs"]
The gateway is the single entry point for all external traffic.
- Authentication: Supports both local mode (no login) and SaaS mode (Google OAuth2 + RS256 JWT).
- Routing: Proxies requests to internal services and manages project/task resources.
- WebSockets: Integrated with
ws-hubto provide real-time updates to the dashboard.
The brain of the system orchestration.
- DAG Generation: Converts a high-level goal into a Directed Acyclic Graph (DAG) of tasks.
- Task Dispatch: Broadcasts tasks to Kafka with specialized LLM configurations per agent role.
- State Management: Tracks project progress and coordinates agent hand-offs.
Specialized Python workers that consume tasks from Kafka and execute them using LLMs.
- Multi-Provider Support: Backend support for Amazon Bedrock (Nova), OpenAI, Anthropic, and Google (Gemini).
- Tool Use: Agents can access shared tools (code execution, file system, web search) to perform their tasks.
- Sandboxing: Code execution is isolated using gVisor (
runsc) for production security.
Apache Kafka serves as the backbone for asynchronous communication.
ai-org-tasks: New tasks for agents.ai-org-results: Completed task data.ai-org-events: Real-time progress logs (streamed to UI via WebSockets).
A high-performance Rust service that routes tasks to the most efficient LLM or agent based on complexity and cost constraints.
- Submission: User submits a business idea via the Dashboard or TUI.
- Orchestration: The Go Orchestrator creates a multi-phase project plan (CEO → CTO → Engineers → QA → DevOps).
- Goal Definition: The CEO Agent researches the idea and produces a PRD (Product Requirements Document).
- Technical Design: The CTO Agent takes the PRD and defines the architecture, database schema, and technology stack.
- Implementation: Engineer Agents (FE/BE) write the actual source code based on the technical design.
- Quality Assurance: The QA Agent performs code review and executes tests.
- Deployment: The DevOps Agent generates infrastructure-as-code (Terraform/K8s) to deploy the project.
- Completion: The Orchestrator marks the project as complete, and the user is notified.
- Distributed Sagas: Ensures atomic cross-service agent state transitions.
- Distributed Tracing: Full visibility via OpenTelemetry (Go, Python, Rust) integrated with LangSmith.
- AST Validation: AI-generated code is validated using a Rust-based parser before execution.
- Egress Proxy: Restricts agent network access to an allowlist of permitted domains.