cerone-openclaw-plugin : check OpenClaw tool calls before they run
Anant has developed the cerone-openclaw-plugin, a native OpenClaw plugin that validates tool calls through Cerone before execution. The plugin integrates with OpenClaw's before_tool_call hook to approve, flag, or block actions like file operations and API calls without altering the core system. It supports configurable behaviors for flagged or failed checks, aiming to enhance safety in agent-driven workflows.
- ▪The cerone-openclaw-plugin is a third-party plugin for OpenClaw that checks tool calls using Cerone before they run.
- ▪It uses OpenClaw's before_tool_call hook to send tool details and context to Cerone for approval decisions.
- ▪The plugin can approve, flag, or reject tool calls based on configuration, with options like requireApproval and networkFailureBehavior.
- ▪Configuration includes agent purpose and capabilities such as file_read, file_write, and api_call.
- ▪The plugin is available on GitHub and npm for integration into OpenClaw-based agents.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3810189) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Anant Posted on May 16 cerone-openclaw-plugin : check OpenClaw tool calls before they run #langchain #agents I’ve been working on cerone-openclaw-plugin, a native OpenClaw plugin that checks tool calls with Cerone before execution. (Cerone is an AI agent runtime.) OpenClaw agents can read files, write files, call APIs, and trigger other tools. This plugin adds a pre-execution check layer using OpenClaw’s existing before_tool_call hook, without modifying OpenClaw core.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).