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.
npx agentmods add commands/fastslack/mtw-e2e-runner/create-testgit clone --depth 1 https://github.com/fastslack/mtw-e2e-runnerWhat 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 | $0.00015 | $0.00803 |
| Opus 5 | $0.00008 | $0.00402 |
| Sonnet 5 | $0.00003 | $0.00161 |
| Haiku 4.5 | $0.00002 | $0.00080 |
Grade A, and why
create-test 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 64 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create E2E Test
Help the user create a new E2E test file by exploring the application and designing appropriate test actions.
Workflow
-
Understand the goal — Ask the user what they want to test if not already specified. Identify the page(s), user flow, and expected outcomes.
-
Check pool — Call
e2e_pool_statusto ensure the Chrome pool is available. -
Explore the UI — Use
e2e_captureto screenshot the target page(s). This helps understand the current state of the UI, available elements, and layout. -
Check existing tests — Call
e2e_listto see what test suites already exist. Read relevant existing test files withReadto follow conventions and avoid duplication. -
Explore source code (optional) — If needed, use
GrepandReadto find selectors, form field IDs, API endpoints, or component structure in the application source code. -
Design the test — Based on UI exploration and source code analysis, design the test actions:
- Use the most specific selectors available (data-testid > id > class > text)
- Prefer granular assertion actions over
evaluate - Use framework-aware actions for React/MUI (
type_react,click_option,focus_autocomplete) - Add
waitactions before assertions on dynamic content - Add
assert_no_network_errorsafter critical page loads - Consider adding an
expectfield for visual verification - DRY: If auth/setup is repeated across tests, use
beforeEachhook (object format) instead of repeating per test - DRY: If 3+ tests repeat the same action pattern, create a module with
e2e_create_modulefirst
-
Create the test — Call
e2e_create_testwith the designed test structure.- Check existing modules (
e2e/modules/) — reuse them via$useinstead of duplicating actions - Create new modules with
e2e_create_modulefor repeated sequences (auth, navigation, screenshot patterns) - Use object format
{ "beforeEach": [...], "tests": [...] }when hooks are needed
- Check existing modules (
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.
- yesterday First seen · 64 lines · 15 tokens per session scan A c5d3d9f1f639
create-test is a command published in the GitHub repository fastslack/mtw-e2e-runner (3 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 15 tokens to every session and 803 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.
Other commands, from other repositories
audit
Run a full WCAG + NIST compliance audit with signed evidence pack.
multi-page
Smoke test multiple pages in parallel using alethiatellparallel.
regression
Run a fixed assertion suite against a URL — fail on any regression.
bootstrap
Scan a page with alethiaproposetests then run each suggested block.
safety-check
Verify the EA1 safety gate blocks all destructive actions on a page.
smoke
Quick Alethia smoke test — navigate and assert the page loads.