Nexus: Open-Source AI-to-AI Protocol with Discovery, Trust, and Payments

Nexus is an open-source AI-to-AI protocol that provides a working system for agent-to-agent communication with discovery, trust, payments, and federation. Unlike existing frameworks like LangChain, CrewAI, or AutoGen that focus on agent-to-tool communication, Nexus addresses the gap where no protocol exists for AI agents to communicate directly with each other.
Core Problem and Solution
Current AI agent frameworks build agents that talk to tools, and MCP connects AI to external services, but there's no protocol for AI agents to talk to each other. For example, if a coding agent needs legal advice, it can't automatically find a legal agent, negotiate a price, send the query, verify the answer, and pay. Google announced A2A (Agent-to-Agent) as a spec, but it's just a PDF with no implementation or working code.
Nexus solves this with a five-layer architecture:
- Discovery: Agents register capabilities, consumers find them (like DNS)
- Trust: Reputation scoring after every interaction (like Certificate Authority)
- Protocol: Standardized request/response format (like HTTP)
- Routing: Find best/cheapest/fastest agent (like BGP)
- Federation: Multiple Nexus instances sync agent registries (like email servers)
Key Features
- Micropayments: Credit system with pay-per-request
- Multi-Agent Verification: Ask 3 agents, compare answers, score confidence
- Capability Schema: Formal description of what an agent can do
- Auth: Per-agent API keys with HMAC signing
How It Works
The workflow follows this pattern:
Consumer Agent Nexus Provider Agent
| | |
|-- "I need text_analysis" ->|
| |-- finds best agent ------->|
| |-- negotiates terms -------->|
| |-- forwards request -------->|
|<--- response + confidence --|
| |-- verifies (optional) ----->|
| |-- processes payment ------->|
|<-- result + sources -------|
| |-- updates trust score ----->|Current Implementation
There are 9 agents registered in the local Nexus network:
- Cortex: AI Agent OS (persistent agents, multi-agent workflows)
- DocBrain: Document management with OCR + AI chat
- Mnemonic: Memory-as-a-service for any AI app
- DeepResearch: Autonomous web research with report generation
- Sentinel: Security scanner (SQLi, XSS, 16 checks)
- CostControl: LLM API cost tracking and budgeting
- SafetyProxy: Prompt injection detection, PII filtering
- LogAnalyst: AI-powered log analysis and anomaly detection
- Echo Provider: Demo agent for testing
Technical Details
- Tech Stack: Python + FastAPI + SQLite (no heavy dependencies)
- Testing: 66 tests, all passing
- Deployment: Runs locally with Ollama (free, no API keys)
- License: MIT
Future Plans
- Federation with real remote instances
- Nexus SDK for other languages (TypeScript, Go)
- Agent marketplace (list your agent, set pricing, earn credits)
- Formal protocol spec (RFC-style document)
The project was built after analyzing 15,576 repos on GitHub to verify that nothing similar existed. All agents were built in 2 days and are open source.
📖 Read the full source: r/ClaudeAI
👀 See Also

OpenAlly: Local AI Assistant for Android with Phone Control
OpenAlly is an Android app that runs an AI assistant locally on your phone via an embedded Node.js process, with 51 built-in skills and phone control capabilities through Aster companion. It connects to 19+ messaging platforms and supports 18 model providers with your own API keys.

AI Token Monitor: macOS Tool Tracks Local Claude Usage and Cost
A developer built AI Token Monitor, a macOS menu bar app that reads local Claude session files to track token usage, model distribution, and cost equivalents without API keys. The open-source tool revealed 6.5M tokens ($4,924 at API pricing) over 35 days in one user's case.

pop-pay MCP server adds payment guardrails for Claude Code agents
pop-pay is an MCP server that lets Claude Code agents handle purchases without exposing credit card numbers. It uses CDP injection to place virtual card credentials directly into payment iframes, with Claude only receiving masked confirmation numbers.

Free macOS Menu Bar Monitor for Claude AI Usage Limits
A free, open-source macOS tool that displays Claude AI's session usage percentage, weekly limits, and reset countdowns directly in your menu bar. Installs with a single Homebrew command and piggybacks on existing Chrome sessions without storing data.