fetch-test-report

fetch-test-report is a command for Claude Code from wangke19/gemini-ai-helpers. It costs 17 tokens per session (743 once invoked), scanned A, a copy of fetch-test-report, Apache-2.0.

A command that retrieves an OpenShift CI test report from Sippy, a service that tracks automated test results. The report includes recent pass rates, the test’s identifier, its Jira component, and related open bugs.

In plain words
What is it for?
Use it with a test name, and optionally a release, to inspect pass rates, test metadata, open bugs, or a breakdown by test variant.
Why use it?
It gathers current and previous-week test health and associated bug information in one report, reducing manual checks across testing and issue-tracking systems.

Command for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: positional $N argument.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is release=$(python3 extensions/ci/skills/fetch-releases/fetch_releases.py --latest).

Good fit Use it with a test name, and optionally a release, to inspect pass rates, test metadata, open bugs, or a breakdown by test variant.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/wangke19/gemini-ai-helpers
agentmods
npx agentmods add commands/wangke19/gemini-ai-helpers/fetch-test-report

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 fetch-test-report

README.md
[![agentmods](https://agentmods.dev/badge/commands/wangke19/gemini-ai-helpers/fetch-test-report.svg)](https://agentmods.dev/commands/wangke19/gemini-ai-helpers/fetch-test-report)
Your own site
<a href="https://agentmods.dev/commands/wangke19/gemini-ai-helpers/fetch-test-report"><img src="https://agentmods.dev/badge/commands/wangke19/gemini-ai-helpers/fetch-test-report.svg" alt="Measured on agentmods" height="20"></a>
Per session 17 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 743 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 94% copy Near-identical to another mod 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.00017 $0.00743
Opus 5 $0.00009 $0.00371
Sonnet 5 $0.00003 $0.00149
Haiku 4.5 $0.00002 $0.00074

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

Security

Grade A, and why

fetch-test-report 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.

Origin

This is a copy

94% identical to fetch-test-report — 8 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

extensions/ci/commands/fetch-test-report.md · 68 lines

How it starts

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

Name

ci:fetch-test-report

Synopsis

/ci:fetch-test-report <test-name> [release]

Description

The ci:fetch-test-report command fetches a report for an OpenShift CI test by name from the Sippy API. It returns the test's BigQuery/Component Readiness test ID, Jira component, pass rates for the current and previous 7-day periods, and open bug counts. The open_bugs field counts Jira bugs that mention this test by name — this can help surface bugs that have been filed but not yet triaged in Component Readiness.

Implementation

  1. Determine the release: If the user did not specify a release, use the fetch-releases skill to get the latest OCP release:

    release=$(python3 extensions/ci/skills/fetch-releases/fetch_releases.py --latest)
    

    If the user specified a release (e.g., "4.21"), use that value directly.

  2. Fetch the test report: Use the fetch-test-report skill to query the Sippy tests API:

    python3 extensions/ci/skills/fetch-test-report/fetch_test_report.py "<test-name>" --release "$release" --format summary
    

    To see a per-variant breakdown (one row per variant combo), add --no-collapse:

    python3 extensions/ci/skills/fetch-test-report/fetch_test_report.py "<test-name>" --release "$release" --no-collapse --format summary
    
  3. Present the results: Show the user the test report including test ID, pass rates, Jira component, open bugs, and trend. If open_bugs > 0, note that existing Jira bugs mention this test — these may be relevant even if the regression hasn't been triaged in Component Readiness yet.

Return Value

  • Format: Human-readable summary of the test report
  • Key fields: test_id (BigQuery/Component Readiness ID), jira_component, current/previous pass rates, run counts, trend, open_bugs
  • open_bugs: Count of Jira bugs mentioning this test by name — helps find bugs filed but not yet triaged in Component Readiness
  • variants (with --no-collapse): Per-variant breakdown showing which job types the test passes/fails in

Read the full file on GitHub · 68 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 · 68 lines · 17 tokens per session scan A a78bd5515712

Subscribe to this mod's changes

fetch-test-report is a command published in the GitHub repository wangke19/gemini-ai-helpers (2 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 17 tokens to every session and 743 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 94% identical to fetch-test-report, differing in 8 lines, and is treated as a copy.