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

Heddle: Trust Enforcement and Audit Logging for Claude Desktop MCP Connections
Heddle is an open-source tool that adds trust tiers, access controls, and audit logging to Claude Desktop's MCP connections, allowing secure management of multiple services through a single interface with six starter packs included.

vllm-mlx fork adds tool calling and prompt cache for local AI coding agents
A developer has modified vllm-mlx to fix tool calling issues and add prompt caching, reducing TTFT from 28s to 0.3s for OpenClaw on Apple Silicon. The fork supports Qwen3-Coder-Next at 65 tok/s on M3 Ultra with working function calling.

TailClaude: Open Source Web UI for Accessing Claude Code Sessions from Mobile and Browser
TailClaude is an open source web UI that lets you access and continue Claude Code sessions from your phone or any browser in under a minute using Tailscale. The project was built with Claude Code assistance for scaffolding, SSE streaming backend, mobile-first chat UI, and QR code integration.

Zikra: Self-Hosted MCP Memory Server for Claude Code, Cursor, and Codex
Zikra is a self-hosted MCP memory server that automatically saves every decision, error, and requirement when Claude Code sessions end via a Stop hook, creating a shared memory pool accessible across tools and team members.