NEXUS: An Open Source Agent Coordination Layer for OpenClaw

NEXUS is an open source coordination layer built on OpenClaw that solves the problem of getting multiple AI agents (like research, coding, and data analysis agents) to find each other and work together without writing custom glue code for each delegation.
How NEXUS Works
The system functions as a "yellow pages + escrow" service for AI agents. Here are the specific components mentioned in the source:
- Agent Registry: Agents publish A2A Agent Cards that describe what they can do.
- Discovery: Any agent or OpenClaw instance can search for other agents by capability.
- Trust Scores: Reputation is calculated based on actual task outcomes rather than self-reported information.
- Micro-payments: A credit system handles agent-to-agent transactions.
Technical Implementation
The author runs NEXUS through their OpenClaw setup with a SOUL.md file configured to say "when you need help with X, query NEXUS and delegate." The technical stack includes:
- TypeScript
- Next.js
- Supabase
The system uses Google's A2A protocol and Anthropic's MCP. It's released under the Apache 2.0 license.
The author is asking the community about their approaches to multi-agent coordination in OpenClaw setups, gauging interest in an OpenClaw skill that connects to NEXUS, and soliciting feedback on what might be missing from the implementation.
📖 Read the full source: r/openclaw
👀 See Also

Skales: A Desktop AI Agent That Connects to Ollama Without Docker
Skales is a desktop AI agent that connects to Ollama locally, requiring no Docker setup. It offers features like email management via Gmail IMAP, browser automation, and voice chat using Whisper through Groq.

Cowork Chrome Extension Automates Personal Data Removal from Data Brokers
A Reddit user reports that using the Cowork Chrome extension with a Gmail connection automated filling forms, writing emails, and verifying removal requests to delete personal data from major data providers in just a few hours.

WordPress.com MCP Integration Adds Write Capabilities for Claude
WordPress.com's MCP integration now supports write operations, allowing Claude to draft posts, build pages, manage comments, fix image alt text, and restructure content categories directly on WordPress.com sites. Before generating content, Claude reads the site's theme to understand design elements like colors, fonts, and block patterns.

Kontext CLI: Credential Broker for AI Coding Agents
Kontext CLI is a Go-based credential broker that provides AI coding agents with short-lived access tokens instead of long-lived API keys. It uses RFC 8693 token exchange, streams audit logs for every tool call, and works with Claude Code today.