Open-source Go port of Claude Code CLI released as claw-code-go

Developer /u/dolm09 has released claw-code-go, an open-source Go port of the Claude Code CLI based on recent leaks. The project contains almost 10,000 lines of code and produces a single self-contained executable binary.
Key Features
- Full CLI with TUI using bubbletea for terminal UI
- Multi-provider support: Anthropic, OpenAI-compatible endpoints, Bedrock
- MCP (Model Context Protocol) client
- OAuth + API key authentication flows
- Tool execution engine supporting bash, file read/write, search, and other operations
- Permissions and safety layer
- Conversation compaction
- Session persistence
Technical Details
The original Node.js implementation requires approximately 300MB when including dependencies. The Go port compiles to a single binary that can be cross-compiled for Linux/ARM architectures, enabling it to run on Raspberry Pi devices, VPS instances, and GitHub Actions runners without requiring a runtime environment.
The developer notes this portability matters for headless operation within other tooling. Current implementation status: the project builds and runs with core tools functional. Not all original features are ported—specifically, Anthropic-proprietary cloud infrastructure components were intentionally omitted. However, the core agentic loop, tool use functionality, and TUI are reported as solid.
Project Status and Contribution
The repository is available at github.com/daolmedo/claw-code-go. The developer welcomes pull requests and issues, particularly around the MCP implementation and permission model, which they note could benefit from additional review.
📖 Read the full source: r/openclaw
👀 See Also

Aura Research: Local tool compiles documents into AI-navigable wiki with persistent memory
Aura Research is an open-source tool that processes raw documents (PDFs, papers, notes, code, 60+ formats) into a structured markdown wiki with backlinked articles, concept pages, and a master index. It compresses everything into a .aura archive optimized for RAG retrieval and runs 100% locally with no data leaving your machine.

Automated Claude Code Pipeline Cuts Token Usage from 78k to 15k Per Feature
An open-source pipeline for Claude Code automates 12 phases including pre-check analysis of existing code, reducing token usage from ~78k to ~15k per feature. It offers three profiles (yolo, standard, paranoid) and replaces confidence scores with grep-based validation.
PullMD v2.4.1 Adds Native MCP Connector for claude.ai Web and Multi-User Auth
PullMD v2.4.1 now supports the claude.ai web custom connector dialog via OAuth 2.1 + PKCE-S256 and adds multi-user auth modes. Turn any URL into clean Markdown via self-hosted MCP.

Maestro v1.5.0 adds Claude Code support for multi-agent orchestration
Maestro v1.5.0, an open-source multi-agent orchestration platform, now runs as a native plugin on Claude Code in addition to Gemini CLI. The update includes deeper design planning, a 42-step orchestration backbone, agent capability enforcement, and security hardening.