eve-verification-plans

eve-verification-plans is a skill for Claude Code, Codex from Incept5/eve-skillpacks. It costs 53 tokens per session (3,128 once invoked), scanned A, original, MIT.

A skill for writing structured test plans for Eve-compatible applications, including checks for app behavior and Eve platform rules.

In plain words
What is it for?
Planning smoke tests, auditing an existing Eve app, validating major changes, and preparing a handoff.
Why use it?
It turns broad testing needs into repeatable checks for interfaces, authentication, migrations, data loading, and platform conventions.

Skill for Claude CodeCodex

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

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is agent-browser --session verify screenshot ./e2e-verification/artifacts/dashboard.png.

Good fit Planning smoke tests, auditing an existing Eve app, validating major changes, and preparing a handoff.

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/Incept5/eve-skillpacks
agentmods
npx agentmods add skills/incept5/eve-skillpacks/eve-verification-plans

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 eve-verification-plans

README.md
[![agentmods](https://agentmods.dev/badge/skills/incept5/eve-skillpacks/eve-verification-plans/github.svg)](https://agentmods.dev/skills/incept5/eve-skillpacks/eve-verification-plans)
Your own site
<a href="https://agentmods.dev/skills/incept5/eve-skillpacks/eve-verification-plans"><img src="https://agentmods.dev/badge/skills/incept5/eve-skillpacks/eve-verification-plans/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 eve-verification-plans

Your own site · 80×15
<a href="https://agentmods.dev/skills/incept5/eve-skillpacks/eve-verification-plans"><img src="https://agentmods.dev/badge/skills/incept5/eve-skillpacks/eve-verification-plans.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,128 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00053 $0.03128
Opus 5 $0.00026 $0.01564
Sonnet 5 $0.00011 $0.00626
Haiku 4.5 $0.00005 $0.00313

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

Security

Grade A, and why

eve-verification-plans scanned grade A 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 10d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sf "${APP_SCHEME}://api.${APP_DOMAIN}/health" | jq '.'
eve-se/eve-verification-plans/SKILL.md · 374 lines

How it starts

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

Eve Verification Plans

Author agentic verification plans — markdown documents that fully specify the steps to verify an Eve-compatible app works correctly AND conforms to Eve platform conventions. Plans are actionable by humans or agents.

When to Use

  • Building verification for a new Eve-compatible app
  • Auditing an existing app for Eve platform conformance
  • After significant feature work that needs structured validation
  • Before handoff — proving the app works the Eve way, end to end
  • Onboarding a new team to understand what "correctly built on Eve" looks like

Quick Start

# 1. Create the verification directory in your project
mkdir -p e2e-verification/00-smoke

# 2. Copy the smoke template
cp templates/00-smoke-test-plan.md e2e-verification/00-smoke/

# 3. Customize for your app (endpoints, services, agents)
# 4. Run it

The Six Verification Dimensions

Every Eve app has up to six dimensions to verify. Cover all that apply.

Dimension Tool When Conformance Check
Platform conformance Eve CLI + manifest inspection Always CLI parity, manifest conventions, secrets model
Service layer Eve CLI + REST API Always Every endpoint reachable via CLI; no kubectl needed
Input / ingestion Repo fixtures + upload commands When app accepts files Deterministic fixtures, real parsing flows
Data layer Eve CLI + DB migrations When app has DB Migrations via Eve pipeline, not manual SQL
UI / visual agent-browser or Playwright When frontend exists SSO login, dark/light mode, agent-testable
Agent behavior eve job follow + optimization When app has agents Efficient completion, no blind alleys

Verification Plan Format

Each scenario is a self-contained markdown document:

# Scenario NN: <Name>

**Time:** ~Nm
**Environment:** staging | local | both
**Parallel Safe:** Yes/No
**Requires:** LLM | Browser | None

<one-paragraph description>

## Prerequisites

- What must be true before running
- Required secrets, auth, prior scenarios

## Fixtures

- File paths used by this scenario
- Provenance or generation command for each
- Why these files are representative

## Setup

\```bash
# Environment detection + auth
# Project/org setup
# Fixture validation or generation
\```

## Phases

### Phase 1: <Name>

\```bash
# Commands to execute
\```

**Expected:**
- Bullet list of assertions
- Each assertion is pass/fail verifiable

### Phase 2: ...

## Success Criteria

- [ ] Checkboxes for every pass/fail assertion
- [ ] Grouped by phase

## Debugging

| Symptom | Diagnostic | Fix |
|---------|-----------|-----|
| ... | ... | ... |

## Cleanup

\```bash
# Teardown commands
\```

Read the full file on GitHub · 374 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. 10d ago First seen · 374 lines · 53 tokens per session scan A 31aa4b5ecb7b

Subscribe to this mod's changes

eve-verification-plans is a skill published in the GitHub repository Incept5/eve-skillpacks (0 stars, last pushed 2mo ago), licensed MIT. It adds 53 tokens to every session and 3,128 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

research-engineer

An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal implementation across any required technology.

davila7/claude-code-templates · 43 tokens

tika-eval-compare

Compare extracts from two Tika builds over a corpus to detect regressions in content, encoding, exceptions, and embedded-document handling. Use for "compare before/after extracts", "eval this change against the corpus".

apache/tika · 50 tokens

neuron-evaluation-engineer

Create and run AI evaluations with datasets, assertions, and output drivers in Neuron AI. Use this skill whenever the user mentions evaluation, testing AI systems, creating evaluators, dataset-driven testing, assertion-based validation, or wants to measure AI system performance. Also trigger for tasks involving…

neuron-core/neuron-ai · 77 tokens

jetson-validate-image

Use after jetson-flash-image to run static BSP checks, on-target smoke/regression tests on a flashed DUT, or both. Not for build or flash steps. Triggers: validate bsp, on-target validation.

NVIDIA/skills · 50 tokens

atmos-validation

Validate Atmos projects, components, arbitrary JSON Schema inputs, EditorConfig, and GitHub Actions; use affected-file selection and native CI annotations.

cloudposse/atmos · 31 tokens

skill-benchmark

Benchmark AI skill effectiveness by measuring implementation quality against legacy constraints.

HoangNguyen0403/agent-skills-standard · 16 tokens