Fetch OpenShift release dates and metadata from Sippy API
Fetch OpenShift release dates and metadata from the Sippy API.
This skill retrieves release information for OpenShift releases, including:
python3 plugins/teams/skills/get-release-dates/get_release_dates.py \
--release <release>
--release (required): Release identifier (e.g., "4.21", "4.20", "4.17")python3 plugins/teams/skills/get-release-dates/get_release_dates.py \
--release 4.21
python3 plugins/teams/skills/get-release-dates/get_release_dates.py \
--release 4.17
{
"release": "4.21",
"found": true,
"ga": "2026-02-17T00:00:00Z",
"development_start": "2025-09-02T00:00:00Z",
"previous_release": "4.20"
}
{
"release": "99.99",
"found": false
}
Exit code: 1
release: The release identifier queriedfound: Boolean indicating if release exists in Sippyga: GA date. Null means release is still in development.development_start: When development startedprevious_release: Previous release in sequenceNote: If the ga field is null, the release is still under active development and has not reached General Availability yet.
sippy.dptools.openshift.orgThe script queries: https://sippy.dptools.openshift.org/api/releases
Before analyzing a release, verify it exists in Sippy:
python3 get_release_dates.py --release 4.21
# Check "found": true in output
Understand the development timeline:
python3 get_release_dates.py --release 4.17
# Check "development_start" and "ga" dates
Check if a release is in development or has GA'd:
python3 get_release_dates.py --release 4.21
# If "ga" is null -> still in development
# If "ga" has timestamp -> has reached GA
The script handles:
plugins/teams/README.mdplugins/teams/skills/list-regressions/npx skills add openshift-eng/Get Release Dates下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer