Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/owasp/agent-security-regression-harness/agents-mdgit clone --depth 1 https://github.com/OWASP/Agent-Security-Regression-HarnessWrote 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.
[](https://agentmods.dev/instructions/owasp/agent-security-regression-harness/agents-md)<a href="https://agentmods.dev/instructions/owasp/agent-security-regression-harness/agents-md"><img src="https://agentmods.dev/badge/instructions/owasp/agent-security-regression-harness/agents-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00927 | $0.00927 |
| Opus 5 | $0.00464 | $0.00464 |
| Sonnet 5 | $0.00185 | $0.00185 |
| Haiku 4.5 | $0.00093 | $0.00093 |
Grade A, and why
Agent-Security-Regression-Harness AGENTS.md scanned grade A with 0 findings 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 4d ago.
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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AI Agent Guide: OWASP Agent Security Regression Harness
This file helps AI coding agents (Claude, Copilot, Cursor, etc.) understand this project and contribute effectively.
Project overview
A Python CLI tool (agent-harness) that runs executable security regression scenarios against AI agents and MCP-integrated systems. It checks that security policies hold after code/prompt changes.
pip install -e . && agent-harness run scenarios/goal_hijack/basic.yaml --dry-run
Architecture
src/agent_harness/
cli.py # Entry point. argparse-based. Subcommands: version, validate, run, suite
scenario.py # Loads & validates YAML scenarios (Scenario dataclass)
trace.py # Trace dataclass (messages, tool_calls, events)
assertions.py # Evaluates assertions against traces. Each assertion = one function
result.py # HarnessResult + AssertionResult dataclasses, status aggregation
recorder.py # TraceRecorder helper for incremental trace building
runner.py # Orchestrates: load scenario -> run target/adapter -> eval assertions
adapters.py # HTTP target + Python callable target runners
openai_agents_adapter.py # Runs OpenAI Agents SDK Agent, converts result -> Trace
langchain_adapter.py # Runs LangChain/LangGraph invoke(), converts result -> Trace
mcp_adapter.py # Runs MCP workflow callable, converts result -> Trace
mcp_runtime.py # MCP server config validation (future full host)
tests/
test_*.py # pytest. Mirrors src structure.
Contribution workflow
- Pick an open issue with
help wantedorgood first issuelabel - Fork, create a focused branch (
feature/,fix/,scenario/,docs/) - Make small, reviewable changes
- Run
python -m pytestbefore pushing - Open PR and disclose AI assistance per CONTRIBUTING.md
What needs doing
| Area | How to help |
|---|---|
| Scenarios | Add YAML files under scenarios/<category>/. See docs/scenario-spec.md |
| Assertions | Add function in assertions.py, register in evaluate_assertions() |
| Adapters | Add new target type in adapters.py or a new dedicated *_adapter.py |
| CLI | Add flags in cli.py::build_parser() + wiring in main() |
| Tests | Add test_*.py in tests/ using pytest |
| Docs | Improve docs/, README, examples |
| CI | Add GitHub Actions workflows (.github/workflows/) |
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.
- 4d ago First seen · 78 lines · 927 tokens per session scan A 143f39a0d184
Agent-Security-Regression-Harness AGENTS.md is an instructions file published in the GitHub repository OWASP/Agent-Security-Regression-Harness (49 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 927 tokens to every session, about $0.0046 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
arcjet-js AGENTS.md
Instructions for arcjet/arcjet-js, covering agent guidance, examples live in arcjet/examples and integration work: review before a pr.
promptsonar AGENTS.md
Instructions for meghal86/promptsonar, covering promptsonar agent instructions, operating principles, repo layout, common commands and change workflow.
llm-safe-haven CLAUDE.md
Claude Code instructions for pleasedodisturb/llm-safe-haven, covering llm safe haven, what this is, project structure, tdd — non-negotiable (adopted 2026-08-17) and the contract.
cordon AGENTS.md
AGENTS.md instructions for ilyautov/cordon, covering working in this repository, the three invariants, the map, commands and tests.
cyvisguard AGENTS.md
Instructions for flankerhqd/cyvisguard, covering agents.md, what this is, commands, layout and how a tool call flows.
appsec-advisor AGENTS.md
AGENTS.md instructions for appsec-foundry/appsec-advisor, covering agents.md, project at a glance, contract hierarchy, rules that always apply and branch flow.