Prow Job Extract Must-Gather

Prow Job Extract Must-Gather is a skill for Claude Code, Codex from wangke19/gemini-ai-helpers. It costs 30 tokens per session (4,723 once invoked), scanned C, original, Apache-2.0.

A tool for extracting must-gather archives from Prow CI artifacts. Must-gather archives contain collected information about an OpenShift cluster, and the tool creates a searchable HTML file browser.

In plain words
What is it for?
Use it to unpack Prow must-gather results, search their contents, filter files, and inspect OpenShift cluster state from test runs.
Why use it?
It removes the manual work of downloading, unpacking nested archives, and locating files in CI diagnostic data.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: names the AskUserQuestion tool.

Good fit Use it to unpack Prow must-gather results, search their contents, filter files, and inspect OpenShift cluster state from test runs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wangke19/gemini-ai-helpers/prow-job-extract-must-gather
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.

Any agent
npx skills add wangke19/gemini-ai-helpers --skill prow-job-extract-must-gather
Clone the repo
git clone --depth 1 https://github.com/wangke19/gemini-ai-helpers

Made for: Claude Code, Codex.

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 Prow Job Extract Must-Gather

README.md
[![agentmods](https://agentmods.dev/badge/skills/wangke19/gemini-ai-helpers/prow-job-extract-must-gather/github.svg)](https://agentmods.dev/skills/wangke19/gemini-ai-helpers/prow-job-extract-must-gather)
Your own site
<a href="https://agentmods.dev/skills/wangke19/gemini-ai-helpers/prow-job-extract-must-gather"><img src="https://agentmods.dev/badge/skills/wangke19/gemini-ai-helpers/prow-job-extract-must-gather/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for Prow Job Extract Must-Gather

Your own site · 80×15
<a href="https://agentmods.dev/skills/wangke19/gemini-ai-helpers/prow-job-extract-must-gather"><img src="https://agentmods.dev/badge/skills/wangke19/gemini-ai-helpers/prow-job-extract-must-gather.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,723 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 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.00030 $0.04723
Opus 5 $0.00015 $0.02361
Sonnet 5 $0.00006 $0.00945
Haiku 4.5 $0.00003 $0.00472

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

Security

Grade C, and why

Prow Job Extract Must-Gather scanned grade C 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 12d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (extract_archives.py, generate_html_report.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

- Remove all existing content: `rm -rf .work/prow-job-extract-must-gather/{build_id}/logs/`
extensions/ci/skills/prow-job-extract-must-gather/SKILL.md · 491 lines

How it starts

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

Prow Job Extract Must-Gather

This skill extracts and decompresses must-gather archives from Prow CI job artifacts, automatically handling nested tar and gzip archives, and generating an interactive HTML file browser.

When to Use This Skill

Use this skill when the user wants to:

  • Extract must-gather archives from Prow CI job artifacts
  • Avoid manually downloading and extracting nested archives
  • Browse must-gather contents with an interactive HTML interface
  • Search for specific files or file types in must-gather data
  • Analyze OpenShift cluster state from CI test runs

Prerequisites

Before starting, verify these prerequisites:

  1. gcloud CLI Installation

  2. gcloud Authentication (Optional)

    • The test-platform-results bucket is publicly accessible
    • No authentication is required for read access
    • Skip authentication checks

Input Format

The user will provide:

  1. Prow job URL - gcsweb URL containing test-platform-results/
    • Example: https://gcsweb-ci.apps.ci.l2s4.p1.openshiftapps.com/gcs/test-platform-results/logs/periodic-ci-openshift-release-master-ci-4.20-e2e-aws-ovn-techpreview/1965715986610917376/
    • URL may or may not have trailing slash

Implementation Steps

Step 1: Parse and Validate URL

  1. Extract bucket path

    • Find test-platform-results/ in URL
    • Extract everything after it as the GCS bucket relative path
    • If not found, error: "URL must contain 'test-platform-results/'"
  2. Extract build_id

    • Search for pattern /(\\d{10,})/ in the bucket path
    • build_id must be at least 10 consecutive decimal digits
    • Handle URLs with or without trailing slash
    • If not found, error: "Could not find build ID (10+ digits) in URL"
  3. Extract prowjob name

    • Find the path segment immediately preceding build_id
    • Example: In .../periodic-ci-openshift-release-master-ci-4.20-e2e-aws-ovn-techpreview/1965715986610917376/
    • Prowjob name: periodic-ci-openshift-release-master-ci-4.20-e2e-aws-ovn-techpreview

Read the full file on GitHub · 491 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 491 lines · 30 tokens per session scan C fc95e264a4aa

Subscribe to this mod's changes

Prow Job Extract Must-Gather is a skill published in the GitHub repository wangke19/gemini-ai-helpers (2 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 30 tokens to every session and 4,723 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

dozzle

This skill should be used when the user wants to view Docker container logs via Dozzle, check Dozzle health or version, list running containers, troubleshoot a Dozzle 401 or expired session cookie, configure Dozzle authentication, or enable and use Dozzle's native MCP endpoint. Also use when the user asks why…

dinglebear-ai/dendrite · 99 tokens

dokploy-deploy

This skill should be used when user asks to "deploy with Dokploy", "use Dokploy Cloud", "manage self-hosted Dokploy", "deploy Docker Compose on Dokploy", "manage Dokploy databases", "configure Dokploy domains", or "look up Dokploy CLI commands".

fcakyon/claude-codex-settings · 63 tokens

docker-debug

Debug Kurtosis running on local Docker. Inspect engine, API container, and service logs. Diagnose container crashes, port conflicts, and networking issues. Use when kurtosis commands fail or services aren't reachable on Docker.

kurtosis-tech/kurtosis · 45 tokens

spk-admin-setup-doctor

Install, verify, and repair Spec Kitty commands, skills, agent paths, runtime prerequisites, and common setup failures.

Priivacy-ai/spec-kitty · 31 tokens

statefulset-debug

Diagnose StatefulSet rollout and scaling failures (ordered update stuck, OnDelete not updating, partition misconfiguration, PVC binding deadlocks). Checks update strategy, pod ordinal progression, PVC bindings, and ordered startup to identify why a StatefulSet is not progressing.

scitix/siclaw · 56 tokens

pod-crash-debug

Diagnose pod crash failures (CrashLoopBackOff, OOMKilled, Error, RunContainerError). Checks pod status, events, and previous logs to identify root cause.

scitix/siclaw · 40 tokens