GoStaff: Go Rewrite of OpenClaw with 100x Memory Reduction

GoStaff is a complete Go rewrite of OpenClaw that reduces memory usage to approximately 17MB, about 100x less than the original implementation. It maintains full compatibility with existing OpenClaw plugins while adding native Go skill support and a simplified single-binary architecture.
Core Architecture
The system runs entirely from a single gostaff binary with zero microservices. All persistence—session history, ReAct memory, scheduled automations, user personas, and token usage tracking—is handled by Postgres. The ReAct agent loop (think → act → observe) supports multiple providers including Anthropic, OpenAI, Gemini, and OpenRouter with automatic fallbacks for 429/5xx errors.
OpenClaw Compatibility
GoStaff includes a built-in SDK shim (internal/skill/shim/host.mjs) that acts as a JavaScript host for OpenClaw plugins. It fully supports all 17 OpenClaw register* methods. Existing TypeScript/JavaScript/Python plugins can be dropped in and are invoked as tools via JSON-line subprocess IPC.
Three-Tier Skill System
- Tier 1 (Markdown): Simple
SKILL.mdfiles with YAML frontmatter where instructions are directly injected into the ReAct agent's system prompt. - Tier 2 (Native Go): Go source files compiled at startup via
go build -buildmode=pluginand registered as heavily optimized, callable tools. - Tier 3 (OpenClaw plugins): Full compatibility with existing OpenClaw plugin ecosystem.
Additional Features
The system includes an easy-to-use web UI and supports cron-based automations using standard RFC 5545 recurrence rules to schedule ReAct agent runs.
📖 Read the full source: r/openclaw
👀 See Also

Canopy: Terminal Dashboard for Managing Multiple Claude Code Agents
Canopy is an open source terminal UI that provides a single dashboard view for tracking multiple AI coding agents running across git worktrees. It shows agent states (running, idle, waiting for input, done, errored) and lets you jump into sessions or send input without fully switching.

Enhanced Claude Code Telegram Plugin Adds Voice, Stickers, Threading
A developer has released a fork of the official Claude Code Telegram plugin that adds voice message transcription via Whisper, sticker/GIF support, conversation threading, and emoji reactions. It's a drop-in replacement requiring only cloning, copying one file, and restarting.

Apideck CLI: A Low-Context Alternative to MCP for AI Agents
Apideck CLI is an AI-agent interface that uses ~80 tokens for its agent prompt instead of tens of thousands for tool schemas, addressing MCP's context window consumption problem. Benchmarks show MCP can cost 4 to 32× more tokens than CLI for identical operations.

Claude-Code v2.1.111 adds Opus 4.7 xhigh effort, /ultrareview, and PowerShell tool
Claude-Code v2.1.111 introduces the Opus 4.7 xhigh effort level between high and max, adds the /ultrareview command for cloud-based multi-agent code reviews, and begins rolling out PowerShell tool support on Windows. The update also includes interactive /effort controls, auto theme matching, and numerous bug fixes.