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

folio-agent-skills

v0.1.1

Published

Distributable agent skills for working with Folio (AI-native data sheets). Compatible with skills.sh and TanStack Intent.

Readme

Folio Agent Skills

A distributable pack of SKILL.md files that teach AI coding agents how to use Folio. Compatible with the skills.sh ecosystem (Claude Code, Cursor, Cline, GitHub Copilot, Codex, Windsurf, Gemini, and 12+ others) and with the TanStack Intent registry (npm-based discovery).

This is not the per-sheet skills design at docs/methodology/sheet-skills-design.md, which describes domain procedures that ship inside a sheet's tarball. This directory ships product knowledge: how to author a Folio sheet, configure derivations, debug a materialize, etc. — knowledge about Folio itself, not about a specific dataset.

Installing

Via skills.sh (recommended)

# Project-scoped install (recommended for Folio work)
npx skills add nyuta01/folio

# Global install
npx skills add -g nyuta01/folio

# Install just one skill
npx skills add nyuta01/folio --skill add-derivation-ai

The CLI symlinks the skill files into your agent's discovery path (.claude/skills/ for Claude Code, .agents/skills/ for Cursor, etc.). Works with 18+ agent runtimes.

Via npm (TanStack Intent compatible)

npm install --save-dev folio-agent-skills
# or
pnpm add -D folio-agent-skills

The package ships the same SKILL.md files and is tagged with the tanstack-intent keyword so the TanStack Intent registry indexes it automatically.

Manual

# Drop the directory into your project
git clone https://github.com/nyuta01/folio.git /tmp/folio
cp -r /tmp/folio/skills/*/ .claude/skills/

What's included

| Skill | When to invoke | |---|---| | folio-quickstart | First-time setup of a Folio sheet from scratch. | | add-derivation-ai | Wire up an LLM-powered derivation with prompts and structured output. | | add-derivation-cross-sheet | Join two sheets 1:1 by primary key. | | debug-failed-materialize | Diagnose per-cell failures from Sheet.materialize's envelope. |

More are landing — see the task list for add-derivation-{python,sql,http,import}, migrate-csv-to-folio, set-up-mcp-server, audit-provenance, export-frictionless, and upgrade-folio-version.

SKILL.md format

Every skill is a directory containing exactly one SKILL.md:

skills/
└── add-derivation-ai/
    └── SKILL.md

Frontmatter follows the universal format used by Claude Skills, skills.sh, and TanStack Intent:

---
name: add-derivation-ai            # required, lowercase, hyphenated
description: >-
  One-line summary used by agents to decide whether the skill applies.
  Should reference Folio explicitly so it doesn't fire for unrelated tasks.
---

The body is plain markdown. Folio skills follow these conventions:

  1. Lead with a one-line summary — agents quote it.
  2. Use a "When this skill applies" section so the model can self-check.
  3. Provide a checklist or numbered procedure, not prose.
  4. Embed at least one minimal complete example (a real derivations/*.yaml block, a real CLI invocation).
  5. End with a "Verify" section the agent can run to confirm success.

Authoring a new skill

  1. Pick a directory name: kebab-case, scoped (e.g. add-derivation-sql, not sql).
  2. Create skills/<name>/SKILL.md with the frontmatter above.
  3. Test discovery locally:
    npx skills add . --skill <name>
    ls .claude/skills/   # verify the link
  4. Validate against the conventions above.
  5. Send a PR.

License

MIT (same as Folio). See the repo root.