Community skill · published by reelier
reelier/npm-latest-version-typescript
1 step · 3 assertions · green · READ-ONLY
Provenance
- Owner
- github.com/reelier
- Recorded with
- not recorded
- License
- MIT
- Content hash
- faa79648e3249db7…
- Endpoints
registry.npmjs.org
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/npm-latest-version-typescript
The skill file
reelier/npm-latest-version-typescript.skill.md · v1· verbatim
---
name: npm-latest-version-typescript
description: Latest published version of the TypeScript compiler from the npm registry — read-only
license: MIT
---
# npm latest version — TypeScript
Inputs: (none — replays green as-is; see the personalization note)
<!--
Personalization: swap the literal `typescript` in the URL for your own
npm package name.
Why an agent would replay this: the `/latest` shortcut on the npm
registry is the cheapest possible "what version am I actually going to
install" check — useful before a build pins a compiler or tool version.
Read-only, no auth.
Endpoint verified live on 2026-07-22: 200, name "typescript", version
matches semver.
-->
The assertion pins the shape (a semver-looking string, the right package
identity), never the exact version — a new TypeScript release should not
break this replay.
## Steps
### Step 1 — Latest published version
- intent: Fetch the latest published version of typescript from the npm registry and confirm identity + a semver-looking version
- action: http.get {"url": "https://registry.npmjs.org/typescript/latest"}
- assert: status == 200
- assert: json.name == "typescript"
- assert: json.version matches /^\d+\./
- bind: version = json.version
- effect: readReal receipts
100% pass rate across 1 shared replay of this skill:
Embeddable badge (markdown):
[](https://www.reelier.com/r/9U6effZ6rVhZgAR5GTJqlt8h?utm_source=registry&utm_campaign=reelier-npm-latest-version-typescript)
Report this skill
Report abuse: see the skill registry terms & takedown process. Markdown twin of this page: /skills/reelier/npm-latest-version-typescript/md.