OmniNode is an open-source platform for building production-grade AI agent systems. It provides a structured four-node architecture (Effect, Compute, Reducer, Orchestrator), a typed event bus, memory persistence, semantic retrieval, and a full plugin ecosystem for Claude Code agents.
| Repository | Description |
|---|---|
| omniclaude | Claude Code agent plugin — hooks, skills, routing, and agent registry |
| omnibase_core | Core Pydantic models, contracts, validators, and ONEX 4.0 base types |
| omnibase_infra | Infrastructure services: Kafka/Redpanda event bus, PostgreSQL, session management |
| omniintelligence | Intelligence nodes: intent classification, drift detection, semantic review |
| omnimemory | Memory persistence, semantic retrieval, intent graphs, and embedding storage |
| omnibase_spi | Service provider interface protocols for pluggable backends |
| omnidash | Real-time observability dashboard for agents, patterns, and code analysis |
| onex_change_control | Drift detection, schema governance, and cross-repo enforcement tooling |
The fastest way to get started is with the omniclaude plugin for Claude Code:
This gets you the full agent routing system, skill library, and ONEX node patterns running locally in minutes.
┌────────────────────────────────────────────────────┐
│ OmniNode Platform │
│ │
│ omniclaude ← Claude Code agent plugin │
│ omnibase_core ← Typed models & contracts │
│ omnibase_infra ← Kafka + Postgres infra │
│ omniintelligence ← Intent, drift, review │
│ omnimemory ← Semantic memory & recall │
│ omnibase_spi ← Protocol interfaces │
│ omnidash ← Observability dashboard │
└────────────────────────────────────────────────────┘
All nodes follow the ONEX 4-node pattern: Effect (I/O) → Compute (transform) → Reducer (aggregate) → Orchestrator (coordinate).