evo-fuzz-env-runner

evo-fuzz-env-runner is a skill for Claude Code, Codex from OpenLAIR/OpenSkill. It costs 41 tokens per session (316 once invoked), scanned A, original, Apache-2.0.

A test-runner setup tool that creates an isolated Python environment, installs a library's dependencies and the Atheris fuzzing package, runs its fuzzer, and saves the output to a log. Fuzzing tests software with many generated inputs to uncover crashes and unexpected failures.

In plain words
What is it for?
Use it to prepare Python libraries for fuzzing and run their fuzzers for a specified time.
Why use it?
It removes the repetitive environment setup and log handling needed before running fuzz tests across libraries.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to prepare Python libraries for fuzzing and run their fuzzers for a specified time.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/openlair/openskill/evo-fuzz-env-runner
Install

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.

Any agent
npx skills add OpenLAIR/OpenSkill --skill evo-fuzz-env-runner
Clone the repo
git clone --depth 1 https://github.com/OpenLAIR/OpenSkill

Made for: Claude Code, Codex.

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 evo-fuzz-env-runner

README.md
[![agentmods](https://agentmods.dev/badge/skills/openlair/openskill/evo-fuzz-env-runner/github.svg)](https://agentmods.dev/skills/openlair/openskill/evo-fuzz-env-runner)
Your own site
<a href="https://agentmods.dev/skills/openlair/openskill/evo-fuzz-env-runner"><img src="https://agentmods.dev/badge/skills/openlair/openskill/evo-fuzz-env-runner/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 evo-fuzz-env-runner

Your own site · 80×15
<a href="https://agentmods.dev/skills/openlair/openskill/evo-fuzz-env-runner"><img src="https://agentmods.dev/badge/skills/openlair/openskill/evo-fuzz-env-runner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 316 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.
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.00041 $0.00316
Opus 5 $0.00020 $0.00158
Sonnet 5 $0.00008 $0.00063
Haiku 4.5 $0.00004 $0.00032

Measured yesterday against content hash 701afa14c591, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

evo-fuzz-env-runner 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 yesterday.

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

tasks-evolved/setup-fuzzing-py/environment/skills/evo-fuzz-env-runner/SKILL.md · 35 lines

What it actually says

Fuzz Environment Runner

Sets up isolated Python virtual environments using uv, installs library dependencies and atheris, runs fuzz.py with LibFuzzer flags, and captures output to fuzz.log.

Workflow

  1. Create .venv using uv venv .venv in each library directory
  2. Install atheris and library dependencies via uv pip install
  3. Run fuzzer with -max_total_time=10 flag
  4. Capture stdout+stderr to fuzz.log

Key Functions

  • setup_venv_with_uv(lib_path) - Create virtual environment
  • install_dependencies(lib_path, venv_path) - Install deps and atheris
  • run_fuzzer_with_timeout(lib_path, timeout_seconds=10) - Run fuzzer and log output
  • capture_fuzz_log(lib_path) - Read fuzz.log contents

Usage

import sys
sys.path.insert(0, '/app/environment/skills/evo-fuzz-env-runner/scripts')
from runner import setup_venv_with_uv, install_dependencies, run_fuzzer_with_timeout

venv = setup_venv_with_uv('/app/arrow')
install_dependencies('/app/arrow', venv)
run_fuzzer_with_timeout('/app/arrow', timeout_seconds=10)
Files

What ships with it

1 file 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. yesterday First seen · 35 lines · 41 tokens per session scan A 701afa14c591

Subscribe to this mod's changes

evo-fuzz-env-runner is a skill published in the GitHub repository OpenLAIR/OpenSkill (90 stars, last pushed 2d ago), licensed Apache-2.0. It adds 41 tokens to every session and 316 once invoked, about $0.0002 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-11.

Related

Other skills, from other repositories

codex-autoresearch

Triage improvement work and run or resume accepted measured loops in a local project. Architecture, documentation, UX, product study, open research, taste, and one-shot fixes stay direct unless the user explicitly requests repeated measurement with a complete experiment contract.

TheGreenCedar/codex-autoresearch · 55 tokens

building

Implementation skill for writing production code with TDD. Covers the RED-GREEN-REFACTOR cycle, false-RED detection, vertical slicing, scope escalation, test process discipline, and code generation patterns. Loaded by component-builder and bug-investigator.

romiluz13/cc10x · 53 tokens

dos-self-improve

Run the DOS self-improvement loop: propose a candidate, verify it in an isolated worktree, measure suite/truth/metric gates, and keep only confirmed gains. Use for recursive improvement; use dos-enforce-tune for policy knobs.

anthony-chaudhary/dos-kernel · 56 tokens

dos-witness-claim

Route subagent claims through independent read-back before another agent relies on them. Use at parallel, pipeline, or synthesis barriers where shipped phases, files, rows, messages, or other effects must be witnessed.

anthony-chaudhary/dos-kernel · 47 tokens

dos-skillify

Convert an agent skill into a DOS-grounded variant by replacing self-certified claims with dos witness checks and emitting an additive copy plus report. Use when asked to make a skill DOS-aware or audit its self-checks.

anthony-chaudhary/dos-kernel · 50 tokens

experiment

Rules as hypotheses: falsifiable tests, confidence updates, graduate or kill. Triggers: experiment, hypothesis, prove, test rule, validate methodology, evidence.

ariaxhan/kernel-claude · 34 tokens