e2e-varify

e2e-varify is a skill for Claude Code from ZTE-AICloud/Co-OmniSpec. It costs 101 tokens per session (3,200 once invoked), scanned A, original, MIT.

A review step for end-to-end (E2E) test plans, which test a feature through the system as a user would. It checks an implementation analysis report and updates it with missing coverage, dependency failures, and test-data details.

In plain words
What is it for?
Use it to review or complete an E2E test design, especially after an E2E implementation analysis has been created. It reads the feature specification, design, black-box tests, and analysis report, then updates the report.
Why use it?
It helps find gaps in a test plan before developers turn it into test code. It also makes sure changed behavior and unusual external-service failures are considered.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the omni-dsdd plugin — 40 skills, 16 agents, 1 hook shipped together

Good fit Use it to review or complete an E2E test design, especially after an E2E implementation analysis has been created. It reads the feature specification, design, black-box tests, and analysis report, then updates the report.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zte-aicloud/co-omnispec/e2e-varify
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 ZTE-AICloud/Co-OmniSpec --skill e2e-varify
Clone the repo
git clone --depth 1 https://github.com/ZTE-AICloud/Co-OmniSpec

Made for: Claude Code.

Or install omni-dsdd, the plugin that ships this one along with the rest of its 40 skills, 16 agents, 1 hook.

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 e2e-varify

README.md
[![agentmods](https://agentmods.dev/badge/skills/zte-aicloud/co-omnispec/e2e-varify/github.svg)](https://agentmods.dev/skills/zte-aicloud/co-omnispec/e2e-varify)
Your own site
<a href="https://agentmods.dev/skills/zte-aicloud/co-omnispec/e2e-varify"><img src="https://agentmods.dev/badge/skills/zte-aicloud/co-omnispec/e2e-varify/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 e2e-varify

Your own site · 80×15
<a href="https://agentmods.dev/skills/zte-aicloud/co-omnispec/e2e-varify"><img src="https://agentmods.dev/badge/skills/zte-aicloud/co-omnispec/e2e-varify.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 101 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,200 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 pass 7 Sept 2026
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.00101 $0.03200
Opus 5 $0.00051 $0.01600
Sonnet 5 $0.00020 $0.00640
Haiku 4.5 $0.00010 $0.00320

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

Security

Grade A, and why

e2e-varify 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 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.

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.

omni-dsdd/skills/e2e-varify/SKILL.md · 337 lines

How it starts

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

用户输入

$ARGUMENTS

在继续之前, 你必须考虑用户输入(如果不为空).

概述

执行 E2E 测试设计的完整性检查和完善工作流,作为 e2e-design 的下游动作。

调用场景

  • 下游调用(推荐):在 e2e-design 生成 e2e-impl-design.md 后自动执行
  • 独立调用:直接执行测试设计完善(需要已有 e2e-impl-design.md)

输入要求

  • spec.md:功能规范文档
  • design.md:设计文档
  • e2e-test.md:黑盒测试用例文档
  • e2e-impl-design.md:测试实现分析报告(e2e-design 输出)

输出

  • 更新后的 e2e-impl-design.md:完善的测试实现分析报告

执行流程

1. [ ] 设置环境

  1. 判断操作系统:Windows 或 Linux
  2. 运行前置检查脚本
    • Windows: scripts/powershell/check-prerequisites.ps1 --json --require-e2e-impl-design
    • Linux: scripts/bash/check-prerequisites.sh --json --require-e2e-impl-design
  3. 解析输出
    • 提取 FEATURE_DIR(特性目录绝对路径)
    • 提取 SPEC_FILE(规范文件路径)
    • 提取 DESIGN_FILE(设计文件路径)
    • 提取 E2E_TEST_FILE(黑盒测试用例文件路径)
    • 提取 E2E_IMPL_DESIGN_FILE(测试实现分析报告路径)
    • 提取 AVAILABLE_DOCS(可用文档列表)

重要:所有路径必须是绝对路径。

2. [ ] 验证前置文件

验证以下必需文件是否存在:

  1. 检查规范文件

    • {FEATURE_DIR}/spec.md 是否存在
    • 如果不存在:错误 "规范文件不存在,请先执行 /specify"
  2. 检查设计文件

    • {FEATURE_DIR}/design.md 是否存在
    • 如果不存在:错误 "设计文件不存在,请先执行 /design"
  3. 检查测试用例文件

    • {FEATURE_DIR}/e2e-test.md 是否存在
    • 如果不存在:错误 "黑盒测试用例文件不存在,请先执行 /e2e-specify"
  4. 检查测试实现分析报告

    • {FEATURE_DIR}/e2e-impl-design.md 是否存在
    • 如果不存在:错误 "测试实现分析报告不存在,请先执行 /e2e-design"
  5. 报告验证结果

    • 所有文件存在:继续执行步骤3
    • 任何文件缺失:终止流程并报错

3. [ ] 加载上下文文档

加载用于测试设计完善的上下文文档:

必需文档

  1. spec.md:读取用户故事、功能需求、验收场景
  2. design.md:读取架构设计、详细设计、接口定义、数据结构
  3. e2e-test.md:读取所有黑盒测试用例(Given-When-Then 格式)
  4. e2e-impl-design.md:读取测试实现分析报告

可选文档(按优先级加载):

  1. baseline 文档

    • baseline/code-structure.md:现有代码结构
    • baseline/existing-apis.md:现有接口定义
    • baseline/call-graph.md:调用链路(用于确定外部依赖)
    • baseline/detailed-design.md:现有架构设计
  2. 存量测试代码

    • 搜索现有测试目录(如 tests/test/
    • 查找类似功能的测试实现
    • 提取测试模式、异常场景处理、测试数据构造方法

加载策略

  • 每个文档独立容错,失败不中断流程
  • 记录成功加载的文档列表
  • 标注缺失的文档

4. [ ] 执行变更点覆盖分析

  1. 识别需求变更点
    • 阅读 spec.md,提取本次需求变更内容
    • 与 design.md 对照,识别受影响的模块和接口
    • 与 baseline 对照,识别新增或修改的功能点

Read the full file on GitHub · 337 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 · 337 lines · 101 tokens per session scan A 4d06837ba81d

Subscribe to this mod's changes

e2e-varify is a skill published in the GitHub repository ZTE-AICloud/Co-OmniSpec (54 stars, last pushed 1mo ago), licensed MIT. It adds 101 tokens to every session and 3,200 once invoked, about $0.0005 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

dogfood

Systematically explore and test a mobile app on iOS/Android with agent-device to find bugs, UX issues, and other problems. Use when asked to dogfood, QA, exploratory test, find issues, bug hunt, or test this app on mobile.

callstack/agent-device · 55 tokens

test-warp-ui

Guides testing Warp UI features and changes using the computer use tool. Use this skill only when computer-use testing was requested (explicit request or accepted offer) and the computeruse tool is available to the agent. Covers launching Warp and verifying UI behavior.

warpdotdev/warp · 55 tokens

test-electron-app

Drive the real running PostHog Electron app (live tRPC, workspace-server, real data) over CDP with agent-browser. Connect to the running app on port 9222, test desktop changes against a local Django stack, snapshot the accessibility tree, inspect network requests, and screenshot only when explicitly asked. Use when…

PostHog/posthog-foss · 112 tokens

pyats-dynamic-test

Generate and execute deterministic pyATS aetest validation scripts - interface state, OSPF neighbors, BGP paths, ping matrices, and custom compliance tests. Use when writing a network test, validating post-change state, running pass/fail checks, or building automated regression tests.

automateyournetwork/netclaw · 61 tokens

test-loop

Plan, generate, and heal an executable E2E test suite from approved acceptance criteria (web and mobile).

HoangNguyen0403/agent-skills-standard · 25 tokens

playwright-cli

Automates browser interactions for testing and validating your own web applications using playwright-cli. Use when you need terminal-first browser control for navigation, form filling, screenshots, tracing, bound browser sessions, debugging, or generating Playwright test code. Only use against applications you own or…

testdino-hq/playwright-skill · 64 tokens