zeus-tester

zeus-tester is an agent for Claude Code from huifer/zeus. It costs 63 tokens per session (896 once invoked), scanned A, original, MIT.

A test-scenario generator for Android, Chrome, and iOS projects. It reads product requirements and tasks, then outputs structured test instructions in JSON, a machine-readable text format.

In plain words
What is it for?
Use it to create test scenarios for each task, including normal and failure cases, with executable commands and checks for Android devices, Chrome, or iOS simulators.
Why use it?
It removes the need to write platform-specific test flows by hand and keeps the result aligned with the project's tasks and required format.

Agent for Claude Code

Install

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.

agentmods
npx agentmods add agents/huifer/zeus/zeus-tester
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-tester

README.md
[![agentmods](https://agentmods.dev/badge/agents/huifer/zeus/zeus-tester.svg)](https://agentmods.dev/agents/huifer/zeus/zeus-tester)
Your own site
<a href="https://agentmods.dev/agents/huifer/zeus/zeus-tester"><img src="https://agentmods.dev/badge/agents/huifer/zeus/zeus-tester.svg" alt="Measured on agentmods" height="20"></a>
Per session 63 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 896 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00063 $0.00896
Opus 5 $0.00032 $0.00448
Sonnet 5 $0.00013 $0.00179
Haiku 4.5 $0.00006 $0.00090

Measured 4d ago against content hash fd51675d8bed, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

zeus-tester 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 4d 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/agents/zeus-tester.md · 83 lines

How it starts

The opening of the file, as written. The whole thing — 83 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are the Zeus test case generation agent.

Your sole job: read Zeus planning artifacts and produce a complete, schema-valid test flow JSON for one platform.

Input contract

You receive a single prompt containing:

  • platform — one of android, chrome, ios
  • version — Zeus version name (e.g. main, v2)
  • Full content of task.json
  • Full content of prd.json
  • Full content of test-flow.schema.json
  • Platform command examples for the target platform

Output contract

Output ONLY valid JSON. No markdown code fences. No explanations. No comments. No trailing text.

The JSON must conform to test-flow.schema.json.

Generation rules

  1. One scenario per task minimum. High-priority stories get 2–3 scenarios (happy path + 1–2 edge/failure paths).
  2. Scenario IDs: TC-001, TC-002, ... sequential, no gaps.
  3. steps[].action must be a real, directly executable shell command for the target platform:
    • Android: adb shell ..., adb -s <serial> shell input tap X Y, etc.
    • Chrome: chrome-cli ... or CDP-based commands callable from shell
    • iOS: xcrun simctl ..., xcrun xcodebuild test ..., etc.
  4. Every step with an assertion must also have an expected value.
  5. Initialize all passes to false, all run_at to null, all failure_reason to null.
  6. generated_from: array of all task IDs from the input task.json.
  7. platform_defaults: fill with sensible placeholder values (device serial, bundle ID, etc.) that can be overridden at runtime.
  8. Keep steps atomic — one observable action per step, not compound chains.

Platform command reference

Android (adb)

adb devices                                            # list connected devices
adb -s <serial> shell am start -n <pkg>/<activity>    # launch app
adb -s <serial> shell input tap <x> <y>               # tap screen
adb -s <serial> shell input text "<text>"              # type text
adb -s <serial> shell input keyevent 4                 # BACK key
adb -s <serial> shell dumpsys window windows           # inspect focused window
adb -s <serial> shell uiautomator dump /sdcard/ui.xml  # dump UI hierarchy

Read the full file on GitHub · 83 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. 4d ago First seen · 83 lines · 63 tokens per session scan A fd51675d8bed

Subscribe to this mod's changes

zeus-tester is an agent published in the GitHub repository huifer/zeus (21 stars, last pushed 5mo ago), licensed MIT. It adds 63 tokens to every session and 896 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 agents, from other repositories

qa-agent

Persistent-session QA agent for {{targetrepo}}. On each scheduled sweep, discovers PRs opened or pushed since the last check, then checks out each one in its own isolated clone, runs the full verification suite, deploys the change to the test environment, exercises it through the edge, and posts a pass/fail result as…

kortix-ai/suna · 80 tokens

flaky-test-triage

Daily reusable-session flaky-test triage agent for {{targetrepo}}. On the {{cadence}} schedule, reads CI run history from GitHub, updates a per-test flakiness ledger, and once a test's score reaches {{quarantinethreshold}} opens a quarantine PR (skip + reason, never a deletion) plus a running tracking issue, and posts…

kortix-ai/suna · 86 tokens

test-automator

Create comprehensive test suites with unit, integration, and e2e tests. Sets up CI pipelines, mocking strategies, and test data. Use PROACTIVELY for test coverage improvement or test automation setup.

echoVic/blade-code · 46 tokens

Anti-Vibe Writing Dev

Use when developing anti-vibe-writing, a writing skill for AI agents that rewrites generated drafts into a more classic, polished, human style. Handles skill design, prompt assets, editing heuristics, README cleanup, docs maintenance, and safe local git automation.

weijt606/anti-vibe-writing · 58 tokens

web-demo-diagnose

Demo 测试诊断专家。只做失败诊断、问题分类和诊断报告输出,不修改业务代码。 触发场景: - Demo 测试失败后需要定位根因 - 需要判断问题属于测试代码、前端、后端、权限、数据还是环境 - 需要生成结构化诊断报告供后续修复 agent 使用 关键词:demo diagnose, test failure analysis, playwright error, selector failure, api failure, timeout.

timzaak/web-dev-skills · 105 tokens

taste-judge

Final-gate taste judge running a 3-lens internal panel over what rubrics cannot capture. Use SPARINGLY on high-stakes work (signature designs, hero copy, brand directions, architecture choices, must-be-right documents), normally after a deliverable has passed two clean verifier sweeps. Also use to rank best-of-N…

apoorvjain25/frontier · 135 tokens