From e2e-pipeline
Use when the user explicitly invokes /e2e-dispatch or asks for the E2E operations menu without specifying a particular operation. This is a unified router — for specific operations, prefer e2e-test, e2e-map, e2e-walkthrough, or e2e-skill-ops directly.
How this skill is triggered — by the user, by Claude, or both
Slash command
/e2e-pipeline:e2e-dispatchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Route E2E operations to the correct executor with auth pre-flight.
Route E2E operations to the correct executor with auth pre-flight.
/e2e-dispatch <intent> [options]
| Argument | Example |
|---|---|
--test <flow> | /e2e-dispatch --test login-flow |
--test --tag <tag> | /e2e-dispatch --test --tag smoke |
--test --suite <name> | /e2e-dispatch --test --suite smoke |
--test --all | /e2e-dispatch --test --all |
--map <app> | /e2e-dispatch --map my-app |
--map --interactive | /e2e-dispatch --map my-app --interactive |
--walk [mapping] | /e2e-dispatch --walk admin-panel |
--analyze <path> | /e2e-dispatch --analyze e2e-reports/trace.zip |
--ops [mode] | /e2e-dispatch --ops --debug |
No args or ambiguous request: present the routing menu and ask user to choose:
Available E2E operations:
--test— Run E2E test flows (single flow, suite, tag, or all)--map— Create or update UI element mappings--walk— Interactive walkthrough / explore UI--analyze— Analyze a Playwright trace file--ops— Debug, maintain, or evaluate E2E skillsWhich operation? (or describe what you want to do)
Routing priority (when user intent matches multiple routes):
--flag → use that route directly--test, "record/map" → --map, "walk/explore/browse" → --walk, "analyze/trace" → --analyze, "debug/fix skill" → --opsUnknown command (e.g., --deploy, --something): respond with "Unknown e2e operation. Available operations:" + the menu above.
Applies to: --test, --map, --walk (NOT --analyze or --ops)
Determine app name from the arguments:
--test: resolve flow file → read mapping: field → load mapping → app field--test --suite: resolve suite → collect all unique site mappings → app fields (check all)--map <app>: use the <app> argument directly--walk [mapping]: read mapping file → app fieldCheck auth profile exists:
ls ~/.agent-browser/<app>/ 2>/dev/null && echo "EXISTS" || echo "MISSING"
Check server reachable:
curl -s -o /dev/null -w "%{http_code}" <base_url>
Any 2xx or 3xx = OK. Fail → report and stop.
Profile missing or expired:
agent-browser --profile ~/.agent-browser/<app> --headed open <base_url>auth.manual_prompt (or default: "Please complete login in the browser. Let me know when done.")agent-browser get url → verify against auth.verificationagent-browser close), proceed to dispatchAuth gate pass → proceed to dispatch
Invoke Skill: "e2e-test" with the original arguments (flow name, --tag, --suite, --all, --pr, --issue, --video).
The e2e-test skill handles flow resolution and dispatches e2e-test-runner agent(s).
Invoke Skill: "e2e-map" with --scope and --page arguments.
The e2e-map skill runs codebase analysis then dispatches e2e-mapper agent.
Invoke Skill: "e2e-map" — runs entirely in main context (interactive mode).
Invoke Skill: "e2e-walkthrough" with mapping name and any --mode, --smoke, --sites, --pr, --issue, --no-video arguments.
Runs entirely in main context (interactive).
Dispatch directly — no skill needed:
Agent(subagent_type="e2e-trace-analyzer"):
trace_path: <absolute path to trace.zip>
report_dir: <dirname of trace_path>
Present summary when agent returns.
Invoke Skill: "e2e-skill-ops" with --debug/--maintain/--add-feature/--evaluate mode.
| Route | Default | Override |
|---|---|---|
--test | Background | --fg for foreground |
--map (no --interactive) | Background | --fg for foreground |
--map --interactive | Foreground | — |
--walk | Foreground | — |
--analyze | Background | --fg for foreground |
--ops | Foreground | — |
Background = run_in_background: true on Agent dispatch. Main context free for other work.
Foreground = wait for completion, interactive.
Direct invocation of /e2e-test, /e2e-map, /e2e-walkthrough, /e2e-skill-ops still works.
/e2e-dispatch is a convenience unified entry point — not required.
| Need | Command |
|---|---|
| Run one flow | /e2e-dispatch --test login-flow |
| Smoke suite | /e2e-dispatch --test --suite smoke |
| All smoke tagged | /e2e-dispatch --test --tag smoke |
| Map new app | /e2e-dispatch --map my-app |
| Update one page | /e2e-dispatch --map my-app --page dashboard |
| Interactive explore | /e2e-dispatch --walk admin-panel |
| Analyze trace | /e2e-dispatch --analyze e2e-reports/20260306/trace.zip |
| Debug skill issue | /e2e-dispatch --ops --debug |
| Record a test run | /e2e-dispatch --test login-flow --video |
| Walkthrough no video | /e2e-dispatch --walk admin-panel --no-video |
npx claudepluginhub iamcxa/claude-e2e-pipelineOrchestrates full-cycle E2E testing: sets up agents, creates BDD scenarios, writes autotests, and performs quorum reviews. For e2e, end-to-end, BDD workflows.
Executes an existing Playwright E2E suite against a confirmed non-production target and returns a structured run report with pass/fail/flaky counts, durations, and trace artifacts. Requires explicit operator opt-in per session.
Executes end-to-end tests for full user workflows across frontend and backend using Playwright, Cypress, or Selenium. Use for specialized testing of user journeys.