Agent-native E2E runtime with verifiable safety. 13 MCP tools including alethia_propose_tests (agent generates tests from a URL), alethia_assert_safety (proves destructive actions are blocked), and the expect block: NLP primitive unique to Alethia. Zero-IPC, ~45x faster than Playwright, signed evidence packs. Works with Claude Code, Cursor, Cline.
95
94%
Does it follow best practices?
Impact
97%
2.77xAverage score across 5 eval scenarios
Advisory
Suggest reviewing before use
Holloway Health is building a new patient registration portal. The QA team wants automated E2E tests that exercise the full sign-up form at file:///workspace/holloway/register.html. The form includes standard fields (full name, email address) as well as a password field and a payment method section with a credit card number field.
The tech lead wants the tests to be ready for two separate scenarios:
Produce a complete test script for each scenario. The tests will be reviewed by a compliance officer, so each test call should be clearly identifiable in the audit trail.
Produce the following files:
smoke_test_script.json — A JSON document representing the tool calls for the smoke test, in the format:
{
"steps": [
{ "tool": "<tool_name>", "params": { ... }, "purpose": "<why>" },
...
]
}auth_flow_script.json — A JSON document representing the tool calls for the auth flow test (which includes typing into the password field), in the same format.
decisions.md — A brief document explaining the key parameter choices made between the two test scripts and why they differ.