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

@silverbackmarketing/ai-readiness

v1.0.3

Published

Install the AI readiness skill (generates llms.txt, ai.txt, schema, RAG index, and more for any website) into Claude / Cowork via npx.

Downloads

458

Readme

AI Readiness Skill

A skill that generates a complete suite of AI readiness files for any website — in a single command. Install it into Claude, Cursor, Windsurf, GitHub Copilot, Gemini, Codex, or any other AI agent with one npx command.

Created by: Russ Wittmann
Company: Silverback Marketing
Version: 1.0.0


Install

Quick install (any agent) — npx

# Global skill install → ~/.agents/skills/ AND ~/.claude/skills/ (default)
npx @silverbackmarketing/ai-readiness install

# AGENTS.md — the cross-agent standard (Cursor, Codex & others)
npx @silverbackmarketing/ai-readiness install --agent agents

# Both at once (recommended)
npx @silverbackmarketing/ai-readiness install --all

Primary targets:

| Target | Installs to | |---|---| | skills | ~/.agents/skills/ai-readiness/ and ~/.claude/skills/ai-readiness/ (full skill — SKILL.md + scripts + references) | | agents | ./AGENTS.md — the standard read by Cursor, Codex, and a growing list of agents (adds a delimited block, keeps your existing content) | | claude | ~/.claude/skills/ai-readiness/ only |

For prompt-based agents, AGENTS.md is the default and recommended target — most modern agents now read it. Tool-specific files remain available if you prefer them:

| Opt-in target | Installs to | |---|---| | cursor | ./.cursor/rules/ai-readiness.mdc | | windsurf | ./.windsurf/rules/ai-readiness.md | | copilot | ./.github/copilot-instructions.md (delimited block) | | gemini | ./GEMINI.md (delimited block) | | generic | ./ai-readiness.SKILL.md (paste into any system prompt) |

Non-Claude targets install into the current directory, so run the command from your project root. --all installs Claude + AGENTS.md. Add --force to overwrite, or --dir <path> to change the target. Shared-file installs insert a marked block and update it in place on re-run, so they never clobber your other instructions.

Other install options

  • Claude Cowork one-click: download and open ai-readiness.skill.
  • Any AI, manually: copy SKILL.md into the assistant's system prompt or custom instructions.

After installing, trigger it with /ai-readiness yoursite.com in Claude, or just ask any agent: "create AI readiness files for yoursite.com."


What It Does

Run /ai-readiness yoursite.com and the AI will research the site, classify its industry, and generate 18 production-ready files that tell AI systems (ChatGPT, Claude, Gemini, Perplexity, and others) exactly what the site is, what it offers, and where to send users.

When deployed to a web root, these files improve how a site appears in AI-generated answers, summaries, and recommendations — a must-have for any business that wants to show up in the AI-driven web.


The 18 Files Generated

| # | File | Purpose | |---|------|---------| | 1 | ai.txt | Primary AI identity declaration | | 2 | llms.txt | Concise LLM-readable site summary | | 3 | llms-full.txt | Comprehensive LLM knowledge base | | 4 | ai-sitemap.xml | AI-optimized sitemap | | 5 | sitemap.md | Human-readable sitemap for AI context | | 6 | ai-entities.json | Structured entity definitions | | 7 | ai-intent.json | User intent and query mappings | | 8 | ai-schema.json | Schema.org structured data | | 9 | rag-index.json | RAG retrieval knowledge base | | 10 | rag-index.jsonl | JSONL format for embedding pipelines | | 11 | ai-disclosure.txt | AI content transparency statement | | 12 | training-data-policy.txt | Data usage and training policy | | 13 | .well-known/ai-plugin.json | Plugin manifest for AI agents | | 14 | structured-data-guide.md | Implementation guide for developers | | 15 | manifest.json | Web app manifest | | 16 | deployment-checklist.md | Step-by-step deployment guide | | 17 | README.md | Project documentation | | 18 | robots.txt | AI crawler directives |


Usage

In Claude Cowork, type:

/ai-readiness yoursite.com

Or use natural language:

create AI readiness files for acmecorp.com
make my site AI-ready: hubspot.com
generate llms.txt for shopify.com

Claude will:

  1. Run 10+ targeted searches to research the site
  2. Classify the site type (SaaS, e-commerce, education, healthcare, etc.)
  3. Generate all 18 files tailored to that industry
  4. Save everything to a folder named after the domain in your workspace

Reference Documentation

The references/file-specs.md file contains the detailed specification for each of the 18 files — required structure, key fields, and condensed examples. It is loaded automatically when the skill runs.

The scripts/gen_jsonl.py utility converts rag-index.json to rag-index.jsonl format for use with embedding pipelines:

python3 scripts/gen_jsonl.py rag-index.json rag-index.jsonl

PDF Guides

The docs/ folder contains PDF reference guides explaining each file in plain English and technical detail:

| Guide | Audience | Files Covered | |-------|----------|---------------| | AI Readiness Guide — With Plugin | General / Non-technical | All 17 files incl. ai-plugin.json | | AI Readiness Guide — No Plugin | General / Non-technical | 16 files excl. ai-plugin.json | | Developer Reference — With Plugin | Web Developers | All 17 files, compact technical format | | Developer Reference — No Plugin | Web Developers | 16 files, compact technical format |


Skill File Structure

ai-readiness/
├── ai-readiness.skill          ← Claude Cowork installable skill (download & open)
├── SKILL.md                    ← Raw skill definition — works in any AI assistant
├── README.md                   ← This file
├── references/
│   └── file-specs.md           ← Detailed specs for all 18 output files
├── scripts/
│   └── gen_jsonl.py            ← JSONL generator utility
└── docs/
    ├── ai-readiness-guide-with-plugin.pdf
    ├── ai-readiness-guide-no-plugin.pdf
    ├── ai-readiness-guide-dev-with-plugin.pdf
    └── ai-readiness-guide-dev-no-plugin.pdf

About Silverback Marketing

Silverback Marketing is a full-service digital marketing agency helping businesses grow through strategy, content, and technology. This skill was built as part of Silverback's AI-readiness service offering — helping clients get found in the age of AI search.

silverbackmarketing.com


License

MIT — free to use, modify, and distribute with attribution.