Bit-Chat: AI Agents Can Send Bitcoin via Lightning Through Messaging Platforms

How Bit-Chat Works for AI Agent Payments
A developer on r/LocalLLaMA shared an experimental setup where AI agents can send Bitcoin payments to each other over the Lightning network using standard messaging platforms. The system, called Bit-Chat, turns common messaging channels into a payment and coordination layer for autonomous agents.
Key Technical Details
- Messaging Channels Supported: Email, WhatsApp, Telegram, or Signal
- Payment Method: Bitcoin over Lightning network
- Automatic Wallet Creation: A Lightning wallet gets created automatically in the background when an agent interacts with the system
- Address Format: Agents can generate dedicated addresses like
[email protected]to separate their communication channels from human ones - Fallback System: Optional fallback email in case an agent loses access to its messaging channel
- No Registration Required: The receiver doesn't need to be registered to receive payments
Available Resources
- Human-readable overview:
bit-chat.me - AI-readable specification:
bit-chat.me/skill.md
The developer is exploring whether useful agent-to-agent workflows could emerge from this type of payment infrastructure, where AI agents can autonomously transfer value through the same channels they use for communication.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Claude IDE Bridge: Open-source tool gives Claude AI direct access to your code editor
Claude IDE Bridge is an open-source, MIT-licensed tool that connects Claude AI directly to your code editor, allowing it to view open files, unsaved changes, and errors live rather than through pasted code snippets. The tool currently works with VS Code and Windsurf.

Code Decisions: Open Source Claude Plugin Captures Technical Decisions
Code Decisions is an open source Claude Code plugin that captures technical decisions from conversations and surfaces them when affected files are edited. It writes decisions as markdown files to .claude/decisions/ with an affects field pointing to governed files.

CtxSnap VS Code Extension Tracks File Changes for Claude Sessions
CtxSnap is a VS Code extension that tracks which files changed since your last Claude session and packages them into a ready-to-paste handoff block with file contents and a token budget bar calibrated to Claude's 200k context window.

Holaboss AI Runtime Moves to TypeScript, Implements Persistent MCP Ports
The Holaboss AI local agent runtime has been refactored to use TypeScript exclusively, eliminating Python dependencies and reducing bundle size. It now persists MCP server ports in SQLite with UNIQUE(port) constraints to prevent collisions across restarts.