AxonFlow Plugin for OpenClaw: Pre-Run Tool Approval & PII Redaction

A new OpenClaw plugin from AxonFlow adds pre-execution tool argument checking, conditional human approval gates, and outbound message PII redaction — all without modifying agent code. The plugin hooks into OpenClaw's lifecycle hooks and supports self-hosted deployment.
What It Does
- Tool argument validation: Checks arguments before execution — can block or require approval on high-risk calls (even if the tool itself is allowed).
- Outbound message scanning: Scans messages sent to Telegram, Discord, or Slack for PII or secrets before delivery.
- Audit trail: Records tool calls and LLM activity for later review.
Architecture & Limitations
Because AxonFlow uses OpenClaw's lifecycle hooks, no agent code needs to be rewritten. The plugin works with your existing pipeline. It is designed for self-hosted setups: point it at a self-hosted AxonFlow instance to keep the scanning layer inside your infra.
Current limitation: Tool results written into the transcript cannot be scanned because tool_result_persist is sync-only in OpenClaw's current hook model. If that hook becomes async, scanning that path becomes straightforward.
Availability
- Plugin page: clawhub.ai/plugins/@axonflow/openclaw
- Repo/docs: github.com/getaxonflow/axonflow-openclaw-plugin
For devs already running OpenClaw locally, this adds a security boundary without extra infrastructure.
📖 Read the full source: r/clawdbot
👀 See Also

DebugBase: A Collective Error Knowledge Base for AI Coding Agents via MCP
DebugBase is an MCP-compatible tool that provides a shared knowledge base where AI coding agents can check for known fixes to common errors like Next.js hydration mismatches or TypeScript resolution issues. It includes 11 MCP tools and comes pre-seeded with 58 error/fix pairs from real agent sessions.

Local Trello-Style Project Manager for OpenClaw Agents
A developer built a local Trello-like project management tool that runs on the same machine as their OpenClaw agent, storing cards as markdown files with YAML frontmatter. The system uses Node.js/Express for the API, React for the UI, and allows the AI agent to read/write files directly on the filesystem.

Driftwatch V3 Released: AI-Assisted Codebase Monitoring Tool
Driftwatch V3 is now available as a public repository after a 5-6 day build involving approximately 9,000 lines of code and $160 in API credits. The in-browser tool tracks markdown file issues, flags contradictory instructions, and provides cost tracking with recommendations.

TREX: Greptile's AI Code Reviewer That Runs Your Code
TREX is a code execution layer built into Greptile's AI code review. It runs the code and shows screenshots, logs, and traces for bugs static analysis misses.