npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

rskills-cli

v0.1.1

Published

Read remote Anthropic-style skills without installing them

Downloads

32

Readme

rskills

Read remote Anthropic-style skills (SKILL.md + references/ / scripts/ / templates/ / assets/) without installing them. Built for AI agents that need to peek at a skill before deciding to install.

Install

bun install -g rskills
# or one-shot:
bunx rskills <command>

Usage

Read

# Fetch SKILL.md (raw markdown to stdout)
rskills read skills-sh://vercel-labs/json-render/json-render-react
rskills read github://anthropics/skills/skills/pdf
rskills read https://example.com/some/SKILL.md

# Fetch a sub-resource (references, scripts, templates, assets, or any .md sibling)
rskills read github://anthropics/skills/skills/pdf/reference.md
rskills read skills-sh://vercel-labs/skills/references/foo.md
rskills read claude://my-skill
rskills read claude://my-skill/references/api.md
rskills read --raw claude://my-skill   # literal file, no preprocessing

List

# List top-level entries of a skill
rskills ls github://anthropics/skills/skills/xlsx
rskills ls skills-sh://anthropics/skills/xlsx

# List a subdirectory within a skill
rskills ls github://anthropics/skills/skills/xlsx/scripts
rskills ls skills-sh://anthropics/skills/xlsx/scripts
rskills ls claude://my-skill

ls mirrors Anthropic's ls/Glob tools — it lists directory entries, while read fetches file content. Reading a directory path with read will error and suggest using ls instead.

Search

rskills search react --source skills-sh --limit 5
rskills search https://mintlify.com/docs --source well-known
rskills search react --limit 5 --format json   # switch output format

URI format

<source>://<identifier>[/<subpath>]

| Source | Example | Search | Read | List | |---|---|---|---|---| | skills-sh | skills-sh://vercel-labs/json-render/json-render-react | ✓ | ✓ | ✓ | | github | github://anthropics/skills/skills/pdf | — | ✓ | ✓ | | well-known | well-known://mintlify.com/docs | ✓ | ✓ | ✓ (requires files array in index) | | https | https://example.com/SKILL.md (must end in .md) | — | ✓ | — | | claude | claude://my-skill | — | ✓ (local) | ✓ |

Local claude skills resolve under <cwd>/.claude/skills/ then ~/.claude/skills/ (first match wins). By default, read strips YAML frontmatter and runs inline !`shell` / ```! blocks (respects shell: frontmatter and disableSkillShellExecution in settings). Use read --raw for the literal file.

Subpath detection

No subpath → fetches SKILL.md. With a subpath, rskills detects the boundary heuristically:

  1. Known subdir (references, scripts, templates, assets, SKILL.md) — splits there
  2. Extension on last segment — that segment is the subpath
  3. Otherwise the whole path is the identifier

Output

  • read prints raw markdown to stdout regardless of --format. Pipe it anywhere.
  • ls prints structured { entries: [{ name, type }] } — TOON by default, switchable with --format json|yaml|md|jsonl.
  • search prints structured results — TOON by default, switchable with --format json|yaml|md|jsonl.
  • Errors exit with non-zero status and print a short message.
  • Reading a directory path with read exits non-zero with a message pointing to rskills ls.

Built-ins from incur

rskills inherits incur's agent-friendly defaults:

  • --llms / --llms-full — print a command manifest agents can read
  • --filter-output <keys> — narrow structured output to specific fields
  • --format <toon|json|yaml|md|jsonl> — pick the output serialization
  • --token-count, --token-limit, --token-offset — token-aware output

Run rskills --help for the full list.