They protect the model. We protect your machine.

The only open-source security layer that guards your SSH keys, credentials, and file system from AI agents — not just their prompts.

One npm install. Zero dependencies. Sub-millisecond scanning. Free forever.

$ npm install -g clawmoat
npm ⚡ Zero Dependencies 📦 MIT License ✅ 142 Tests Passing
Total installs & clones
⭐ GitHub stars
📦 npm downloads
🔄 Git clones

You gave your AI agent root access to your life

SSH keys. AWS credentials. Browser cookies. Crypto wallets. Your agent can read them all right now. One poisoned email, one malicious skill, and everything leaves through a single curl command. This isn't a hypothetical — it happened last month.

💉

Prompt Injection

Cisco found OpenClaw "fails decisively" against malicious skills. Hidden instructions in emails and web pages hijack agent behavior.

🔓

Secret Exfiltration

Permiso/Rufio built a credential-stealing weather skill and mapped C2 infrastructure. Your API keys, SSH keys, and tokens are the target.

🔧

Malicious Skills

Snyk found 13.4% of ClawHub skills have critical security issues. Supply chain attacks are already happening in the agent ecosystem.

npm downloads GitHub stars 0 dependencies <1ms scan time 142 tests passing MIT license

"My OpenClaw bot was a fan of ClawMoat."

"The only project I've seen that protects the host, not just the prompts. This is what the ecosystem needs."

— OpenClaw community member
🔒 Microsoft says "don't run on workstations" 📊 Referenced by OWASP Agentic AI framework 🔬 Built on Anthropic's agentic misalignment research

Your laptop. A dedicated box. The cloud. All protected.

Same npm package, different deployment profiles. Pick the one that matches your setup.

💻
Your seatbelt

Laptop (Hardened)

For power users running agents on their personal machine. Full protection without slowing you down.

  • Host Guardian + permission tiers
  • Credential file monitoring
  • Full audit trail
  • Real-time console alerts
🖥️
Your dashcam

Dedicated Machine

For security-conscious users with a machine dedicated to running agents. Always watching, always recording.

  • Skill integrity checking
  • Network egress logging
  • Webhook alerts
  • Daemon mode monitoring
☁️
Your fleet management

Cloud / VPS

For enterprises running agent fleets. Centralized policy, inter-agent scanning, and compliance reporting.

  • Inter-agent message scanning
  • Centralized policy engine
  • Domain allow/blocklists
  • Compliance reports

Four permission tiers. Like hiring a new employee.

Start at Observer (read-only). Promote to Worker when you trust it. Every action is validated against your tier in real-time — blocked actions get logged, not executed.

👁️
Observer

Read Only

  • Read files
  • List directories
  • View system info
  • Write files
  • Run commands
  • Network access
🔨
Worker

Safe Commands

  • Read & write files
  • Safe shell commands
  • Git operations
  • Package managers
  • Dangerous commands
  • Credential access
Standard

Recommended

  • Most shell commands
  • Network requests
  • File system access
  • Forbidden zones enforced
  • Credential directories
  • System-level changes
🔓
Full

Unrestricted

  • All commands
  • All file access
  • Network unrestricted
  • Forbidden zones still active
  • Full audit trail
  • ⚠️ Use with caution
host-guardian.js — usage example
import { HostGuardian } from 'clawmoat'; // Initialize with a permission tier const guardian = new HostGuardian({ tier: 'standard', forbiddenZones: 'default', // SSH, AWS, crypto wallets, etc. auditLog: true }); // Validate before every agent action const result = guardian.validate({ action: 'file.read', path: '~/.ssh/id_rsa' }); // result → { allowed: false, reason: 'Forbidden zone: SSH keys' } const ok = guardian.validate({ action: 'shell.exec', command: 'git status' }); // ok → { allowed: true, tier: 'standard' }

These directories are off-limits. Period.

Even at the highest permission tier, ClawMoat blocks access to your most sensitive files. No override. No exceptions. No "are you sure?" — just blocked and logged.

🔑

SSH Keys

~/.ssh/*
☁️

AWS Credentials

~/.aws/*
🌐

Browser Data

cookies, passwords, sessions
💰

Crypto Wallets

seed phrases, wallet files
🔐

GPG / PGP Keys

~/.gnupg/*
📦

Package Tokens

.npmrc, .pypirc, .gem
🗄️

Database Creds

.pgpass, .my.cnf
🏗️

Cloud Configs

~/.azure, ~/.gcloud, ~/.kube

Three-layer defense

Every message and tool call passes through ClawMoat's scan pipeline before reaching your agent.

1

Pattern Match

Fast regex + heuristic filters catch known injection patterns in <1ms

2

ML Classifier

Lightweight model scores semantic intent — catches obfuscated attacks

3

LLM Judge

High-confidence LLM review for ambiguous cases — maximum accuracy

Policy Engine

YAML-configured rules for tool calls, file access, shell commands, and network requests

Audit & Alert

Every event logged. Real-time alerts via webhook, email, or Telegram

8 scanners running on every message, every tool call

Your agent processes hundreds of inputs per session. Each one passes through ClawMoat before it can touch your system.

🔑

Credential File Monitoring

Watches ~/.openclaw/credentials/ and sensitive directories for unauthorized access. Alerts instantly if an agent touches what it shouldn't.

v0.5 — Live
🔍

Skill Integrity Checker

Hash-based verification of installed skills plus suspicious pattern detection. Know if a skill has been tampered with or contains malicious code.

v0.5 — Live
🌐

Network Egress Logging

URL extraction, domain allow/blocklist with 26 blocked domains out of the box. See exactly where your agent is sending data.

v0.5 — Live
🤖

Inter-Agent Message Scanning

10 agent-specific attack patterns — impersonation, concealment, credential exfiltration, safety bypass, and more. Catches agent-to-agent attacks.

v0.5 — Live
🚨

Alert Delivery System

Console, file, and webhook alert channels with rate limiting. Get notified your way — Slack, Discord, Telegram, or any webhook endpoint.

v0.5 — Live
🛡️

Prompt Injection Detection

Multi-layer scanning catches injection attempts in messages, emails, and web content before they reach your agent.

v0.1 — Live
📋

Policy Engine

YAML-based rules for shell commands, file access, browser actions, and network requests. Block, allow, or require approval.

v0.1 — Live
📊

Session Audit Trail

Full audit log of every message, tool call, and policy decision. Export for compliance or investigate incidents.

v0.1 — Live

OWASP Top 10 Agentic AI (2026)

Mapped coverage against every risk in the OWASP Agentic AI framework.

ASI01
Agent Goal Hijack

Prompt injection scanning on all inbound content

ASI02
Tool Misuse

Policy engine validates every tool call

ASI03
Privilege Abuse

Permission tiers & Host Guardian enforce least privilege

ASI04
Supply Chain

Skill/plugin static analysis (v0.3)

ASI05
Code Execution

Shell command validation & allowlists

ASI06
Data Leakage

Forbidden zones + outbound PII & secret scanning

Try ClawMoat v0.5.0

Scan skills, audit agents, and monitor in daemon mode.

clawmoat v0.5.0 — bash
$ clawmoat skill-audit ~/.openclaw/skills/ 🏰 ClawMoat Skill Audit ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ✓ weather-skill hash: a3f2...c891 integrity: OK ✗ helper-tool hash: MODIFIED since install ⛔ Suspicious: credential file access pattern ⛔ Suspicious: base64-encoded outbound URL ✓ calendar-sync hash: 7b1e...d4a0 integrity: OK ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3 skills scanned · 1 flagged · 26 blocked domains active $ clawmoat report 🏰 ClawMoat Security Report Credential monitors: 4 active Network egress: 142 requests logged, 3 blocked Agent messages: 89 scanned, 0 threats Skill integrity: 1 of 12 modified $ clawmoat --daemon --alert-webhook https://hooks.slack.com/... 🏰 ClawMoat daemon started — monitoring credentials, network, skills Alerts → webhook + console

Show your security score

Run an audit and add a security badge to your README — like a CI badge, but for AI agent security.

Score A+ Score A Score B Score C Score D Score F
clawmoat — badge
$ clawmoat audit --badge 🏰 ClawMoat Session Audit ✓ session-001.jsonl: clean ✓ session-002.jsonl: clean Summary: 2 sessions scanned, 0 total findings 🏷️ Security Badge Grade: A+ SVG saved: ./clawmoat-badge.svg Add to README: ![ClawMoat Security Score](https://img.shields.io/badge/ClawMoat-A%2B-brightgreen)

Badges use shields.io URLs for README embeds, or a local SVG for custom hosting. Run clawmoat audit --badge after any audit.

The only tool protecting the host, not just the prompt

Other tools scan prompts. ClawMoat protects your entire machine — credentials, files, network, and skills.

Capability ClawMoat LlamaFirewall NeMo Guardrails Lakera Guard SecureClaw
Prompt injection detection
Host-level protection
Credential monitoring
Skill/plugin auditing
Permission tiers
Zero dependencies N/A (SaaS)
Open source ✅ MIT
Node.js native Python Python API Skill
Free tier Full product Full Full Limited Full

ClawMoat works alongside these tools — they protect the model layer, we protect the machine layer.

Free to start. Upgrade when the stakes get real.

Running agents on your laptop? Free tier has you covered. Managing a fleet for your company? That's when Pro and Team earn their keep. All paid plans include a 30-day free trial and 14-day money-back guarantee.

Free

$0
Stop worrying about your agent leaking keys or getting hijacked
  • Host Guardian (all 4 tiers)
  • 20+ forbidden zone patterns
  • Prompt injection scanning
  • Jailbreak detection
  • Secret scanning
  • Policy engine (YAML)
  • Audit trail (in-memory)
  • Community support
Install Free

Security Kit

$29
Ship agent features without security liability — own it forever
  • Everything in Free
  • OpenClaw security skill
  • Real-time scanning
  • Custom policy rules
  • Scan history & audit log
  • 1 year of pattern updates
Buy — $29 one-time

14-day money-back guarantee

Team

$49/mo
Pass SOC2 with AI agents in production — compliance reports, fleet control, centralized policy
  • Everything in Pro
  • Fleet dashboard (all machines)
  • Centralized policy management
  • Compliance reports (SOC2-style)
  • Shared threat intelligence
  • Role-based policies
  • Up to 10 machines
  • Priority support
Start free trial $499/year — save 15%

30 days free · 14-day refund guarantee

Built in the open. MIT licensed.

Zero dependencies. Pure Node.js. Install globally and start scanning in seconds.

$ npm install -g clawmoat
GitHub stars MIT License npm

Get ClawMoat Pro before launch

Join the waitlist for early access to the dashboard, threat intelligence feed, and team features.

Beyond Security

We Also Deploy AI Agents
for Your Business

Your employees spend 60% of their time on tasks AI agents could handle. We build, deploy, and manage custom agents — secured with ClawMoat from day one.

Finance. Operations. Collections. Reporting. Live in days, not months.

See AI Agent Services →