Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add TheLobbi/claude/plugin install claude-orchestrationWrote 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.
[](https://agentmods.dev/commands/thelobbi/claude/e2e-test-run)<a href="https://agentmods.dev/commands/thelobbi/claude/e2e-test-run"><img src="https://agentmods.dev/badge/commands/thelobbi/claude/e2e-test-run.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00020 | $0.04761 |
| Opus 5 | $0.00010 | $0.02380 |
| Sonnet 5 | $0.00004 | $0.00952 |
| Haiku 4.5 | $0.00002 | $0.00476 |
Grade A, and why
e2e-test-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 5d 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.
curl -f http://localhost:8080/health/ready || { echo "ERROR: Keycloak not ready"; exit 1; } How it starts
The opening of the file, as written. The whole thing — 707 lines — stays where its author put it; the contents beside it link to each section on GitHub.
E2E Test Runner
Execute comprehensive end-to-end tests for the Lobbi member management system using Playwright, including authentication flows, member management, subscription handling, and multi-tenant isolation.
Usage
/e2e-test-run [suite] [options]
Description
This command orchestrates E2E testing by:
- Setting up isolated test environment
- Provisioning test organizations and users
- Executing test suites in parallel or sequentially
- Capturing screenshots and videos on failures
- Generating detailed HTML reports
- Cleaning up test data automatically
- Supporting multiple browsers (Chromium, Firefox, WebKit)
Prerequisites
Required Services:
- Keycloak running in test mode
- MongoDB test database
- Redis test instance
- Member API running on test port
- Frontend application built and served
Environment Variables:
# Test environment
NODE_ENV=test
TEST_BASE_URL=http://localhost:3001
TEST_KEYCLOAK_URL=http://localhost:8080
TEST_DATABASE_URL=mongodb://admin:admin@localhost:27017/member_db_test?authSource=admin
TEST_REDIS_URL=redis://localhost:6379/1
# Test credentials
[email protected]
TEST_ADMIN_PASSWORD=TestPassword123!
[email protected]
TEST_MEMBER_PASSWORD=TestPassword123!
# Playwright configuration
PLAYWRIGHT_BROWSERS_PATH=/home/user/.cache/ms-playwright
HEADLESS=true
SLOWMO=0 # Slow down tests (ms) for debugging
Install Dependencies:
# Install Playwright and browsers
npm install -D @playwright/test
npx playwright install --with-deps chromium firefox webkit
# Install test utilities
npm install -D @faker-js/faker dotenv
Test Suites
Available Test Suites
- auth - Authentication and authorization tests
- members - Member CRUD operations
- subscriptions - Subscription management flows
- multi-tenant - Tenant isolation and data segregation
- admin - Admin portal functionality
- api - API endpoint testing
- full - Complete test suite (all of the above)
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.
- 5d ago First seen · 707 lines · 20 tokens per session scan A 8e46ee1df212
e2e-test-run is a command published in the GitHub repository TheLobbi/claude (21 stars, last pushed yesterday), licensed MIT. It adds 20 tokens to every session and 4,761 once invoked, about $0.0001 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.
Other commands, from other repositories
paul:verify
Guide manual user acceptance testing of recently built features.
plan-spec
仅在人工明确安排 UI 自动化时,根据任务、产品规则或原型生成独立行为 Spec.
journey-audit
Outside-in product audit as a deep session — 7 read-only roles check what the site promises against what the code does, what a user experiences, what arrives by mail, and what the data says is used. Writes a dossier; needs a per-repo journey-manifest.
laravel-playwright
E2E Playwright patterns; use the laravel:e2e-playwright skill exactly as written.
compose-test
Run Compose UI tests with Espresso. Verify critical user flows.
qa
Smoke or browser-walk a running app. Report only. Do not implement. Do not merge.