zeus: Skill for Claude Code

.claude/skills/zeus-test-gen/SKILL.md

zeus-test-gen is a skill for Claude Code from huifer/zeus. It costs 58 tokens per session (938 once invoked), scanned A, original, MIT.

A generator for platform-specific end-to-end test flows from Zeus planning files. End-to-end tests check a complete user journey across an application.

In plain words
What is it for?
Use it to generate Android, Chrome, and iOS test files, either for all platforms or for a selected subset and Zeus version.
Why use it?
It turns planned stories and tasks into test scenarios for supported platforms instead of requiring people to write every scenario manually.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

This is huifer/zeus's own configuration. It tells Claude Code how to work on zeus itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything zeus configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is bash .zeus/scripts/generate-tests.sh \.

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/huifer/zeus/main/.claude/skills/zeus-test-gen/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/huifer/zeus

Made for: Claude Code.

Wrote 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.

agentmods badge for zeus-test-gen

README.md
[![agentmods](https://agentmods.dev/badge/skills/huifer/zeus/zeus-test-gen.svg)](https://agentmods.dev/skills/huifer/zeus/zeus-test-gen)
Your own site
<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>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 938 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 8d ago against content hash 20228444b3dc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

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.

.claude/skills/zeus-test-gen/SKILL.md · 131 lines

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.json exists and has at least one task.
  • .zeus/{version}/prd.json exists and has at least one story.
  • .zeus/schemas/test-flow.schema.json exists.
  • .zeus/{version}/config.json exists.
  • generate-tests.sh is executable.
  • claude CLI 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%

Read the full file on GitHub · 131 lines

Changes

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.

  1. 8d ago First seen · 131 lines · 0 tokens per session scan A 20228444b3dc

Subscribe to this mod's changes

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.

Related

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…

AdamBien/airails · 233 tokens

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…

AdamBien/airails · 157 tokens

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"…

AdamBien/airails · 84 tokens

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…

ShieldNet-360/secure-vibe · 91 tokens

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.

Wade-DevCode/awesome-coding-skills-cn · 25 tokens

cmd_e2e

Legacy slash-entry shim for the e2e-testing skill. Prefer the skill directly.

majiang213/OpenClaw-MAS · 22 tokens