arifOS: A $15 MCP Governance Kernel for OpenClaw Tool Security

✍️ OpenClawRadar📅 Published: March 1, 2026🔗 Source
arifOS: A $15 MCP Governance Kernel for OpenClaw Tool Security
Ad

What arifOS Does

arifOS is a tiny MCP governance kernel that sits between OpenClaw models and their tools/skills. The creator, Arif (a geologist, not a coder), built it to prevent AI agents from "free-styling" his tools without proper security checks.

Core Architecture

The system uses a simple metaphor: treat the LLM like a "brain in a jar," treat tools like "hands," and put a "$15 VPS in the middle as the bouncer." Every OpenClaw tool call goes through this chain: jar → MCP server → scoring → security check.

Security Implementation

Each tool call gets scored 000-999 and must pass 13 hard Floors including:

  • Amanah
  • Truth
  • Safety
  • Injection
  • Sovereignty

If a call fails any Floor, it returns "VOID" and nothing touches your filesystem, API, or database. The blocking logic is straightforward:

if verdict == "VOID":
    return "Action Blocked by Floor 1: Amanah"

As Arif puts it: "That's the whole joke: billion-dollar model, $15 lock."

Ad

Installation and Availability

Available via pip: pip install arifos

Repository: https://github.com/ariffazil/arifOS

The creator invites testing: "If you're running OpenClaw agents and want a paranoid bouncer in front of your skills, feel free to break this and tell me where it leaks."

Development Context

Arif notes that all Python code was written by AI agents, and he doesn't "even know how to spell phython"—highlighting the paradox of non-coders building security tools with AI assistance.

📖 Read the full source: r/openclaw

Ad

👀 See Also

OpenClaw Slack Security: API Key Exposure Risks and Fixes
Security

OpenClaw Slack Security: API Key Exposure Risks and Fixes

OpenClaw Slack deployments can expose API keys through error messages in channels, with over 8,000 instances found exposed in a Bitsight report. The source details three specific vulnerabilities and provides practical fixes including system prompt modifications and SlackClaw migration.

OpenClawRadar
ClawCare: Security Guard for AI Coding Agents After AWS Key Leak
Security

ClawCare: Security Guard for AI Coding Agents After AWS Key Leak

ClawCare is a Python tool that scans commands before execution in AI coding agents like Claude Code, blocking risky patterns like bulk environment dumps and reverse shells. It was built after a developer accidentally leaked an AWS key through an agent.

OpenClawRadar
Claude Android App Reportedly Reads Clipboard Without Explicit User Action
Security

Claude Android App Reportedly Reads Clipboard Without Explicit User Action

A user reports that the Claude Android app analyzed code from their clipboard without them pasting it, with Claude identifying the file as pasted_text_b4a56202-3d12-43c8-aa31-a39367a9a354.txt. The behavior couldn't be reproduced in subsequent tests.

OpenClawRadar
Caelguard: Open-Source Security Scanner for OpenClaw Instances
Security

Caelguard: Open-Source Security Scanner for OpenClaw Instances

Caelguard is an open-source security scanner built for OpenClaw that runs 22 checks across your instance, including Docker isolation, tool permission scoping, and skill supply chain verification. It provides a score out of 140 with a letter grade and specific remediation steps.

OpenClawRadar