discover

discover is a skill for Claude Code from CyrusNuevoDia/gepa-research. It costs 84 tokens per session (6,510 once invoked), scanned A, original, Apache-2.0.

A setup procedure for gepa-research, a system that tests different improvements to an agent or program against a benchmark.

In plain words
What is it for?
Use it to initialize the research setup for a repository, inspect the codebase, build a benchmark, run the first experiment, and review the baseline score.
Why use it?
It creates a baseline and explores possible optimization areas so later experiments can be compared with measured results.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: mentions subagents; names the AskUserQuestion tool; mentions Codex.

Part of the gepa-research plugin — 2 skills shipped together

Good fit Use it to initialize the research setup for a repository, inspect the codebase, build a benchmark, run the first experiment, and review the baseline score.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cyrusnuevodia/gepa-research/discover
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 CyrusNuevoDia/gepa-research --skill discover
Clone the repo
git clone --depth 1 https://github.com/CyrusNuevoDia/gepa-research

Made for: Claude Code.

Or install gepa-research, the plugin that ships this one along with the rest of its 2 skills.

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 discover

README.md
[![agentmods](https://agentmods.dev/badge/skills/cyrusnuevodia/gepa-research/discover/github.svg)](https://agentmods.dev/skills/cyrusnuevodia/gepa-research/discover)
Your own site
<a href="https://agentmods.dev/skills/cyrusnuevodia/gepa-research/discover"><img src="https://agentmods.dev/badge/skills/cyrusnuevodia/gepa-research/discover/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 discover

Your own site · 80×15
<a href="https://agentmods.dev/skills/cyrusnuevodia/gepa-research/discover"><img src="https://agentmods.dev/badge/skills/cyrusnuevodia/gepa-research/discover.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 84 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,510 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.00084 $0.06510
Opus 5 $0.00042 $0.03255
Sonnet 5 $0.00017 $0.01302
Haiku 4.5 $0.00008 $0.00651

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

Security

Grade A, and why

discover 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 12d ago.

The scan reads SKILL.md. This mod also ships 5 executable files (references/inline_instrumentation.js, references/inline_instrumentation.py, references/sdk_node.js, …), 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.

plugins/gepa-research/skills/discover/SKILL.md · 397 lines

How it starts

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

Discover

Internal procedure for gepa-research:discover. The user only sees the user-facing prompts, the dashboard URL, and the baseline score -- everything else is the agent's choreography.

Host conventions

This skill runs on any host that implements the Agent Skills spec. When the body uses generic phrases, apply the host's best-fit equivalent:

  • "ask the user" -- use your host's structured multi-choice question tool if you have one (e.g. AskUserQuestion, request_user_input). If the host has none, phrase the question as plain text in your next reply and wait for the user's answer.
  • File paths like references/... -- relative to this SKILL.md; resolve from the skill directory.
  • Slash commands shown in user-facing copy (e.g. /gepa-research:discover) -- translate to your host's mention syntax when speaking to the user (e.g. $gepa-research discover on Codex -- plugin namespace then skill name, separated by a space).

0. Verify the gepa-research CLI is available and in sync with the plugin

Before anything else, run:

gepa-research-version-check

This wraps gepa-research --version and additionally asserts the installed CLI matches the plugin manifest version (hosts refetch the plugin on version bumps, but do not reinstall the globally-installed CLI -- drift between the two breaks skills silently).

Four outcomes to handle:

  1. Exit 0, gepa-research-version-check: OK (plugin=X, cli=X) -- continue to step 1.
  2. Exit 1, "plugin manifest and installed CLI disagree" -- stop and show the user the script's stderr verbatim; it tells them the uv tool install --force "git+https://github.com/CyrusNuevoDia/gepa-research@v<version>#subdirectory=plugins/gepa-research" command to run. Then re-invoke this skill.
  3. Exit 2, "gepa-research CLI not on PATH" -- stop and tell the user:

    gepa-research-cli isn't on your PATH. Install it once from GitHub: uv tool install "git+https://github.com/CyrusNuevoDia/gepa-research#subdirectory=plugins/gepa-research" (or substitute pipx install for uv tool install). Then re-invoke this skill.

  4. gepa-research-version-check: command not found -- the host's plugin install is incomplete (missing the bin/ wrapper). Fall back to running gepa-research --version directly and check for gepa-research-cli in the output; if it's a different package, tell the user to uninstall it and install gepa-research-cli from GitHub in its place (uv tool install "git+https://github.com/CyrusNuevoDia/gepa-research#subdirectory=plugins/gepa-research").

Read the full file on GitHub · 397 lines

Files

What ships with it

7 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. 12d ago First seen · 397 lines · 84 tokens per session scan A c3970d4b1f12

Subscribe to this mod's changes

discover is a skill published in the GitHub repository CyrusNuevoDia/gepa-research (100 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 84 tokens to every session and 6,510 once invoked, about $0.0004 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.

Related

Other skills, from other repositories

autocontext-consumer

Use when an agent needs to USE knowledge Autocontext already produced - find which scenarios have knowledge, read the playbook and lessons for one, understand the on-disk file and folder layout, and move knowledge between checkouts. Host-agnostic; requires only the autoctx CLI and the filesystem.

greyhaven-ai/autocontext · 67 tokens

autocontext-creator

Use when an agent needs to CREATE knowledge with Autocontext - run a scenario or plain-language task through the improvement loop, judge or improve a single output, and inspect what the run produced. Host-agnostic; requires only the autoctx CLI.

greyhaven-ai/autocontext · 57 tokens

create-notes

Write a note to {shareddir}/notes/ that future agents can actually act on. Use after every coral eval, when a heartbeat (reflect / consolidate / pivot) asks for a note, or when you discover a grader / build / runtime issue that future agents will hit. Covers 4 note variants (experiment / infra / focus / synthesis)…

Human-Agent-Society/CORAL · 217 tokens

skill-creator

Autonomously create, test, and optimize skills by detecting reusable patterns in your own work. Use when you notice repeated tool sequences, recurring code patterns across attempts, or insights that should be captured as a packaged skill. Also use to benchmark and iterate on existing skills.

Human-Agent-Society/CORAL · 58 tokens

arbor-research-agent

Public entrypoint for the Arbor skill suite. Use when a user wants to run an Arbor-style autonomous research or optimization workflow from a natural-language goal, including initial clarification of objective, target project, data, metric, evaluation, permissions, budget, run mode, and then automatic bootstrapping…

RUC-NLPIR/Arbor · 74 tokens

deep-research

Research the problem domain before coding. Web search for techniques, save raw sources, write structured findings, update the index.

Human-Agent-Society/CORAL · 28 tokens