Fetches OpenShift release dates (GA, development start), previous release, and metadata from Sippy API via Python CLI. Use to check status, validate existence, or sequence releases.
From teamsnpx claudepluginhub openshift-eng/ai-helpers --plugin teamsThis skill uses the workspace's default tool permissions.
README.mdget_release_dates.pyGuides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Details PluginEval's skill quality evaluation: 3 layers (static, LLM judge), 10 dimensions, rubrics, formulas, anti-patterns, badges. Use to interpret scores, improve triggering, calibrate thresholds.
This skill provides functionality to fetch OpenShift release information including GA dates and development start dates from the Sippy API.
Use this skill when you need to:
Python 3 Installation
which python3Network Access
sippy.dptools.openshift.orgFirst, ensure Python 3 is available:
python3 --version
If Python 3 is not installed, guide the user through installation for their platform.
The script is located at:
plugins/teams/skills/get-release-dates/get_release_dates.py
Execute the script with the release parameter:
# Get dates for release 4.21
python3 plugins/teams/skills/get-release-dates/get_release_dates.py \
--release 4.21
# Get dates for release 4.20
python3 plugins/teams/skills/get-release-dates/get_release_dates.py \
--release 4.20
The script outputs JSON data with the following structure:
{
"release": "4.21",
"found": true,
"ga": "2026-02-17T00:00:00Z",
"development_start": "2025-09-02T00:00:00Z",
"previous_release": "4.20"
}
Field Descriptions:
release: The release identifier that was queriedfound: Boolean indicating if the release exists in Sippyga: GA (General Availability) date. If null, the release is still in development.development_start: When development started for this releaseprevious_release: The previous release in the sequence (empty string if none)If Release Not Found:
{
"release": "99.99",
"found": false
}
Release Status - Development vs GA'd:
ga is null, the release is still under active development
{
"release": "4.21",
"found": true,
"development_start": "2025-09-02T00:00:00Z",
"previous_release": "4.20"
}
ga has a timestamp, the release has reached General Availability
{
"release": "4.17",
"found": true,
"ga": "2024-10-01T00:00:00Z",
"development_start": "2024-05-17T00:00:00Z",
"previous_release": "4.16"
}
Based on the release dates:
ga is null: Release is still in developmentga has a timestamp: Release has reached General Availabilitydevelopment_start and ga dates
ga - development_startdevelopment_startprevious_release to navigate the release sequencefound field before using the release in other operationsThe script handles several error scenarios:
Network Errors: If unable to reach Sippy API
Error: URL Error: [reason]
HTTP Errors: If API returns an error status
Error: HTTP Error 404: Not Found
Invalid Release: Script returns exit code 1 with found: false in output
Parsing Errors: If API response is malformed
Error: Failed to fetch release dates: [details]
The script outputs JSON to stdout with:
found: truefound: falseThe script queries the Sippy releases API:
The full API response includes:
releases: Array of all available release identifiersga_dates: Simple mapping of release to GA datedates: Detailed mapping with GA and development_start datesrelease_attrs: Extended attributes including previous releasepython3 plugins/teams/skills/get-release-dates/get_release_dates.py \
--release 4.21
Output:
{
"release": "4.21",
"found": true,
"development_start": "2025-09-02T00:00:00Z",
"previous_release": "4.20"
}
python3 plugins/teams/skills/get-release-dates/get_release_dates.py \
--release 4.17
Output:
{
"release": "4.17",
"found": true,
"ga": "2024-10-01T00:00:00Z",
"development_start": "2024-05-17T00:00:00Z",
"previous_release": "4.16"
}
python3 plugins/teams/skills/get-release-dates/get_release_dates.py \
--release 99.99
Output:
{
"release": "99.99",
"found": false
}
Exit code: 1
This skill can be used in conjunction with other teams skills:
plugins/teams/skills/list-regressions/SKILL.mdplugins/teams/README.md