Five OpenClaw plugins that address core production issues

A Reddit post from r/openclaw details five plugins that address specific production challenges when using the OpenClaw AI coding agent. The author notes that the default setup relies heavily on skills, which are injected into prompts on every run, increasing token usage without solving issues like routing, integrations, or observability. Plugins, which run as separate processes and expose tools only when needed, offer a solution.
Key Plugins and Their Functions
- Manifest: Adds a routing layer between OpenClaw and model providers. It classifies each request and sends it to the cheapest model capable of handling it, preventing simple tool calls from using expensive primary models.
- Composio: Handles integrations through an MCP server. It manages OAuth, token refresh cycles, and rate limits for connected apps like Slack, GitHub, or Gmail, with each integration running in isolation to prevent cascading failures.
- Hyperspell: Replaces the default memory system with a retrieval layer backed by a knowledge graph. It injects only relevant context before each step, keeping prompts smaller and improving recall across longer sessions.
- Foundry: Watches agent usage and turns repeated workflows into executable tools. It detects patterns in sessions and writes new tool definitions with defined inputs and outputs that persist across runs.
- Opik: Adds structured tracing to agent runs. It captures LLM calls, tool inputs/outputs, latency, and token usage as spans, providing a clear execution path to identify slowdowns or failures.
The author states that after adding these plugins, their OpenClaw setup felt much easier to run.
📖 Read the full source: r/openclaw
👀 See Also

InsForge: A Backend Semantic Layer for Claude Code Agents
InsForge exposes six backend primitives—authentication, Postgres database, S3-compatible storage, edge/serverless functions, model gateway, and site deployment—as structured components that Claude Code agents can inspect and configure via MCP instead of guessing API integrations.

cxt: A CLI/TUI Tool to Aggregate Code Files into One Clipboard Block for Claude
cxt aggregates entire directories and specific files into a single clipboard-ready block with XML tags and file paths, making it easier for Claude to understand your codebase context.

Open-source Gmail MCP server adds multi-account support and write access
An open-source MCP server enables Claude AI to connect to multiple Gmail accounts with full read/write capabilities, including archiving, labeling, and auto-unsubscribe functionality. It supports Gmail search syntax and can be deployed to Railway in 5 minutes or self-hosted.

Building CLIs for AI Agents: Design Principles from Google's gws CLI
Google's gws CLI demonstrates how to design command-line interfaces specifically for AI agents, prioritizing raw JSON payloads over human-friendly flags and implementing safety rails against hallucinations.