e2e-skills-hub:run

e2e-skills-hub:run is a skill for Claude Code from Try-catch-finally-awesome/e2e-skills-hub. It costs 43 tokens per session (3,428 once invoked), scanned A, original, MIT.

A main entry point for end-to-end testing, which checks a complete user flow through a running application. It accepts a page address or a natural-language description and coordinates testing, error fixing, and reporting.

In plain words
What is it for?
Use it to test a URL or described feature, choose specific testing stages, skip automatic fixes, limit fix attempts, and generate a test report.
Why use it?
It reduces the need to run each testing activity separately and can continue from detected failures through reporting.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths.

Part of the e2e-skills-hub plugin — 11 skills, 1 MCP server shipped together

Good fit Use it to test a URL or described feature, choose specific testing stages, skip automatic fixes, limit fix attempts, and generate a test report.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/try-catch-finally-awesome/e2e-skills-hub/run
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 Try-catch-finally-awesome/e2e-skills-hub --skill run
Clone the repo
git clone --depth 1 https://github.com/Try-catch-finally-awesome/e2e-skills-hub

Made for: Claude Code.

Or install e2e-skills-hub, the plugin that ships this one along with the rest of its 11 skills, 1 MCP server.

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-skills-hub:run

README.md
[![agentmods](https://agentmods.dev/badge/skills/try-catch-finally-awesome/e2e-skills-hub/run/github.svg)](https://agentmods.dev/skills/try-catch-finally-awesome/e2e-skills-hub/run)
Your own site
<a href="https://agentmods.dev/skills/try-catch-finally-awesome/e2e-skills-hub/run"><img src="https://agentmods.dev/badge/skills/try-catch-finally-awesome/e2e-skills-hub/run/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-skills-hub:run

Your own site · 80×15
<a href="https://agentmods.dev/skills/try-catch-finally-awesome/e2e-skills-hub/run"><img src="https://agentmods.dev/badge/skills/try-catch-finally-awesome/e2e-skills-hub/run.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,428 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.00043 $0.03428
Opus 5 $0.00022 $0.01714
Sonnet 5 $0.00009 $0.00686
Haiku 4.5 $0.00004 $0.00343

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

Security

Grade A, and why

e2e-skills-hub:run 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 11d 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.

Bash: curl -s -o /dev/null -w "%{http_code}" http://localhost:{frontend.port}/ 2>/dev/null || echo "FAIL"
skills/run/SKILL.md · 297 lines

How it starts

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

/e2e-skills-hub:run — 执行 E2E 测试

用法

URL 模式(直接指定页面地址):

/e2e-skills-hub:run http://localhost:5173/products
/e2e-skills-hub:run /products
/e2e-skills-hub:run http://localhost:5173/products --skip-fix
/e2e-skills-hub:run http://localhost:5173/products --skills tracer,testcase
/e2e-skills-hub:run http://localhost:5173/products --max-fix-rounds 30

描述模式(自然语言描述功能):

/e2e-skills-hub:run --describe "我新增了商品批量导入功能"
/e2e-skills-hub:run --describe "修改了订单列表页的查询条件"

参数

参数 类型 必填 默认值 说明
<url> string --describe 二选一 - 前端页面 URL,支持完整 URL、省略协议、仅路径三种格式
--describe "<text>" string <url> 二选一 - 自然语言功能描述,系统将自动推断目标页面
--skip-fix boolean false 跳过错误修复阶段(阶段 4),测试失败后直接生成报告
--skills <names> string(逗号分隔) all 指定执行的子 skill,可选值:tracer, testcase, runner, fixer, report
--max-fix-rounds <n> number 20 全局最大修复次数,超过后暂停请求用户指导
--max-single-fix <n> number 3 单用例最大修复次数,超过后标记"需人工介入"

执行步骤

步骤 1: 前置检查

  1. 检查 Skills 是否已生成

    • 搜索项目级 .claude/skills/e2e/metadata.json
    • 搜索用户级 ~/.claude/skills/e2e/{项目名}/metadata.json
    • 如果未找到:
      错误: 未找到已生成的 E2E Skills。请先运行 /e2e-skills-hub:init 进行初始化。
      
      终止执行。
  2. 读取 metadata.json,确认所有 6 个 SKILL.md 文件存在:

    Glob: {skills_dir}/*/SKILL.md
    

    如有缺失,提示用户运行 /e2e-skills-hub:generate 补全。

  3. 读取项目配置

    • 加载 config/projects.yaml
    • 加载用户配置 .claude/e2e-skills-hub.yaml(如有)
    • 合并配置(命令行参数 > 项目配置 > 用户配置 > 默认值)

步骤 2: 解析输入模式

2A: URL 模式
  1. 解析用户输入的 URL:

    • 完整 URL: http://localhost:5173/xxx → 直接使用
    • 省略协议: localhost:5173/xxx → 补全为 http://localhost:5173/xxx
    • 仅路径: /xxx → 补全为 http://localhost:{frontend.port}/xxx
  2. 提取路由路径部分(去除协议、host、port)

2B: 描述模式
  1. 解析自然语言描述,提取功能关键词:
    • 从描述中识别功能动词(新增、修改、删除、查询等)
    • 识别业务实体名称(商品、订单、用户等)
    • 转换为搜索关键词(中文 + 英文 + 驼峰 + 短横线格式)
    • 例:"商品批量导入" → batch-import, batchImport, 批量导入, product, goods

Read the full file on GitHub · 297 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. 11d ago First seen · 297 lines · 43 tokens per session scan A fe167b160bc8

Subscribe to this mod's changes

e2e-skills-hub:run is a skill published in the GitHub repository Try-catch-finally-awesome/e2e-skills-hub (3 stars, last pushed 5mo ago), licensed MIT. It adds 43 tokens to every session and 3,428 once invoked, about $0.0002 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

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