What is Claw Patrol
mainClaw Patrol is a firewall designed for AI agents. It acts as a proxy between your agents and the internet to control outbound requests, enforce security policies, and inject credentials at the wire level so that the agent process itself never handles sensitive secrets.
Core Capabilities
- Allow/Deny Rules: Uses Common Expression Language (CEL) to define rules against protocol-specific typed variables.
- Protocol-Aware Inspection: Instead of just inspecting HTTP, Claw Patrol terminates and parses wire protocols to understand intent:
- Postgres / ClickHouse: Inspects
sql.verb,sql.tables, andsql.statement. - Kubernetes: Decomposes URLs into
k8s.verb,k8s.resource,k8s.namespace, andk8s.name. - HTTPS: Inspects
http.method,http.path,http.headers, andhttp.body_json(for JSON endpoints).
- Postgres / ClickHouse: Inspects
- Human-in-the-loop: Can defer risky actions (like
kubectl apply) to a manual approval process (e.g., via Slack). - Secret Injection: Replaces token-shaped placeholders in the agent's environment (e.g.,
GITHUB_TOKEN=ghp_clawpatrol_placeholder_do_not_use) with real credentials during transit. - Audit Logging: Provides a searchable dashboard of every request, verdict, and latency metric.