Borrowing it
Nothing to install: this file belongs to huifer/zeus. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/huifer/zeus/main/.claude/skills/zeus-test-gen/SKILL.mdgit clone --depth 1 https://github.com/huifer/zeusWrote 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/skills/huifer/zeus/zeus-test-gen)<a href="https://agentmods.dev/skills/huifer/zeus/zeus-test-gen"><img src="https://agentmods.dev/badge/skills/huifer/zeus/zeus-test-gen.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.00058 | $0.00938 |
| Opus 5 | $0.00029 | $0.00469 |
| Sonnet 5 | $0.00012 | $0.00188 |
| Haiku 4.5 | $0.00006 | $0.00094 |
Grade A, and why
zeus-test-gen 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 8d 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.
How it starts
The opening of the file, as written. The whole thing — 131 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Zeus Test Gen — AI Test Flow Generation
Generate platform-specific end-to-end test scenarios from Zeus planning artifacts. AI (zeus-tester agent) authors the test cases. Humans do not write scenarios manually.
Preconditions
.zeus/{version}/task.jsonexists and has at least one task..zeus/{version}/prd.jsonexists and has at least one story..zeus/schemas/test-flow.schema.jsonexists..zeus/{version}/config.jsonexists.generate-tests.shis executable.claudeCLI is installed and reachable.
Optional arguments
--version vN— target Zeus version folder (default:main)--platforms android,chrome,ios— subset of platforms to generate (default: all three)
Deterministic workflow
1) Check preconditions
Verify all required files exist. If any is missing, print a clear error and abort.
for f in .zeus/{version}/task.json .zeus/{version}/prd.json .zeus/schemas/test-flow.schema.json; do
[[ -f "$f" ]] || { echo "❌ Missing: $f"; exit 1; }
done
2) Show generation plan
Print a preview before executing:
Platform(s) to generate : android, chrome, ios
Task source : .zeus/{version}/task.json (N tasks)
Story source : .zeus/{version}/prd.json (N stories)
Output directory : .zeus/{version}/tests/
Require user confirmation to proceed (yes/no).
3) Run generate-tests.sh
bash .zeus/scripts/generate-tests.sh \
--version {version} \
--platforms {platforms}
Stream output to the user in real time.
4) Validate generated files
For each output file:
jq empty .zeus/{version}/tests/{platform}.test.json && echo "✓ valid JSON"
Report scenario counts per platform.
5) Print coverage report
After generation succeeds, output a coverage table:
Platform | Scenarios | Tasks covered | Coverage
----------|-----------|---------------|----------
android | 8 | 5/6 | 83%
chrome | 6 | 5/6 | 83%
ios | 7 | 5/6 | 83%
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.
- 8d ago First seen · 131 lines · 0 tokens per session scan A 20228444b3dc
zeus-test-gen is a skill published in the GitHub repository huifer/zeus (22 stars, last pushed 5mo ago), licensed MIT. It adds 58 tokens to every session and 938 once invoked, about $0.0003 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-30.
Other skills, from other repositories
web-system-tests
The web realization of the system-tests contract — browser-driven system tests with Playwright against a running frontend. Owns the project layout (tests/), the Playwright configuration (baseURL plus webServer, cross-engine projects), the role- and label-based selector policy, code coverage as an opt-in second run…
system-tests
Generic, composable conventions for system tests — black-box tests exercising the running system from the outside through its public surface. Defines the stack-neutral contract (no internals, environment coordinates as configuration, test isolation, total verdict reporting) and the taxonomy of expectation origins…
continuous-testing
Continuous test-driven development loop — after every code change, builds the project, starts the server, and runs Unit Tests, Integration Tests, and System Tests. Applies on top of microprofile-server skill. Use during development when you want full verification after each change. Triggers on "continuous testing"…
security-regression-tests
Turning a confirmed and fixed finding into a permanent guard: proving the test fails without the fix, asserting the effect and not only the status code, seeding the two principals an authorization test needs, making a timing or out-of-band proof deterministic enough for CI, and keeping the test in a job that can…
integration-testing
Guidance for writing integration and end-to-end tests that use real databases, HTTP services, or message queues. It also covers keeping each test independent and repeatable.
cmd_e2e
Legacy slash-entry shim for the e2e-testing skill. Prefer the skill directly.