ai-agents-empirical-probe-toolkit

ai-agents-empirical-probe-toolkit is a skill for Claude Code from rjmurillo/ai-agents. It costs 119 tokens per session (3,491 once invoked), scanned A, original, MIT.

A set of practical experiments for checking what tools and hooks actually do at runtime. It includes methods for testing hidden inputs, calibrating guards and thresholds, comparing evaluations, auditing documentation, and designing tests that deliberately fail.

In plain words
What is it for?
Use it to inspect runtime contracts such as working directories, environment variables, and input formats; tune checks; compare results; or verify that a test is meaningful.
Why use it?
It replaces assumptions about tool behavior with observations from the real environment. A negative control is a deliberately broken case that proves a test can detect failure.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is uv run python scripts/eval/eval-prompt-change.py \.

Part of the project-toolkit plugin — 113 skills, 26 commands, 33 agents, 4 hooks shipped together

Good fit Use it to inspect runtime contracts such as working directories, environment variables, and input formats; tune checks; compare results; or verify that a test is meaningful.

Compare 6 skills from other repositories ↓
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/rjmurillo/ai-agents
agentmods
npx agentmods add skills/rjmurillo/ai-agents/ai-agents-empirical-probe-toolkit

Made for: Claude Code.

Or install project-toolkit, the plugin that ships this one along with the rest of its 113 skills, 26 commands, 33 agents, 4 hooks.

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 ai-agents-empirical-probe-toolkit

README.md
[![agentmods](https://agentmods.dev/badge/skills/rjmurillo/ai-agents/ai-agents-empirical-probe-toolkit/github.svg)](https://agentmods.dev/skills/rjmurillo/ai-agents/ai-agents-empirical-probe-toolkit)
Your own site
<a href="https://agentmods.dev/skills/rjmurillo/ai-agents/ai-agents-empirical-probe-toolkit"><img src="https://agentmods.dev/badge/skills/rjmurillo/ai-agents/ai-agents-empirical-probe-toolkit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ai-agents-empirical-probe-toolkit

Your own site · 80×15
<a href="https://agentmods.dev/skills/rjmurillo/ai-agents/ai-agents-empirical-probe-toolkit"><img src="https://agentmods.dev/badge/skills/rjmurillo/ai-agents/ai-agents-empirical-probe-toolkit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 119 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,491 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Excessive Agency · line 101
    Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.
    Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
  • medium Excessive Agency · line 163
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
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.00119 $0.03491
Opus 5 $0.00060 $0.01746
Sonnet 5 $0.00024 $0.00698
Haiku 4.5 $0.00012 $0.00349

Measured 8d ago against content hash acb5f3ee4042, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

ai-agents-empirical-probe-toolkit 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 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (tests/test_structure_ai_agents_empirical_probe_toolkit.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.

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.

.claude/skills/ai-agents-empirical-probe-toolkit/SKILL.md · 183 lines

How it starts

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

AI Agents Empirical Probe Toolkit

This skill is the method library for replacing assumption with measurement. Every recipe exists because an assumption shipped here and became an incident. The house rule, from the #2290 payload-format incident: the cost of a probe is 15 minutes; the cost of assumption is a P0 (.serena/memories/copilot-hooks-observations.md).

Two terms used throughout:

  • Probe: a minimal disposable artifact (a hook that dumps its environment, a script that captures stdin) run against the real pinned tool to observe what the tool actually does, instead of what its docs say.
  • Negative control: a deliberately broken input run through the same harness as the passing case, proving the test or probe CAN fail. A check that cannot fail proves nothing.

Triggers

  • probe the runtime contract
  • calibrate this guard
  • prove it empirically
  • add a negative control
  • docs versus reality audit

Recipe Selector

Situation Recipe Related skill
You are about to rely on undocumented tool behavior (cwd, env vars, stdin format) 1. Runtime-contract probe agent-harness-reference for settled contracts
You are shipping a detector, guard, or numeric threshold 2. Guard/threshold calibration ship your own post-ship telemetry; no shared monitor exists (ADR-084, issue #5154)
You changed a prompt, rule, or agent and claim it behaves better 3. Behavioral A/B via eval harness benchmark-models for cross-model comparison
You are about to write a command, path, or "matches X" claim into a doc or docstring 4. Docs-vs-reality audit doc-accuracy for full doc audits
A CI job failed on your PR 5. Reproduce-on-main discriminator ai-agents-debugging-playbook for symptom triage
You are writing a test for a generated artifact or contract 6. Negative-control test design ai-agents-validation-and-qa for the evidence bar

Read the full file on GitHub · 183 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 8d ago First seen · 183 lines · 119 tokens per session scan A acb5f3ee4042

Subscribe to this mod's changes

ai-agents-empirical-probe-toolkit is a skill published in the GitHub repository rjmurillo/ai-agents (45 stars, last pushed yesterday), licensed MIT. It adds 119 tokens to every session and 3,491 once invoked, about $0.0006 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-09-03.