qawolfCliRunResults.template

qawolfCliRunResults.template is a command for Claude Code from qawolf/cli. It costs 0 tokens per session (1,563 once invoked), scanned A, original, Apache-2.0.

Instructions for reading the JSON results of a QAWolf test run and the Playwright trace linked from them. QAWolf runs browser test flows, while Playwright traces record what happened during a browser test.

In plain words
What is it for?
It is for checking whether a run passed, failed, or was canceled; finding logs, traces, and videos; and diagnosing failed browser-test flows.
Why use it?
They explain fields that appear only after failures, how runs and attempts are organized, and how to follow the correct run identifier while polling for completion.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md).

Good fit It is for checking whether a run passed, failed, or was canceled; finding logs, traces, and videos; and diagnosing failed browser-test flows.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/qawolf/cli/qawolfclirunresults.template
About the project

QA Wolf CLI is a command-line tool for running and managing QA Wolf end-to-end testing flows from a local terminal or continuous-integration environment. Development and QA teams use it to execute their browser-test flows, while test creation, AI test generation, cloud execution, and collaboration belong to the wider QA Wolf platform.

qawolf/cli · 3,446 stars · on GitHub · docs.qawolf.com

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.

Clone the repo
git clone --depth 1 https://github.com/qawolf/cli

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 qawolfCliRunResults.template

README.md
[![agentmods](https://agentmods.dev/badge/commands/qawolf/cli/qawolfclirunresults.template.svg)](https://agentmods.dev/commands/qawolf/cli/qawolfclirunresults.template)
Your own site
<a href="https://agentmods.dev/commands/qawolf/cli/qawolfclirunresults.template"><img src="https://agentmods.dev/badge/commands/qawolf/cli/qawolfclirunresults.template.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,563 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00000 $0.01563
Opus 5 $0.00000 $0.00781
Sonnet 5 $0.00000 $0.00313
Haiku 4.5 $0.00000 $0.00156

Measured 7d ago against content hash 5a8d8074c983, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

qawolfCliRunResults.template scanned grade A with 1 finding 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 7d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

| xargs -r curl -sS -o trace.zip
src/commands/qawolfCliRunResults.template.md · 149 lines

How it starts

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

Reading a run's results

How to use what qawolf run get --run-id <id> --json returns, and how to read the Playwright trace it links to.

Call run get with --json and you see most of the response immediately. Read this file for the parts a single response cannot show you: fields that appear only when something fails, rules about the artifact URLs, and how to read a trace without opening the trace viewer.

The shape

A run holds flows, a flow holds attempts, and artifacts hang off an attempt:

run
└── flows[]
    ├── failure          only when the flow failed
    └── attempts[]       oldest first
        ├── logsUrl
        ├── traceUrl
        └── videoUrl

runId in the response is canonical and can differ from the id you asked for. Use the returned value for follow-up calls.

Poll status until it reaches passed, failed or canceled. The other values mean the run is still going.

Fields a passing run does not show you

  • flows[].failure exists only when a flow failed. Every flow passing means there is no failure object at all, so its diagnosis and issue id are invisible until something breaks. Do not conclude the field does not exist.
  • git is populated only when a deploy notification started the run. A run started manually or with run create has an empty object here.
  • An attempt's kind and status select which other fields it has. Only automated attempts that reached a verdict carry artifact URLs; canceled attempts and manual Wolf Browser attempts carry none.
  • A flow that passed after a retry still lists its failed attempts. Read the last attempt for the outcome, and the earlier ones to see what went wrong.

Artifact URLs

Each automated attempt links logsUrl (execution logs), videoUrl (screen recording) and traceUrl (a Playwright trace.zip).

  1. They are signed URLs with a limited life. The contract guarantees at least a day. Call run get again for fresh ones instead of storing them; a stored URL becomes a dead link.
  2. A URL can return 404 when that attempt did not produce that artifact. Handle the 404 rather than treating the URL's presence as a guarantee of content.
  3. Download with a plain HTTP GET. The signature is in the URL, so no authentication header is needed and no QA Wolf credentials are involved.

Read the full file on GitHub · 149 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. 7d ago First seen · 149 lines · 0 tokens per session scan A 5a8d8074c983

Subscribe to this mod's changes

qawolfCliRunResults.template is a command published in the GitHub repository qawolf/cli (3,446 stars, last pushed today), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,563 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.