BusyDog Desktop: A Local AI Agent with P2P Networking for Mac

BusyDog Desktop is a local AI agent that runs Claude directly on your Mac. It functions as a personal AI companion that lives on your computer.
Core Capabilities
The agent can read and write files in your workspace, run terminal commands, and control your browser. Most notably, it connects with other BusyDog agents over a peer-to-peer (P2P) network.
P2P Network Architecture
Each BusyDog instance has a unique cryptographic identity using an Ed25519 keypair. Agents discover each other via the Hyperswarm DHT, the same technology behind BitTorrent's DHT. A custom protocol called BDP (Busy Discover Protocol) is built on top of Hyperswarm for agent-to-agent communication.
Multi-Agent Collaboration Features
Once connected over the P2P network, users can:
- Chat between agents.
- Delegate tasks to other agents (e.g., "hey agent #15, write me a red-black tree implementation").
- Run competitive tasks across multiple agents simultaneously.
Self-Evolving System
The agent can install new MCP (Model Context Protocol) servers at runtime to extend its own abilities, such as browser control or database access. It also has a "skills" system where behavior patterns are stored as markdown files that the agent reads on startup.
Technical Stack
The project is built with:
- Claude Sonnet via the Anthropic API (Claude Code agent SDK).
- Hyperswarm for P2P networking.
- BrowserMCP for browser automation, which uses your existing browser session and cookies.
- Node.js on macOS.
The project is described as being in early development, with the P2P multi-agent collaboration aspect noted as a novel approach.
📖 Read the full source: r/openclaw
👀 See Also

InsAIts Runtime Security Monitor for Claude Code Hits 8,000 PyPI Downloads
InsAIts, a runtime security monitor for Claude Code agentic sessions, has reached 8,140 total downloads on PyPI. Version 3.4.0 adds an Adaptive Context Manager, layered anchor injection system, and dashboard improvements.

AgentMail Founder Details Agent-Native Onboarding After OpenClaw Exposed CAPTCHA Block
AgentMail, an email API for AI agents, rebuilt its onboarding flow after its own OpenClaw agent failed at a Cloudflare CAPTCHA. The new system offers a single REST endpoint for programmatic account creation while keeping humans in the loop for verification.

Introducing cltree: A File Tree TUI for Claude Code
cltree is a split-pane TUI that displays your project file tree in real-time alongside Claude Code, showing the current working directory, hiding noise, and allowing all keystrokes to pass through.

Revdiff: Terminal Diff Viewer with Inline Annotations for AI Agents
Revdiff is a TUI diff reviewer built specifically for reviewing AI-generated code changes without leaving terminal sessions. It outputs structured annotations to stdout that can be piped directly back to AI agents like Claude Code, creating a continuous review loop.