e2e-skills-hub:list

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

A command that lists the end-to-end testing skills generated for the current project and checks their files, recorded hashes, timestamps, and status.

In plain words
What is it for?
Use it to inspect project or user-level E2E skill metadata, compare file hashes, find extra skill files, and review the latest update information.
Why use it?
It shows whether the generated testing instructions still exist and whether someone changed them after generation.

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 inspect project or user-level E2E skill metadata, compare file hashes, find extra skill files, and review the latest update information.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/try-catch-finally-awesome/e2e-skills-hub/list"><img src="https://agentmods.dev/badge/skills/try-catch-finally-awesome/e2e-skills-hub/list.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,132 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.00026 $0.01132
Opus 5 $0.00013 $0.00566
Sonnet 5 $0.00005 $0.00226
Haiku 4.5 $0.00003 $0.00113

Measured 11d ago against content hash 893bc1cb763e, 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:list 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/list/SKILL.md · 104 lines

How it starts

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

/e2e-skills-hub:list — 列出 Skills

用法

/e2e-skills-hub:list

参数

无参数。

执行步骤

步骤 1: 定位 Skills 存储目录

  1. 按以下优先级搜索 metadata.json

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

    当前项目未初始化 E2E Skills。
    请运行 /e2e-skills-hub:init 进行初始化。
    

    终止执行。

步骤 2: 读取元数据

  1. 读取 metadata.json,提取:
    • version: 插件版本
    • generatedAt: 初始生成时间
    • techStack: 技术栈摘要
    • skills: 各 skill 的名称、路径、哈希
    • updateHistory: 更新历史(最近一条)

步骤 3: 扫描实际文件状态

  1. 扫描 Skills 目录下的所有 SKILL.md 文件:

    Glob: {skills_dir}/*/SKILL.md
    
  2. 对每个已注册的 skill,检查:

    • 文件是否存在
    • 计算当前文件的 SHA-256 哈希:
      Bash: sha256sum {skills_dir}/{skill-name}/SKILL.md
      
    • 与 metadata.json 中记录的哈希比较,判断是否被手动修改过
    • 获取文件最后修改时间:
      Bash: stat -c '%Y' {skills_dir}/{skill-name}/SKILL.md 2>/dev/null || stat -f '%m' {skills_dir}/{skill-name}/SKILL.md
      
  3. 检查是否有未在 metadata.json 中注册的额外文件

步骤 4: 输出列表

以表格格式输出:

E2E Skills 列表 ({存储位置})
技术栈: {backend.language} {backend.framework} + {frontend.framework}
初始生成: {generatedAt}
最后更新: {lastUpdateTime} ({updateType})

| # | Skill 名称               | 路径                                    | 状态   | 最后更新时间        | 哈希(前8位) |
|---|--------------------------|----------------------------------------|--------|-------------------|------------|
| 1 | e2e-orchestrator         | e2e-orchestrator/SKILL.md              | 正常   | 2026-03-19 10:30  | abc12345   |
| 2 | e2e-code-tracer          | e2e-code-tracer/SKILL.md               | 正常   | 2026-03-19 10:30  | def67890   |
| 3 | e2e-testcase-generator   | e2e-testcase-generator/SKILL.md        | 已修改 | 2026-03-19 14:20  | ghi24680   |
| 4 | e2e-playwright-runner    | e2e-playwright-runner/SKILL.md         | 正常   | 2026-03-19 10:30  | jkl13579   |
| 5 | e2e-error-fixer          | e2e-error-fixer/SKILL.md               | 正常   | 2026-03-19 10:30  | mno97531   |
| 6 | e2e-report-generator     | e2e-report-generator/SKILL.md          | 缺失   | -                 | -          |

总计: 6 个 Skills (5 存在, 1 缺失, 1 已修改)
更新历史: 共 3 次更新 (2 次增量 + 1 次全量)

Read the full file on GitHub · 104 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 · 104 lines · 26 tokens per session scan A 893bc1cb763e

Subscribe to this mod's changes

e2e-skills-hub:list 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 26 tokens to every session and 1,132 once invoked, about $0.0001 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