Community skill · published by reelier
reelier/endoflife-ubuntu-lts-check
1 step · 3 assertions · green · READ-ONLY
Provenance
- Owner
- github.com/reelier
- Recorded with
- not recorded
- License
- MIT
- Content hash
- e02b682eac484127…
- Endpoints
endoflife.date
Get this skill
This one command installs Reelier and fetches the skill’s frozen bytes in the same breath. The CLI verifies the content hash before writing anything — a mismatch writes nothing.
npx -y reelier@latest get reelier/endoflife-ubuntu-lts-check
The skill file
reelier/endoflife-ubuntu-lts-check.skill.md · v1· verbatim
---
name: endoflife-ubuntu-lts-check
description: Ubuntu release cycle, LTS flag, and EOL date from endoflife.date — read-only, useful before pinning a base image
license: MIT
---
# Ubuntu LTS support check
Inputs: (none — replays green as-is)
<!--
Why an agent would replay this: same class of check as the Node.js/Python
variants, for Ubuntu — confirms the newest release cycle and whether it's
flagged LTS before a Dockerfile or CI runner pins a base image. Read-only,
no auth.
Endpoint verified live on 2026-07-22: 200, first entry cycle "26.04",
lts true, eol a date string.
-->
The assertions pin shape (a real cycle id, a boolean LTS flag, an EOL date
string), never the specific dates that roll forward every release.
## Steps
### Step 1 — Newest Ubuntu release cycle
- intent: Fetch the Ubuntu release table from endoflife.date and confirm the newest cycle has a well-formed shape
- action: http.get {"url": "https://endoflife.date/api/ubuntu.json"}
- assert: status == 200
- assert: json.0.cycle is string
- assert: json.0.eol is string
- bind: cycle = json.0.cycle
- bind: lts = json.0.lts
- bind: eol = json.0.eol
- effect: readReal receipts
100% pass rate across 1 shared replay of this skill:
Embeddable badge (markdown):
[](https://www.reelier.com/r/SuTUW0GEYbPyWOBBvm0hkfFx?utm_source=registry&utm_campaign=reelier-endoflife-ubuntu-lts-check)
Report this skill
Report abuse: see the skill registry terms & takedown process. Markdown twin of this page: /skills/reelier/endoflife-ubuntu-lts-check/md.