Fetch Releases

Fetch Releases is a skill for Claude Code, Codex from wangke19/gemini-ai-helpers. It costs 13 tokens per session (802 once invoked), scanned A, a copy of fetch-releases, Apache-2.0.

A tool for retrieving OpenShift releases from the Sippy API. OpenShift is Red Hat’s platform for running containerised applications, and Sippy is a service that provides OpenShift test and release data.

In plain words
What is it for?
It helps find the latest release or list all available releases, either as a simple list or with release details in JSON.
Why use it?
It avoids manually checking which OpenShift versions are available or which one is newest.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 extensions/ci/skills/fetch-test-report/fetch_test_report.py "<test_name>" --release "$release".

Good fit It helps find the latest release or list all available releases, either as a simple list or with release details in JSON.

Compare 6 skills 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 skills/wangke19/gemini-ai-helpers/fetch-releases

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 Fetch Releases

README.md
[![agentmods](https://agentmods.dev/badge/skills/wangke19/gemini-ai-helpers/fetch-releases/github.svg)](https://agentmods.dev/skills/wangke19/gemini-ai-helpers/fetch-releases)
Your own site
<a href="https://agentmods.dev/skills/wangke19/gemini-ai-helpers/fetch-releases"><img src="https://agentmods.dev/badge/skills/wangke19/gemini-ai-helpers/fetch-releases/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 Fetch Releases

Your own site · 80×15
<a href="https://agentmods.dev/skills/wangke19/gemini-ai-helpers/fetch-releases"><img src="https://agentmods.dev/badge/skills/wangke19/gemini-ai-helpers/fetch-releases.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 13 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 802 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 100% 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.00013 $0.00802
Opus 5 $0.00006 $0.00401
Sonnet 5 $0.00003 $0.00160
Haiku 4.5 $0.00001 $0.00080

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

Security

Grade A, and why

Fetch Releases 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 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (fetch_releases.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.

Makes network callslowCapability

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

- Check: `curl -s https://sippy.dptools.openshift.org/api/releases | head -c 100`
Origin

This is a copy

100% identical to fetch-releases — 12 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/skills/fetch-releases/SKILL.md · 116 lines

How it starts

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

Fetch Releases

This skill fetches the list of available OpenShift releases from the Sippy API. It can return all OCP releases or just the latest version.

When to Use This Skill

Use this skill when you need to:

  • Determine the latest OCP release version
  • Get a list of all available OCP releases
  • Provide a default release version when the user hasn't specified one

Prerequisites

  1. Python 3: Python 3.6 or later

    • Check: python3 --version
    • Uses only standard library (no external dependencies)
  2. Network Access: Must be able to reach the public Sippy API

    • Check: curl -s https://sippy.dptools.openshift.org/api/releases | head -c 100

Implementation Steps

Step 1: Get the Latest Release

To get just the latest OCP release version:

release=$(python3 extensions/ci/skills/fetch-releases/fetch_releases.py --latest)
echo "$release"
# Output: 4.22

Step 2: List All Releases

To list all available OCP releases:

# JSON format (includes GA dates)
python3 extensions/ci/skills/fetch-releases/fetch_releases.py --format json

# Simple list, one per line
python3 extensions/ci/skills/fetch-releases/fetch_releases.py --format list

Step 3: Use with Other Skills

The primary use case is providing a default release to other skills:

# Determine release
release="${user_specified_release:-$(python3 extensions/ci/skills/fetch-releases/fetch_releases.py --latest)}"

# Use with fetch-test-report
python3 extensions/ci/skills/fetch-test-report/fetch_test_report.py "<test_name>" --release "$release"

Output Format

--latest

Prints a single release version string:

4.22

--format json (default)

[
  {"release": "4.22"},
  {"release": "4.21", "ga": "2025-06-17T00:00:00Z"},
  {"release": "4.20", "ga": "2025-10-21T00:00:00Z"},
  {"release": "4.19", "ga": "2025-06-17T00:00:00Z"}
]

Releases without a ga field are still in development.

--format list

4.22
4.21
4.20
4.19
4.18

Read the full file on GitHub · 116 lines

Files

What ships with it

1 file 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 · 116 lines · 13 tokens per session scan A 2af943b04364

Subscribe to this mod's changes

Fetch Releases is a skill published in the GitHub repository wangke19/gemini-ai-helpers (2 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 13 tokens to every session and 802 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 100% identical to fetch-releases, differing in 12 lines, and is treated as a copy.

Related

Other skills, from other repositories

mongodb-query-optimizer

Help with MongoDB query optimization and indexing. Use only when the user asks for optimization or performance: "How do I optimize this query?", "How do I index this?", "Why is this query slow?", "Can you fix my slow queries?", "What are the slow queries on my cluster?", etc. Do not invoke for general MongoDB query…

fcakyon/claude-codex-settings · 98 tokens

neo4j-modeling-skill

Design, review, and refactor Neo4j graph data models. Use when choosing node labels vs relationship types vs properties, migrating relational/document schemas to graph, detecting anti-patterns (generic labels, supernodes, missing constraints), designing intermediate nodes for n-ary relationships, enforcing schema with…

neo4j-contrib/neo4j-skills · 152 tokens

lov-bp-outline

A process for turning project information into a source-backed business-plan brief, evidence record, and 12–15-slide outline. A business plan explains how a company works, grows, and makes money.

lovstudio/skills · 97 tokens

build-sdf-liquid-glass

Build lightweight SDF/canvas displacement glass with Vaso. Use for responsive refractive cards, no-WebGL fallbacks, many compact surfaces, or explicit SDF requests.

agent-skills-hub/agent-skills-hub · 42 tokens

lov-install-tauri-logo

A Tauri desktop-app branding tool that connects an approved logo to the application bundle icon and system tray icon. Tauri is a framework for packaging web interfaces as desktop applications.

lovstudio/skills · 45 tokens

convert-to-devto

Converts Markdown content into the format required for Dev.to publication, ensuring correct YAML frontmatter, headers, liquid tags, and inline formatting. Use when the user asks to format or convert an existing blog post or Markdown file for Dev.to.

derailed-dash/dazbo-agent-skills · 53 tokens