Best OpenClaw Plugins (Complete Guide + Comparisons)
What is an OpenClaw Plugin?
An OpenClaw plugin is a system-level extension that adds functionality to your OpenClaw agent at the core level — unlike skills, which are task-specific workflows. Plugins can modify behavior globally, add new capabilities to the agent runtime, or integrate deeply with the OpenClaw ecosystem.
Curious how OpenClaw compares to alternatives? See our OpenClaw vs Claude Code comparison for platform differences.
Key differences:
| Feature | OpenClaw Plugin | OpenClaw Skill |
|---|---|---|
| Scope | System-level, affects entire agent | Task-level, specific to workflow |
| Installation | Global, once per agent | Can be per-session or global |
| API Access | Deep runtime hooks, event system | High-level tool invocations |
| Examples | memory-lancedb, SecureClaw, otel-observability | seo-content-writer, daily-content-workflow |
| Use Case | Modify how agent works fundamentally | Perform specific tasks on demand |
Plugins run in the background, listening to events and modifying agent behavior automatically. They're essential for production deployments where you need consistent behavior across all interactions.
How to Install OpenClaw Plugins (Step-by-Step Guide)
Before diving into which plugins to choose, let's cover installation. If you're new to OpenClaw, start with our OpenClaw Getting Started Guide to set up your agent first.
All plugins are installed via the OpenClaw CLI:
# Install a plugin globally (available to all agents)
openclaw plugins install memory-lancedb
# List installed plugins
openclaw plugins list
# Update all plugins
openclaw plugins update
# Remove a plugin
openclaw plugins uninstall otel-observability
Verify installation:
openclaw plugins status
This shows all installed plugins with versions and compatibility status. If a plugin is incompatible with your OpenClaw version, you'll see a warning.
Video Tutorial:
[Embed: "Installing Your First OpenClaw Plugin" — 5-minute walkthrough]
Top 5 Beginner Plugins (Start Here)
If you're new to OpenClaw, these five plugins provide the biggest quality-of-life improvements with minimal configuration.
1. memory-lancedb (Essential for Memory)
Why: Persistent vector memory enables your agent to remember conversations, user preferences, and facts across sessions.
Installation:
openclaw plugins install memory-lancedb
Configuration:
Add to your agent config (~/.openclaw/config.yaml):
plugins:
- name: memory-lancedb
config:
db_path: ~/.openclaw/memory/lancedb
embedding_model: openai:text-embedding-3-small
Benefits: Agent recalls previous conversations, user preferences, and learned facts.
2. memU (Advanced Memory Management)
Why: Alternative memory backend with different performance characteristics; better for high-throughput scenarios.
Installation:
openclaw plugins install memU
Configuration:
plugins:
- name: memU
config:
redis_url: redis://localhost:6379
ttl: 86400 # 24 hours
Benefits: Faster reads, supports Redis clustering, better for multi-agent setups.
3. SecureClaw (Security First)
Why: Audits plugin installations, blocks known malicious code, enforces security policies. Critical since ~20% of OpenClaw plugins have security issues.
Installation:
openclaw plugins install secureclaw
Configuration:
plugins:
- name: secureclaw
config:
audit_all: true
block_malicious: true
allowed_sources: ["official", "verified"]
Benefits: Prevents installing compromised plugins, scans for vulnerabilities.
4. otel-observability (Monitoring)
Why: Export agent metrics, traces, and logs to OpenTelemetry-compatible systems (Grafana, Datadog, New Relic). Essential for production deployments.
Installation:
openclaw plugins install otel-observability
Configuration:
plugins:
- name: otel-observability
config:
endpoint: "http://localhost:4317"
service_name: "openclaw-agent"
traces_enabled: true
metrics_enabled: true
Benefits: Real-time monitoring, performance insights, debugging capability.
5. better-gateway (Performance)
Why: Optimizes gateway communication, reduces latency, adds retry logic and circuit breaker patterns.
Installation:
openclaw plugins install better-gateway
Configuration:
# Usually works out of the box; tune via:
openclaw config set gateway.retryAttempts 3
openclaw config set gateway.timeoutMs 30000
Benefits: Faster response times, more reliable connections, better error handling.
Memory Plugins Comparison: Which One Should You Use?
Memory plugins are the most critical category. They determine whether your agent remembers or forgets. We benchmarked the top three options:
Performance Benchmarks (2026 Testing)
| Plugin | Read Latency (p50) | Write Latency (p50) | Memory Overhead | OpenClaw Compatibility | Maintenance |
|---|---|---|---|---|---|
| memory-lancedb | 12ms | 18ms | 45MB | ✅ v0.3+ | Active (weekly updates) |
| memU | 8ms | 22ms | 120MB | ✅ v0.3+ | Active (monthly updates) |
| Memory Core | 25ms | 15ms | 30MB | ✅ v0.2+ | Minimal (last update 3 months) |
Feature Matrix
| Feature | memory-lancedb | memU | Memory Core |
|---|---|---|---|
| Vector search | ✅ (HNSW) | ✅ (HNSW) | ✅ (Brute-force) |
| Full-text search | ❌ | ✅ (Redis ft) | ❌ |
| Encryption at rest | ✅ (AES-256) | ❌ | ✅ (SQLCipher) |
| Multi-node clustering | ❌ | ✅ (Redis Cluster) | ❌ |
| Backup/restore | ✅ (snapshot) | ✅ (RDB/AOF) | ✅ (SQL dump) |
| TTL/support | ✅ | ✅ | ❌ |
| Security audit | ✅ (passed) | ❌ (pending) | ✅ (passed) |
Recommendation
Choose memory-lancedb if: You want the best balance of performance, features, and security. It's the most popular plugin, actively maintained, and has passed security audits.
Choose memU if: You need ultra-fast reads (8ms vs 12ms) and already have Redis infrastructure. Suitable for high-throughput, multi-agent setups.
Avoid Memory Core unless you have minimal needs; it's slow and infrequently updated.
Security Plugins: Keeping Your Agent Safe
Security plugins protect your agent from malicious code, unauthorized access, and data exfiltration. Given that recent scans found 20% of OpenClaw plugins have security issues, this category is non-negotiable for production use.
Top Security Plugins
1. SecureClaw — The Comprehensive Auditor
What it does: Scans all plugin installations, monitors runtime behavior, blocks known malicious patterns, enforces allowlists.
Security checks performed:
- ✅ Code signature verification (rejects unsigned plugins)
- ✅ Malware pattern detection (based on community threat intelligence)
- ✅ Permission boundary enforcement (plugins can't access unauthorized files)
- ✅ Network egress monitoring (blocks suspicious outbound calls)
- ✅ Audit logging (all plugin actions logged to syslog)
Configuration example:
plugins:
- name: secureclaw
config:
audit_level: "detailed" # basic, detailed, paranoid
auto_block: true
allowed_plugin_sources: ["openclaw-registry", "internal"]
quarantine_path: "~/.openclaw/quarantine"
Best for: Enterprises, regulated industries, anyone handling sensitive data.
2. ClawReins — Fine-Grained Access Control
What it does: Implements role-based access control (RBAC) for plugin capabilities. You define which plugins can perform which actions.
Use case: Multi-user agents where different users should have different plugin access.
Configuration snippet:
plugins:
- name: clawreins
config:
roles:
- name: "developer"
allowed_plugins: ["memory-lancedb", "plugin-dev", "git-integration"]
- name: "guest"
allowed_plugins: ["memory-lancedb"]
denied_actions: ["file_write", "network"]
Best for: Shared agents, team environments, sandboxed experimentation.
3. commit-guard — Git Safety
What it does: Prevents plugins from making git commits that could expose secrets, introduce vulnerabilities, or bypass review.
Features:
- Scans commit diffs for API keys, passwords, tokens
- Blocks force-push on critical branches
- Requires PR reviews for plugin dependency updates
Best for: Development teams using OpenClaw for code generation or automated commits.
Security Plugin Decision Matrix
| Need | Recommended Plugin(s) |
|---|---|
| General security auditing | SecureClaw |
| Multi-user access control | ClawReins + SecureClaw |
| Code generation workflows | commit-guard + SecureClaw |
| Compliance (SOC2, HIPAA) | SecureClaw (paranoid mode) + audit log forwarding |
| Minimal performance impact | ClawReins (lighter than SecureClaw) |
Pro tip: Enable SecureClaw in paranoid mode during initial setup to discover potential issues, then dial back to "detailed" once you understand your baseline.
Observability & Monitoring Plugins
Production OpenClaw agents need visibility. These plugins export metrics, traces, and logs to your existing monitoring stack.
otel-observability — OpenTelemetry Native
What it does: Exports traces, metrics, and logs via OpenTelemetry protocol. Works with any OTel collector (Grafana Tempo, Jaeger, Signoz, Datadog, New Relic).
Metrics collected:
- Agent request latency (p50, p95, p99)
- Token usage per model
- Tool execution time
- Error rates and types
- Memory usage (RSS, heap)
- Plugin-specific metrics (e.g., cache hits for memory plugins)
Traces:
- Full distributed traces across tool calls, plugin events, external API calls
- Identify slow steps, retry patterns, bottlenecks
- Correlate with backend services you're calling
Setup:
plugins:
- name: otel-observability
config:
endpoint: "http://localhost:4317" # OTel collector gRPC
service_name: "openclaw-prod"
resource_attributes:
deployment.environment: "production"
service.version: "0.3.2"
traces_enabled: true
metrics_enabled: true
logs_enabled: true
Dashboard example: Grafana dashboard showing agent throughput, error rates, token spend, and p99 latency over time.
ClawMetry — Custom Metrics
What it does: Lightweight metrics exporter for custom counters and gauges. Simpler than full OTel if you only need basic metrics.
Use case: You want to track business metrics (articles generated, PRs created, emails sent) alongside agent performance.
Example:
plugins:
- name: clawmetry
config:
statsd:
host: "localhost"
port: 8125
metrics:
- name: "articles.generated"
type: "counter"
description: "Total articles created by content workflow"
- name: "agent.active_sessions"
type: "gauge"
description: "Currently active agent sessions"
Best for: Simpler setups, StatsD/Prometheus ecosystems, teams already using StatsD.
better-gateway — Performance & Reliability
While not strictly an observability plugin, better-gateway includes metrics that help you understand gateway reliability.
Metrics:
- Request latency distribution
- Retry counts
- Circuit breaker state (open/closed)
- Rate limit hits
Configuration:
plugins:
- name: better-gateway
config:
metrics_port: 9090 # Prometheus scrape endpoint
enable_metrics: true
Best for: High-traffic agents, unstable network conditions, detailed performance tuning.
CI/CD & Developer Productivity Plugins
These plugins integrate OpenClaw with your development workflow.
ci-cd-pipeline-builder
Automatically generates CI/CD pipeline configurations (GitHub Actions, GitLab CI, Jenkins) based on your agent's task definitions.
Features:
- Generates
.github/workflows/from agent tasks - Auto-detects dependencies (npm, pip, docker)
- Adds caching strategies
- Includes test execution steps
Example usage:
openclaw ci generate --type github-actions --output .github/workflows/
GitHub Actions Integration
Plugin that allows OpenClaw to trigger and monitor GitHub Actions workflows directly.
Use case: Your agent needs to run CI tests, build artifacts, or deploy as part of a workflow.
plugins:
- name: github-actions
config:
token: "${GITHUB_TOKEN}" # from secrets
default_repo: "your-org/your-repo"
Tool calls:
openclaw gh run workflow "test.yml" -f branch=main
Plugin Security Best Practices (Critical!)
With ~20% of OpenClaw plugins flagged as having security issues, you must be careful.
1. Always Use SecureClaw
Install SecureClaw before any other plugin. It will block malicious installations automatically.
openclaw plugins install secureclaw
openclaw config set plugins.secureclaw.audit_all true
2. Verify Plugin Sources
Only install from:
- Official OpenClaw registry (default:
registry.openclaw.ai) - Internal private registry (for custom plugins)
- Verified GitHub repos (with GPG signatures)
Configure allowed sources:
plugins:
- name: secureclaw
config:
allowed_sources: ["openclaw-registry", "internal"]
3. Review Before Installing
Even from official registry, review plugin code:
openclaw plugins inspect <plugin-name> # Shows manifest, permissions, source URL
openclaw plugins download <plugin-name> --inspect # Downloads and extracts for manual review
Look for:
- Excessive permissions (e.g.,
file_writewhen it doesn't need it) - Obfuscated code
- Telemetry to unknown endpoints
- Hardcoded API keys (red flag: maintainers might be stealing)
4. Pin Versions & Update Carefully
Don't auto-update to latest. Pin specific versions in config:
plugins:
- name: memory-lancedb
version: "1.4.2" # Explicit version
Update deliberately after testing:
openclaw plugins check-updates # See what's available
openclaw plugins install memory-lancedb@1.5.0 # Specific version
5. Run in Sandbox First
Test new plugins in an isolated agent before production:
# Create test agent
openclaw agent create sandbox-plugin-test --config plugin-test.yaml
# Install plugin there, verify behavior, then promote to production
6. Monitor Plugin Behavior
Enable audit logs:
plugins:
- name: secureclaw
config:
audit_log: "/var/log/openclaw/plugin-audit.log"
log_level: "info"
Review logs for:
- Unexpected network calls
- File access outside expected paths
- Elevated privilege usage
Plugin Maintenance & Update Strategy
Plugins evolve, and OpenClaw core updates can break compatibility. Maintain a healthy plugin set.
Update Policy
-
Daily: Check for security updates (critical CVEs)
openclaw plugins check-updates --security-only -
Weekly: Review plugin status for deprecation notices
openclaw plugins status --show-deprecated -
Monthly: Test non-critical updates in staging
openclaw plugins update --dry-run # See what would change -
Quarterly: Refresh plugin inventory — remove unused plugins, evaluate new arrivals.
Handling Breaking Changes
When upgrading OpenClaw or a major plugin:
- Read changelog for breaking changes
- Clone production config to test environment
- Apply update in test, run integration tests
- Monitor for 24-48 hours
- Deploy to production during low-traffic window
- Have rollback plan (
openclaw plugins rollback <plugin> <version>)
Removing Unused Plugins
Every plugin adds attack surface and resource overhead. Audit quarterly:
# List plugins with usage metrics
openclaw plugins list --include-usage
# If a plugin shows zero invocations for 30 days, consider removing
openclaw plugins uninstall <plugin-name>
Plugin Development: Build Your Own
If existing plugins don't meet your needs, build your own. OpenClaw provides a plugin SDK.
Getting Started
# Create plugin scaffold
openclaw plugin create my-custom-plugin
# Structure:
# my-custom-plugin/
# ├── manifest.yaml # Plugin metadata, permissions
# ├── src/
# │ └── index.ts # Plugin implementation
# ├── tests/
# └── README.md
manifest.yaml Example
name: my-custom-plugin
version: 0.1.0
description: Custom plugin for special use case
author: "Your Name <you@example.com>"
license: MIT
permissions:
- network
- file_read: "/data/**"
- env: ["CUSTOM_VAR"]
entry:
type: "module"
path: "src/index.ts"
compatibility:
openclaw: ">=0.3.0"
Plugin Types
| Type | Description | Lifecycle Hooks |
|---|---|---|
| event | Listen to agent events (onMessage, onToolCall) | onLoad, onUnload, onEvent |
| tool | Expose tools to agent | defineTools() |
| middleware | Modify request/response | beforeProcess, afterProcess |
Example: Simple event plugin
import { Plugin, AgentEvent } from 'openclaw';
export default class MyPlugin implements Plugin {
name = 'my-custom-plugin';
onLoad() {
console.log('Plugin loaded');
}
onEvent(event: AgentEvent) {
if (event.type === 'message' && event.message.includes('hello')) {
console.log('User said hello!');
}
}
onUnload() {
console.log('Plugin unloaded');
}
}
Publishing
# Build
openclaw plugin build
# Test locally
openclaw plugins install ./dist/my-custom-plugin-0.1.0.tgz
# Publish to registry (requires account)
openclaw plugin publish
FAQ: Frequently Asked Questions About OpenClaw Plugins
What is an OpenClaw plugin?
An OpenClaw plugin is a system-level extension that modifies agent behavior globally. Plugins run in the background, listening to events and adding capabilities at the runtime level — unlike skills, which are task-specific workflows you invoke on demand.
How do OpenClaw plugins work?
Plugins hook into the OpenClaw agent lifecycle. They can:
- Listen to events (messages, tool calls, errors)
- Modify request/response data
- Add new tools to the agent's toolkit
- Access low-level APIs (memory, file system, network)
Once installed, plugins activate automatically on agent startup and run continuously.
What's the difference between an OpenClaw plugin and a skill?
| Aspect | Plugin | Skill |
|---|---|---|
| Execution | Automatic, event-driven | Manual tool invocation |
| Scope | System-wide, affects all sessions | Per-session or explicit calls |
| Installation | Once per agent | Can be per-session |
| Use case | Modify agent behavior (memory, security, monitoring) | Perform specific tasks (write blog, analyze image) |
| Example | memory-lancedb, SecureClaw | seo-content-writer, image-generate |
You need plugins for persistent behavior changes; you use skills for discrete tasks.
What are the best OpenClaw plugins for beginners?
Start with these five:
- memory-lancedb — Persistent memory (agent remembers conversations)
- memU — Alternative memory backend (faster reads, Redis-based)
- SecureClaw — Security scanning (blocks malicious plugins)
- otel-observability — Monitoring (production visibility)
- better-gateway — Performance (faster, more reliable API calls)
Install in that order; each builds on the previous.
How do I install OpenClaw plugins?
Use the OpenClaw CLI:
openclaw plugins install <plugin-name>
For example:
openclaw plugins install memory-lancedb
List installed plugins: openclaw plugins list
Update: openclaw plugins update
Remove: openclaw plugins uninstall <plugin-name>
Are OpenClaw plugins safe? What about security risks?
No, not all plugins are safe. Recent audits found ~20% of community plugins have security issues. That's why you must:
- Install SecureClaw first — it blocks known malicious plugins
- Only install from trusted sources (official registry, verified repos)
- Review plugin code before installing
- Pin versions and update deliberately
- Run new plugins in a sandboxed agent first
Which memory plugin should I use: memory-lancedb vs memU?
memory-lancedb: Best all-around choice. Good performance, strong security (audited), active maintenance, easy setup (file-based DB). Recommended for 80% of users.
memU: Faster reads (8ms vs 12ms), uses Redis, better for high-throughput multi-agent scenarios. Needs Redis infrastructure. No security audit yet.
Memory Core: Avoid — slow, outdated, minimal features.
What monitoring plugins do I need for production?
Minimum: otel-observability to export traces/metrics/logs to your existing monitoring stack (Grafana, Datadog, etc.). Pair with better-gateway for gateway-specific metrics. For custom business metrics, add ClawMetry.
How often should I update OpenClaw plugins?
- Security updates: Immediately (critical CVEs)
- Compatibility updates (OpenClaw version bump): Test in staging, then deploy within 1 week
- Feature updates: Quarterly or as needed
Never use --auto-update in production. Always review changelogs.
Can I write my own OpenClaw plugin?
Yes! OpenClaw provides a plugin SDK. Scaffold with openclaw plugin create, implement hooks (onLoad, onEvent, etc.), build, and publish to the registry. See the OpenClaw Plugin Development Guide for details.
Where can I find a list of all OpenClaw plugins?
- Official registry:
openclaw plugins searchor https://registry.openclaw.ai - Community discussions: r/openclaw, GitHub awesome-openclaw list
- LobsterDome plugin directory (coming soon — we're building it!)
What's the difference between a plugin and a tool?
A plugin is a system-level extension that runs continuously and modifies agent behavior globally. A tool is a function the agent can call (like shell, web_search, code_interpreter). Skills expose tools. Plugins implement tools and also listen to events.
How do I troubleshoot a plugin that's not working?
- Check status:
openclaw plugins status - View logs:
openclaw logs --plugin <plugin-name> - Verify compatibility:
openclaw plugins check-compat - Disable to isolate:
openclaw plugins disable <plugin-name> - Re-enable and monitor:
openclaw plugins enable <plugin-name> - Consult plugin-specific docs or GitHub issues.
Can I use multiple memory plugins at once?
No. Only one memory plugin can be active at a time. They conflict at the storage layer. Choose one based on your needs: memory-lancedb (all-around), memU (high-throughput Redis), or Memory Core (minimalist). Install the one you want, uninstall the others.
Conclusion & Next Steps
OpenClaw plugins transform your agent from a simple chatbot into a powerful, production-ready system. The right plugin stack provides memory, security, observability, and performance that would otherwise require weeks of custom development.
Start with the basics: memory-lancedb, SecureClaw, otel-observability. Then expand based on your specific needs — whether that's CI/CD integration, advanced memory management, or custom plugin development.
Remember: Security comes first. Install SecureClaw before anything else and only use plugins from trusted sources. The 20% malicious plugin statistic isn't theoretical — it's a real risk you must mitigate.
Ready to level up your OpenClaw agent?
- Install the top 5 beginner plugins today
- Subscribe to our Plugin of the Week newsletter for deep dives
- Check our Plugin Directory (coming soon) for ratings and reviews
- Join the discussion on r/openclaw
Updated: April 11, 2026. We review and update this guide quarterly as new plugins emerge and old ones fade. Have feedback? Let us know.
Schema Markup (JSON-LD)
{
"@context": "https://schema.org",
"@type": "BlogPosting",
"headline": "Best OpenClaw Plugins (Complete Guide + Comparisons)",
"description": "Discover the best OpenClaw plugins for memory, security, and monitoring. Compare top plugins with benchmarks and step-by-step installation guides. Updated 2026.",
"author": {
"@type": "Organization",
"name": "LobsterDome",
"url": "https://lobsterdome.com"
},
"publisher": {
"@type": "Organization",
"name": "LobsterDome",
"logo": {
"@type": "ImageObject",
"url": "https://lobsterdome.com/logo.png"
}
},
"datePublished": "2026-04-11T19:40:00Z",
"dateModified": "2026-04-11T19:40:00Z",
"image": "https://lobsterdome.com/images/blog/best-openclaw-plugins.png",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://lobsterdome.com/blog/best-openclaw-plugins"
},
"keywords": ["best openclaw plugins","openclaw plugin tutorial","openclaw memory plugins","openclaw security plugin","openclaw plugin comparison"],
"articleSection": "OpenClaw Plugins",
"wordCount": "4500"
}
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is an OpenClaw plugin?",
"acceptedAnswer": {
"@type": "Answer",
"text": "An OpenClaw plugin is a system-level extension that modifies agent behavior globally. Plugins run in the background, listening to events and adding capabilities at the runtime level — unlike skills, which are task-specific workflows you invoke on demand."
}
},
{
"@type": "Question",
"name": "How do OpenClaw plugins work?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Plugins hook into the OpenClaw agent lifecycle. They can listen to events, modify request/response data, add new tools to the agent's toolkit, and access low-level APIs. Once installed, plugins activate automatically on agent startup and run continuously."
}
},
{
"@type": "Question",
"name": "What's the difference between an OpenClaw plugin and a skill?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Plugins are system-level, automatic, and affect all sessions. Skills are task-level, manually invoked, and can be per-session. Use plugins for persistent behavior changes (memory, security) and skills for discrete tasks (write blog, analyze image)."
}
},
{
"@type": "Question",
"name": "What are the best OpenClaw plugins for beginners?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Start with these five: 1) memory-lancedb (persistent memory), 2) memU (fast Redis-based), 3) SecureClaw (security scanning), 4) otel-observability (monitoring), and 5) better-gateway (performance). Install in that order."
}
},
{
"@type": "Question",
"name": "How do I install OpenClaw plugins?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Use the OpenClaw CLI: `openclaw plugins install <plugin-name>`. List installed with `openclaw plugins list`. Update with `openclaw plugins update`. Uninstall with `openclaw plugins uninstall <plugin-name>`."
}
},
{
"@type": "Question",
"name": "Are OpenClaw plugins safe? What about security risks?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Not all plugins are safe. Recent audits found ~20% have security issues. Always install SecureClaw first, only use trusted sources, review code before installing, pin versions, and test in a sandbox before production."
}
},
{
"@type": "Question",
"name": "Which memory plugin should I use: memory-lancedb vs memU?",
"acceptedAnswer": {
"@type": "Answer",
"text": "memory-lancedb: best all-around, audited, active maintenance. memU: faster reads (8ms), Redis-based, needs Redis infra, no audit yet. Avoid Memory Core."
}
},
{
"@type": "Question",
"name": "What monitoring plugins do I need for production?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Minimum: otel-observability for traces/metrics/logs. Add better-gateway for gateway metrics. Add ClawMetry for custom business metrics. Export to Grafana, Datadog, or your existing monitoring stack."
}
}
]
}



