Community skill · published by reelier

reelier/endoflife-node-support-check

1 step · 4 assertions · green · READ-ONLY

Provenance

Recorded with
not recorded
License
MIT
Content hash
1bfd13edccb8a681
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-node-support-check

The skill file

reelier/endoflife-node-support-check.skill.md · v1· verbatim
---
name: endoflife-node-support-check
description: Node.js release cycle and EOL dates from endoflife.date — read-only, useful before upgrading a runtime
license: MIT
---

# Node.js EOL support check

Inputs: (none — replays green as-is)

<!--
  Why an agent would replay this: endoflife.date is the canonical public
  source for "is this runtime still supported" checks — a useful gate
  before a CI job pins a Node version. Read-only, no auth.

  Endpoint verified live on 2026-07-22: 200, first entry cycle "26",
  latest a semver-looking string.
-->

The assertions pin the shape of the newest entry (a real cycle id and a
semver-looking `latest`), never a specific version number that will roll
forward every release.

## Steps

### Step 1 — Newest Node.js release cycle
- intent: Fetch the Node.js release table from endoflife.date and confirm the newest cycle has a well-formed shape
- action: http.get {"url": "https://endoflife.date/api/nodejs.json"}
- assert: status == 200
- assert: json.0.cycle is string
- assert: json.0.latest matches /^\d+\./
- assert: json.0.eol is string
- bind: cycle = json.0.cycle
- bind: latest = json.0.latest
- bind: eol = json.0.eol
- effect: read

Real receipts

100% pass rate across 1 shared replay of this skill:

Embeddable badge (markdown):

[![reelier](https://www.reelier.com/badge/Csu0rduHd4WRokmrctA_AjBK)](https://www.reelier.com/r/Csu0rduHd4WRokmrctA_AjBK?utm_source=registry&utm_campaign=reelier-endoflife-node-support-check)
Report this skill

Report abuse: see the skill registry terms & takedown process. Markdown twin of this page: /skills/reelier/endoflife-node-support-check/md.