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

@arcjet/skills

v1.13.0

Published

Versioned Agent Skills for the Arcjet JavaScript SDK, shipped with TanStack Intent

Readme

@arcjet/skills

Versioned Agent Skills for the Arcjet JavaScript SDK, shipped with TanStack Intent.

Skills travel with the installed package version. They are not a copy-pasted rules file and they are not the model's training cutoff.

The standalone marketplace install (npx skills add arcjet/skills) still works from arcjet/skills. Prefer this package when you want skills that match the SDK version in node_modules.

What is this?

A TypeScript package that publishes:

  • skills/*/SKILL.md — agent guidance, one skill per task
  • docs/*.md — the source documentation those skills were derived from
  • a small typed manifest (skills, skillIdentity) for the shipped leaf names

TanStack Intent discovers the SKILL.md files as static files. It does not import or execute this package (or any other package) to find them.

Install

This package is ESM only.

npm install @arcjet/skills

Framework adapters that depend on arcjet also install this package transitively, so a typical @arcjet/next app already has the files on disk.

Guard integration skills ship in @arcjet/guard next to that package's README. Allow both packages if you use Guard.

Use with TanStack Intent

Intent scans installed dependencies for skills/**/SKILL.md. Discovery is not trust. Put an explicit allowlist in the application package.json:

{
  "intent": {
    "skills": ["@arcjet/skills", "@arcjet/guard"],
    "exclude": []
  }
}

intent.skills permits packages, not individual skills. Use intent.exclude to drop a package or one skill (@arcjet/guard#integrate-arcjet-guard-eve).

An omitted intent.skills key currently surfaces every discovered package and prints a deprecation notice. Do not use "skills": ["*"] unless you accept unvetted skills from the whole tree.

npx @tanstack/intent@latest install
npx @tanstack/intent@latest list
npx @tanstack/intent@latest load @arcjet/skills#protect

install writes loading guidance to AGENTS.md (or an existing agent config). list shows what the allowlist permits. load prints one SKILL.md — load only the skill the current task needs.

| Task | Load | | --- | --- | | HTTP routes, APIs, middleware | @arcjet/skills#protect | | Which rules to apply | @arcjet/skills#choose-protections | | Sign in and write ARCJET_KEY | @arcjet/skills#cli | | MCP server setup | @arcjet/skills#mcp | | Tool calls, MCP handlers, jobs | @arcjet/skills#guard | | A specific Guard vendor SDK | @arcjet/guard#integrate-arcjet-guard-* |

Trust model

  • Intent reads package metadata and skill files. It does not execute package code to discover or load a skill.
  • The allowlist and exclusions are the trust decision.
  • intent load returning content means the file resolved under current policy. It does not mean the skill was relevant or that the model followed it.
  • npx @tanstack/intent@latest hooks install can add session catalogs and edit gates for some agents. Treat those hooks as convenience, not a security boundary. They can observe a load command; they cannot prove the agent used the guidance.

Typed manifest

import {
  PACKAGE_NAME,
  VERSION,
  getSkill,
  skillIdentity,
  skills,
} from "@arcjet/skills";

skillIdentity("protect"); // "@arcjet/skills#protect"
getSkill("cli")?.file; // "skills/cli/SKILL.md"

This list is for this package only. It does not scan other dependencies.

Maintainers

Skill files live beside the docs they were derived from (docs/ in this package; README.md for @arcjet/guard skills). Each SKILL.md declares those paths in sources.

npx @tanstack/intent@latest validate
npx @tanstack/intent@latest stale --json

validate is required in CI. stale is conservative: a changed source is a review signal, not proof the skill is wrong. CI fails a pull request when a declared source changes and the matching SKILL.md does not.

The tanstack-intent keyword and the skills/ files entry put the skills in the npm tarball so the registry can index them.

License

Apache License, Version 2.0 © Arcjet Labs, Inc.