e2e-skills-hub:export

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

A command for copying generated end-to-end testing skills into another directory. End-to-end tests check an application through complete user-like flows.

In plain words
What is it for?
Use it with a destination path to export the available E2E skills, including the orchestrator, code tracer, and test-case generator.
Why use it?
It helps back up or share those testing skills after they have been created in the project or user’s skill directory.

Skill for Claude Code

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

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is /e2e-skills-hub:export ./backup/e2e-skills.

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

Good fit Use it with a destination path to export the available E2E skills, including the orchestrator, code tracer, and test-case generator.

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/Try-catch-finally-awesome/e2e-skills-hub
agentmods
npx agentmods add skills/try-catch-finally-awesome/e2e-skills-hub/export

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:export

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/try-catch-finally-awesome/e2e-skills-hub/export"><img src="https://agentmods.dev/badge/skills/try-catch-finally-awesome/e2e-skills-hub/export.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 990 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.00032 $0.00990
Opus 5 $0.00016 $0.00495
Sonnet 5 $0.00006 $0.00198
Haiku 4.5 $0.00003 $0.00099

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

Security

Grade A, and why

e2e-skills-hub:export 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.

skills/export/SKILL.md · 128 lines

How it starts

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

/e2e-skills-hub:export — 导出 Skills

用法

/e2e-skills-hub:export ./backup/e2e-skills
/e2e-skills-hub:export /path/to/shared/skills
/e2e-skills-hub:export ~/Desktop/my-e2e-skills

参数

参数 类型 必填 默认值 说明
<dir> string - 导出目标目录路径,如目录不存在则自动创建

执行步骤

步骤 1: 验证参数

  1. 检查用户是否提供了 <dir> 参数
  2. 如未提供:
    用法: /e2e-skills-hub:export <dir>
    示例: /e2e-skills-hub:export ./backup/e2e-skills
    
    终止执行。

步骤 2: 定位源文件

  1. 按优先级搜索已生成的 Skills:

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

    错误: 当前项目没有已生成的 E2E Skills。请先运行 /e2e-skills-hub:init。
    

    终止执行。

  3. 盘点源目录中的文件:

    Glob: {skills_dir}/**/*
    

步骤 3: 检查目标目录

  1. 检查目标目录是否已存在:

    Bash: test -d "<dir>" && echo "EXISTS" || echo "NOT_EXISTS"
    
  2. 如已存在且非空:

    目标目录 '<dir>' 已存在且不为空。
    继续导出将覆盖同名文件。确认? (y/n)
    

    用户取消则终止。

  3. 如不存在,创建目标目录:

    Bash: mkdir -p "<dir>"
    

步骤 4: 执行复制

  1. 复制所有 Skill 文件和目录结构:

    Bash: cp -r "{skills_dir}/e2e-orchestrator" "<dir>/"
    Bash: cp -r "{skills_dir}/e2e-code-tracer" "<dir>/"
    Bash: cp -r "{skills_dir}/e2e-testcase-generator" "<dir>/"
    Bash: cp -r "{skills_dir}/e2e-playwright-runner" "<dir>/"
    Bash: cp -r "{skills_dir}/e2e-error-fixer" "<dir>/"
    Bash: cp -r "{skills_dir}/e2e-report-generator" "<dir>/"
    
  2. 复制配置文件:

    Bash: cp -r "{skills_dir}/config" "<dir>/"
    
  3. 复制元数据文件:

    Bash: cp "{skills_dir}/metadata.json" "<dir>/"
    

步骤 5: 验证导出结果

  1. 确认目标目录中的文件完整性:

    Glob: <dir>/**/*
    
  2. 对比源文件和目标文件数量是否一致

步骤 6: 输出结果

✓ 导出完成
  源路径: {skills_dir}
  目标路径: <dir>
  导出文件:
    {n} 个 SKILL.md 文件
    config/projects.yaml
    metadata.json
  共 {total} 个文件

输出

  • 导出确认结果和文件清单

错误处理

错误场景 处理方式
未提供目标目录参数 输出用法说明
源 Skills 不存在 提示运行 /e2e-skills-hub:init
目标目录创建失败(权限不足) 输出 错误: 无法创建目录 '<dir>',请检查权限
文件复制失败 列出成功和失败的文件,提示检查磁盘空间和权限
源目录中部分文件缺失 输出警告,仅复制存在的文件

Read the full file on GitHub · 128 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 · 128 lines · 32 tokens per session scan A 6b9dac5bab1d

Subscribe to this mod's changes

e2e-skills-hub:export 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 32 tokens to every session and 990 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