OpenBridge: Free Open-Source Remote Control for Claude Code via Slack/Discord

OpenBridge is a remote control interface for Claude Code that operates through Slack or Discord, allowing developers to manage AI coding sessions directly from their messaging platforms. The tool is designed as a workaround for OpenClaw API costs, providing an alternative interface without requiring additional API subscriptions.
Key Details
The tool is free, open-source, and runs locally. According to the source, it can be set up on a laptop or just as easily deployed on a VPS. It works with existing Claude Code and/or Codex subscriptions, meaning no extra API costs beyond what users already pay for those services.
The organizational structure follows a simple pattern: each project is represented as a channel, and each conversation within that project exists as a thread. This mirrors typical development workflow organization in team communication tools.
Technical Implementation
The source provides specific commands and resources:
- GitHub repository: https://github.com/shekit/openbridge
- Full video walkthrough: https://www.youtube.com/watch?v=HTGZughMCdU
- Run command:
npx openbridge-ai start
This type of tool is useful for developers who want to integrate AI coding assistance into their existing team communication workflows without managing separate interfaces or incurring additional API costs. By leveraging existing Claude Code/Codex subscriptions, it provides a practical bridge between messaging platforms and AI coding tools.
📖 Read the full source: r/ClaudeAI
👀 See Also

AI Trading Agent with Risk Guardrails for Educational Investing
A developer built an AI-powered trading assistant that connects Claude to a brokerage account with a risk engine between the AI and money. The system includes safety checks like blocking trades that exceed 50% of portfolio allocation, automatic shutdown at 3% daily loss, and a kill switch at 20% drawdown.

Mengram adds persistent memory to OpenClaw agents
Mengram is an open-source memory system that gives OpenClaw agents long-term memory across sessions, solving the problem of agents forgetting everything when they restart. It provides episodic, entity, and procedural memory with smart archival of outdated facts.

OpenClaw Claude Extension Updated to Use Agent SDK After Anthropic Billing Changes
An OpenClaw extension developer rewrote their Claude CLI integration to use the official claude-agent-sdk after Anthropic started detecting and reclassifying CLI usage as third-party app usage, which bills against a separate credit pool instead of Max plan limits. The SDK approach authenticates through existing Claude Code login and bills as regular Max plan usage.

RepoLens: Interactive Local Codebase Packer and Token Optimizer (TUI/CLI) in Go
RepoLens is a zero-dependency Go tool that packs repos into LLM context with a TUI file explorer, live token counter, comment stripping, secret scanner, and token-based file splitting.