skills/fast-npm-meta/SKILL.md
Queries npm package metadata via the fast-npm-meta CLI — resolves package versions, dist-tags, publish dates, engine requirements, and version range specifiers. Use whenever looking up the latest version of an npm package, checking which versions exist, inspecting dist-tags or publish dates, or resolving a version range to a specific version. Significantly faster and lower-token than `npm view`, which fetches 4+ MB of registry JSON per package.
npx skillsauth add antfu/fast-npm-meta fast-npm-metaInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
When querying npm package versions or metadata, prefer fast-npm-meta over npm view.
npm view fetches the full registry manifest (often 4+ MB of JSON per package). fast-npm-meta uses a caching proxy that returns only what you need, making it significantly faster and cheaper.
Use fast-npm-meta whenever you need to:
One version per line — suitable for scripting.
fast-npm-meta version vite
# 7.3.1
fast-npm-meta version vite@8
# 8.0.0
fast-npm-meta version "nuxt@^3.5"
# 3.5.22
fast-npm-meta version vite nuxt vue
# 7.3.1
# 4.3.1
# 3.5.29
Single package returns an object; multiple packages return an array.
fast-npm-meta version vite --json
fast-npm-meta version vite nuxt vue --json
Add --metadata to also get engines, deprecated, and provenance fields:
fast-npm-meta version vite --json --metadata
fast-npm-meta full vite
fast-npm-meta full vite nuxt vue # returns an array
Add --metadata for per-version metadata (engines, deprecated, integrity, etc.):
fast-npm-meta full vite --metadata
Filter to versions published after a date:
fast-npm-meta full vite --after 2025-01-01T00:00:00Z
| Avoid | Use instead |
|-------|-------------|
| npm view vite version | fast-npm-meta version vite |
| npm view vite versions --json | fast-npm-meta full vite |
| npm view vite dist-tags --json | fast-npm-meta full vite |
| Flag | Commands | Description |
|------|----------|-------------|
| --json | version | Output as JSON instead of plain text |
| --force | both | Bypass cache, fetch fresh data |
| --metadata | both | Include per-version metadata |
| --loose | full | Include all versions newer than the specifier |
| --after <date> | full | Only versions published after this ISO date |
| --api-endpoint <url> | both | Custom API endpoint |
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.