behavior-verifier

behavior-verifier is a skill for Claude Code from open-agent-ai-security/praxen. It costs 184 tokens per session (30,081 once invoked), scanned C, original, Apache-2.0.

A behavior-checking skill that compares an AI agent's stated policy with evidence from its code, files, logs, configuration, or other records. A Worker Remit is a document describing what the agent is allowed to do.

In plain words
What is it for?
Use it to examine an agent's implementation and operating records against its Worker Remit, then produce JSON, HTML, and plain-text reports.
Why use it?
It helps reveal differences between what an agent is supposed to do and what it actually does. The result is a report of these mismatches and supporting evidence.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md; mentions subagents; mentions Claude Code.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ./reports/<agent-slug>-draft-<TIMESTAMP>.md.

Part of the praxen plugin — 1 skill shipped together

Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/open-agent-ai-security/praxen
agentmods
npx agentmods add skills/open-agent-ai-security/praxen/behavior-verifier

Made for: Claude Code.

Or install praxen, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for behavior-verifier

README.md
[![agentmods](https://agentmods.dev/badge/skills/open-agent-ai-security/praxen/behavior-verifier.svg)](https://agentmods.dev/skills/open-agent-ai-security/praxen/behavior-verifier)
Your own site
<a href="https://agentmods.dev/skills/open-agent-ai-security/praxen/behavior-verifier"><img src="https://agentmods.dev/badge/skills/open-agent-ai-security/praxen/behavior-verifier.svg" alt="Measured on agentmods" height="20"></a>
Per session 184 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 30,081 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00184 $0.30081
Opus 5 $0.00092 $0.15041
Sonnet 5 $0.00037 $0.06016
Haiku 4.5 $0.00018 $0.03008

Measured 6d ago against content hash 13f17d688888, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade C, and why

behavior-verifier scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (manifest_to_findings.py, render_remit.py, render.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

- A control exists but is narrow or bypassable in known ways (regex denylist of 7 patterns, an allowlist that omits a documented capability, a guard that catches `rm -rf /` but not `rm --recursive --force /`)
skills/behavior-verifier/SKILL.md · 1,131 lines

How it starts

The opening of the file, as written. The whole thing — 1,131 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Praxen — Behavior Verifier

Quick-start (TL;DR — read this first, then the full procedure below)

What this skill does. Compares an AI agent's declared policy (a Worker Remit) against evidence about that agent — source code, live deployment files, behavioral artifacts, governance docs, or any mix — and produces a report of where observed behavior diverges from declared intent.

Inputs Praxen needs.

  • A Worker Remit — markdown policy doc (WORKER_REMIT.md or WORKER_REMIT_<agent>.md) describing what the agent is authorized to do. Located in the current directory or this skill's directory (Step 1).
  • A workspace path — directory holding the agent's code, config, memory, logs, or whatever evidence is available. Supplied in the invocation message or asked from the operator.

Outputs Praxen writes. Three files in ./reports/:

  • <agent-slug>-findings-<YYYY-MM-DD>.json — canonical record (Step 10)
  • <agent-slug>-analysis-<TIMESTAMP>.html — self-contained human-readable report (Step 11)
  • <agent-slug>-analysis-<TIMESTAMP>.txt — plain-text summary (Step 11)

Plus a checkpoint file <agent-slug>-draft-<TIMESTAMP>.md written in Step 9.9 — the manifest that lets a long scan recover from mid-analysis context compaction. Do not skip Step 9.9.

Thinking modes (opt-in). This procedure is standard mode — the default, and complete as written. If, and only if, the operator's invocation names a thinking mode (high / x-high), read THINKING_MODES.md beside this file before Step 1 and orchestrate per that file — it wraps this pipeline in post-scan verification without changing any step. If no mode was named, skip this paragraph; nothing else in this file changes.

Pipeline. 12 steps. Steps 1–8 gather evidence and synthesise findings; Step 8b sweeps for maturity evidence (practice, not defects — a findings list alone cannot see a red team or a shipped telemetry pipeline); Step 8.5 commits the finding decomposition (a themes outline, so two scans of the same agent split into the same findings); Step 9 writes the prose, assigns the RAISE scores in 9.4 from that gathered evidence rather than from a fresh workspace read, appending each finding to the draft manifest as it is drafted rather than in one terminal burst; Step 9.9 is the completeness gate — the manifest is on disk and the interim overview is printed; Step 10 emits the canonical JSON; Step 11 invokes render.py (validates the JSON, then renders the HTML and TXT — no synthesis, no inference); Step 12 prints the summary.

Read the full file on GitHub · 1,131 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 1,131 lines · 184 tokens per session scan C 13f17d688888

Subscribe to this mod's changes

behavior-verifier is a skill published in the GitHub repository open-agent-ai-security/praxen (60 stars, last pushed yesterday), licensed Apache-2.0. It adds 184 tokens to every session and 30,081 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

terraform-skill

Terraform infrastructure as code best practices.

Agent-Threat-Rule/agent-threat-rules · 10 tokens

playwright-skill

IMPORTANT - Path Resolution: This skill can be installed in different locations (plugin system, manual installation, global, or project-specific). Before executing any commands, determine the skill directory based on where you loaded this SKILL.md file, and use that path in all commands below.

Agent-Threat-Rule/agent-threat-rules · 60 tokens

pypict-skill

Pairwise test generation.

Agent-Threat-Rule/agent-threat-rules · 10 tokens

clinical-trial-protocol-skill

Generate clinical trial protocols for medical devices or drugs. This skill should be used when users say "Create a clinical trial protocol", "Generate protocol for [device/drug]", "Help me design a clinical study", "Research similar trials for [intervention]", or when developing FDA submission documentation for…

Agent-Threat-Rule/agent-threat-rules · 70 tokens

claude-d3js-skill

This skill provides guidance for creating sophisticated, interactive data visualisations using d3.js.

Agent-Threat-Rule/agent-threat-rules · 25 tokens

adr-skill

Create and maintain Architecture Decision Records (ADRs) optimized for agentic coding workflows. Use when you need to propose, write, update, accept/reject, deprecate, or supersede an ADR; bootstrap an adr folder and index; consult existing ADRs before implementing changes; or enforce ADR conventions. This skill uses…

Agent-Threat-Rule/agent-threat-rules · 89 tokens