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

import-tanstack-intent

v0.3.0

Published

Import TanStack Intent skills into the local skills directories used by your coding agents, so agents can discover and use them directly.

Downloads

366

Readme

import-tanstack-intent

Import TanStack Intent skills into the local skills directories used by your coding agents, so agents can discover and use them directly.

Motivation

TanStack Intent’s npm-package-based approach to distributing skills is excellent: it makes skills versionable, installable, and easy to share with the same tooling developers already use for code.

The trade-off is that many agents look for skills in local skills directories instead of reading TanStack Intent package metadata directly. That makes great Intent skills harder to use in tools that expect project-local skill folders such as .agents/skills or .claude/skills.

import-tanstack-intent bridges that gap. It discovers TanStack Intent skills from the npm packages installed in your project and imports the ones you choose as Agent Skills, preserving bundled sub-skill references where needed.

Usage

Run the importer from the root of a project that already has TanStack Intent skill packages installed:

npx import-tanstack-intent

The command will:

  1. Discover importable TanStack Intent skills in the current project.
  2. Show an interactive multi-select prompt for the skills to import.
  3. Always enable the universal .agents/skills destination, then ask which additional agent-specific directories should symlink to it.
  4. Write the selected skills once to .agents/skills/<skill-name>/SKILL.md.
  5. Create symbolic links for any additional selected agents, such as .claude/skills/<skill-name> -> .agents/skills/<skill-name>.
  6. Overwrite existing imported skill directories or links when the same destination is selected again.

Agents that natively read .agents/skills are enabled by default and are not shown as additional targets. Additional agents keep their normal skill paths while sharing the canonical .agents/skills copy through symlinks.

After importing, your selected agents can load the skills using their normal skills discovery flow.