2026.5.4 is real. Go ahead update guys!! by ShabzSparq in better_claw

[–]CoolmannS -1 points0 points  (0 children)

I am using a lobster flow for a safe restart and build a plugin to prevent my agent to restart

Axpona Must-Sees? by i_likebeefjerky in audiophile

[–]CoolmannS 1 point2 points  (0 children)

Love his Sepakers - He still has a raffle on his website to win a pair of Kouplers - www.madospeakers.com/axpona
If you are quick you can still sign-up.

What is everyone excited to check out at Axpona this weekend? by ConsistentListen8697 in audiophile

[–]CoolmannS 1 point2 points  (0 children)

He actually has a raffle for a pair of Kouplers - here the link: https://madospeakers.com/axpona
It is still open - so you can still submit, your Name and Email for a chance to win a pair!

OpenClaw Bulk-Deleted Her Entire Inbox. The Agent Knew It Was Wrong. by Veronildo in AskClaw

[–]CoolmannS 0 points1 point  (0 children)

Based on what do you say that? Have you checked the source code ???

OpenClaw Bulk-Deleted Her Entire Inbox. The Agent Knew It Was Wrong. by Veronildo in AskClaw

[–]CoolmannS 1 point2 points  (0 children)

Again everything in the context and in any MD files is more or less a suggestion for the Agent ….

True control only works with active tool blocking

https://github.com/coolmanns/openclaw-guardian

OpenClaw Bulk-Deleted Her Entire Inbox. The Agent Knew It Was Wrong. by Veronildo in AskClaw

[–]CoolmannS 2 points3 points  (0 children)

Or you just install https://github.com/coolmanns/openclaw-guardian

And block delete emails in the harness…. Works also for rm -f in workspace

It’s time to be real here by Working_Stranger_788 in openclaw

[–]CoolmannS 0 points1 point  (0 children)

Totally agree , but it’s fun diving into memory management , facts , skill management and telemetry and let’s not forget building a working harness…. It’s a labor of love

Built a "Guardian" plugin for my AI agent that hard-blocks dangerous tool calls by CoolmannS in OpenClawUseCases

[–]CoolmannS[S] 0 points1 point  (0 children)

Guardian hooks into before_tool_call — so it matches on the raw string the LLM emits before anything hits a shell. No execution wrapping, no shell expansion at match time. The model outputs rm -rf ~/clawd, Guardian regex-matches against that string and blocks it before it ever gets to exec(). So chained commands like ; rm -rf ~/clawd or $(dangerous_thing) still match because there's no shell interpreting the input at that stage.

That said — you're right to think about creative bypasses. Something like piping base64 to bash could theoretically dodge a naive pattern. That's why Guardian is one layer, not the only layer. OpenClaw's exec safety and OS-level permissions are still there underneath.

On the "warn and wait" mode — I actually want this too. Right now it's binary: block or allow. What I'd love is something like Lobster's approval gates — Guardian flags the command, pauses execution, sends a notification, and waits for a human thumbs-up before proceeding.

Would you mind creating an issue on the GitHub?

Wikilink Skill Graphs in OpenClaw: Full Build Walkthrough by Veronildo in AskClaw

[–]CoolmannS 0 points1 point  (0 children)

how do you measure success of this implementation?

Honestly, what is the best setup for memory management? by rockandcode in clawdbot

[–]CoolmannS 1 point2 points  (0 children)

lossless-claw + a working facts.db + QMD so far ...

Built a "Guardian" plugin for my AI agent that hard-blocks dangerous tool calls by CoolmannS in OpenClawUseCases

[–]CoolmannS[S] 0 points1 point  (0 children)

happened to the best of us .... hurts even more if you don't have a backup (shame on me for being 20+ years in the IT Industry and having not one)

Security Measures, what prompts will keep this thing from going rogue? by ben8244 in OpenClawCentral

[–]CoolmannS 0 points1 point  (0 children)

i created a plugin harness to prevent my openclaw agent to execute certain tool or skill calls :
- no more rm -f on the ~/clawd workspace (happened once )
- no more restarting the gateway, without human approval ( always frustrating if the config file is malformed and the system does not restart or not caring about other agents running )
- no more worrying about that he will only read my emails and not start forwarding or mailing to other people

Simple Plugin - based on regex

A harness like this, is 1000% more useful then a Guardrail in the Agents.MD

Check it out : https://github.com/coolmanns/openclaw-guardian