e2e-skills-hub:update

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

An incremental updater for generated end-to-end (E2E) testing skills. E2E tests check a complete user flow through an application, from the interface to the backend.

In plain words
What is it for?
Use it after describing changes such as a new bulk-delete feature, a database field, or an export button. Use the force option when all generated testing skills need to be rebuilt.
Why use it?
It avoids regenerating every testing skill after each code change by finding the affected areas and updating only what may have changed. Larger changes, such as a framework or database-library switch, trigger a full regeneration.

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 after describing changes such as a new bulk-delete feature, a database field, or an export button. Use the force option when all generated testing skills need to be rebuilt.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/try-catch-finally-awesome/e2e-skills-hub/update
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 update
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:update

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/try-catch-finally-awesome/e2e-skills-hub/update"><img src="https://agentmods.dev/badge/skills/try-catch-finally-awesome/e2e-skills-hub/update.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,997 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.00033 $0.01997
Opus 5 $0.00016 $0.00999
Sonnet 5 $0.00007 $0.00399
Haiku 4.5 $0.00003 $0.00200

Measured 11d ago against content hash f9bd17db368c, 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:update 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 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.

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.

skills/update/SKILL.md · 180 lines

How it starts

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

/e2e-skills-hub:update — 增量更新 Skills

用法

/e2e-skills-hub:update "新增了批量删除功能"
/e2e-skills-hub:update "数据库表 products 增加了 batch_no 字段"
/e2e-skills-hub:update "商品列表页新增了导出功能"
/e2e-skills-hub:update --force

参数

参数 类型 必填 默认值 说明
"<变更描述>" string 增量更新时必填 - 用自然语言描述项目代码的变更内容
--force boolean false 强制全量重新生成所有 skills,忽略增量分析

执行步骤

步骤 1: 前置检查

  1. 查找并读取 metadata.json

    • 项目级: {项目根目录}/.claude/skills/e2e/metadata.json
    • 用户级: ~/.claude/skills/e2e/{项目名}/metadata.json
  2. 如果未找到:

    错误: 未找到已生成的 E2E Skills 元数据。请先运行 /e2e-skills-hub:init 进行初始化。
    

    终止执行。

  3. 从 metadata.json 中提取:

    • 上次记录的技术栈信息(techStack
    • 各 skill 的内容哈希
    • 更新历史

步骤 2: 快速技术栈检测

  1. 执行快速模式的技术栈检测(仅检查核心标识文件,不做完整扫描):

    • 检查 pom.xml / package.json / go.mod / *.csproj 是否存在且核心依赖未变
    • 检查前端 package.json 的框架和 UI 库依赖版本
  2. metadata.json 中记录的技术栈比较:

    • 技术栈发生变更(如框架升级、ORM 切换等):
      检测到技术栈变更:
        ORM: MyBatis → MyBatis Plus
      技术栈变更需要全量重新生成。执行全量生成...
      
      自动转为全量重新生成(等同 --force
    • 技术栈未变化 → 继续增量分析

步骤 3: 判断执行模式

  • 如果指定了 --force 或步骤 2 检测到技术栈变更:

    • 跳转到步骤 6(全量重新生成)
  • 否则继续步骤 4(增量更新)

步骤 4: 解析变更描述并定位受影响代码

  1. 解析自然语言描述,提取变更类型和关键词:

    • 功能动词:新增、修改、删除、优化、重构
    • 变更对象:页面、路由、接口、数据库表、查询条件、按钮等
    • 业务实体:将描述中的实体名转为搜索关键词
  2. 在项目代码中搜索相关文件

    Grep: pattern="{关键词}", path="{frontend.projectPath}/src"
    Grep: pattern="{关键词}", path="{backend.projectPath}/src"
    
  3. 分析代码变更范围

    • 识别受影响的 Controller / Service / Mapper(后端)
    • 识别受影响的页面组件 / Service API(前端)
    • 识别受影响的数据库表

步骤 5: 确定受影响的 Skills(影响矩阵)

根据变更类型,对照以下影响矩阵确定需要更新的 skills:

变更类型 e2e-orchestrator e2e-code-tracer e2e-testcase-generator e2e-playwright-runner e2e-error-fixer e2e-report-generator
新增页面/路由 更新 更新 更新 - - -
修改查询条件 - - 更新 - - -
修改 CRUD 逻辑 - - 更新 - 更新 -
改数据库表结构 - 更新 更新 - 更新 -
改前端 UI 组件 - 更新 更新 更新 - -
改前端路由 - 更新 - - - -
切换技术栈 全量 全量 全量 全量 全量 全量

Read the full file on GitHub · 180 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 · 180 lines · 33 tokens per session scan A f9bd17db368c

Subscribe to this mod's changes

e2e-skills-hub:update 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 33 tokens to every session and 1,997 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-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