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

Swarm Leak Detector: Free Tool to Scan for Exposed API Keys in OpenClaw Configs
A developer released swarm-leak-detector, a zero-dependency MIT-licensed tool that scans for over 21 credential patterns (OpenAI, Anthropic, OpenRouter, Stripe, etc.) in plaintext JSON config files. Run it with npx swarm-leak-detector scan ~/.clawdbot/ to check for leaks in about 30 seconds.

ClawDeckX: Open-Sourced macOS-Style Web Platform for OpenClaw Agent Management
ClawDeckX is an open-source web platform for installing, configuring, and monitoring OpenClaw agents. It provides visual management tools, real-time monitoring, and supports 13 languages.

OpenJet v0.4: Zero-Config Local Coding Agent with llama.cpp Backend
OpenJet v0.4 is an open-source terminal coding agent for local LLMs that auto-detects hardware, configures llama.cpp, and provides a Claude Code-style workflow with no API keys.

Developer Built AI/ML Job Board Using Claude Code for Design and SEO
A developer created MOAIJobs.com, a free site curating AI/ML jobs from leading labs and companies with filtering by category, location, and salary. The site's design and technical SEO implementation were handled by Claude Code based on developer-provided references and explanations.