Skip to main content
Glama

AI Readiness Skill

npm version npm downloads License: MIT MCP compatible Claude Skill Cursor compatible OpenAI Codex compatible Perplexity compatible

Optimizes for AI search

Generate a complete suite of AI readiness files (GEO / generative engine optimization) for any website in a single command โ€” llms.txt, ai.txt, schema, RAG indexes, and more. Install it into Claude, Cursor, Windsurf, GitHub Copilot, Gemini, or Codex with one npx command, or connect over MCP with no install.

๐Ÿ“– Live site & full docs: ai.silverbackmarketing.com ยท โญ Star this repo if it helps you get found by AI.


What is the AI Readiness Kit?

The AI Readiness Kit is a free, open-source set of 17 structured files you deploy at the root of your website โ€” robots.txt, ai.txt, llms.txt, schema, RAG indexes, and more โ€” that tell ChatGPT, Claude, Gemini, and Perplexity exactly who you are, what you offer, and how to represent you. Generate the whole set, tailored to any site, with a single command. Free forever (MIT); install with npx or run it over MCP with no install.


Related MCP server: TrueSource GEO MCP Server

Why AI readiness

When someone wants a product recommendation, a service provider, or a straight answer, they often ask ChatGPT, Claude, Gemini, or Perplexity before they ever visit a website. If you are not giving those systems clear, current signals, they guess โ€” and they often guess wrong.

AI readiness files are structured files you deploy at the root of your website to tell AI systems exactly who you are, what you offer, and where to send people. They speak a format AI already understands (the llmstxt.org standard, Schema.org, and emerging AI-crawler conventions), so assistants stop guessing about your brand based on stale training data and start representing you accurately in their answers.

This skill researches any site, classifies its industry, and generates all of those files for you โ€” tailored to that business โ€” in one command.


Contents


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."

Use via MCP (no install)

Connect your coding agent to the hosted MCP server instead of installing the skill locally. Same workflow โ€” research a site and generate all the files.

Production: https://ai.silverbackmarketing.com/api/mcp

Example prompts once connected:

Generate AI readiness files for example.com
Use ai-readiness to list all output files
Get the file spec for llms.txt from ai-readiness

Cursor โ€” add to .cursor/mcp.json:

{
  "mcpServers": {
    "ai-readiness": {
      "url": "https://ai.silverbackmarketing.com/api/mcp"
    }
  }
}

Refresh MCP servers, then ask: "Use ai-readiness to generate files for example.com"

Claude Code โ€” add .mcp.json to your project root:

{
  "mcpServers": {
    "ai-readiness": {
      "type": "http",
      "url": "https://ai.silverbackmarketing.com/api/mcp"
    }
  }
}

Or run:

claude mcp add --transport http ai-readiness https://ai.silverbackmarketing.com/api/mcp

Restart the session, run /mcp, then ask: "Generate AI readiness files for mysite.com using ai-readiness"

VS Code / Copilot โ€” add to .vscode/mcp.json:

{
  "servers": {
    "ai-readiness": {
      "type": "http",
      "url": "https://ai.silverbackmarketing.com/api/mcp"
    }
  }
}

Open MCP: List Servers, confirm ai-readiness is running, then use agent mode in Copilot Chat.

Claude Desktop โ€” use mcp-remote in ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "ai-readiness": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://ai.silverbackmarketing.com/api/mcp"]
    }
  }
}

Fully quit and reopen Claude Desktop after saving.

OpenAI Codex โ€” add to ~/.codex/config.toml:

[mcp_servers.ai-readiness]
url = "https://ai.silverbackmarketing.com/api/mcp"
enabled = true

Or run codex mcp add ai-readiness --url https://ai.silverbackmarketing.com/api/mcp, then /mcp in a session.

Antigravity โ€” Agent panel โ†’ โ€ฆ โ†’ MCP Servers โ†’ Manage โ†’ View raw config:

{
  "mcpServers": {
    "ai-readiness": {
      "serverUrl": "https://ai.silverbackmarketing.com/api/mcp"
    }
  }
}

Antigravity uses serverUrl (not url). Save, refresh, then try in agent mode.

Perplexity โ€” two ways to use the kit:

  • Via remote MCP connector โ€” requires a paid Perplexity plan; an org admin may first need to enable "Allow members to add custom connectors." Go to Account settings โ†’ Connectors โ†’ click + Custom connector (top-right) โ†’ select Remote, then fill in:

    Field

    Value

    Name

    AI Readiness

    MCP Server URL

    https://ai.silverbackmarketing.com/api/mcp

    Authentication

    None

    Transport

    Streamable HTTP

    Check the acknowledgement box, click Add, then click the connector card to enable it. Ask: "Use ai-readiness to generate files for example.com." (Full steps: Perplexity's Adding Custom Remote Connectors guide.)

  • Manual โ€” free, works on any plan: paste SKILL.md into a thread (or attach it), then ask: "Using these AI readiness instructions, generate AI readiness files for example.com."

Quick test:

curl -X POST 'https://ai.silverbackmarketing.com/api/mcp' \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -d '{"jsonrpc":"2.0","method":"tools/list","params":{},"id":1}'

More client configs: ai.silverbackmarketing.com/#mcp


What It Does

Run /ai-readiness yoursite.com and the AI will research the site, classify its industry, and generate 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 Files

The skill generates 18 files. Of these, 17 deploy to your web root across 7 categories (16 if you omit the optional .well-known/ai-plugin.json); the 18th, README.md, is project documentation for your team. This matches the 17-file kit described on the live site.

#

File

Purpose

Deployed

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 (optional)

โž–

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

robots.txt

AI crawler directives

โœ…

18

README.md

Project documentation (not deployed)

โž–


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 files tailored to that industry

  4. Save everything to a folder named after the domain in your workspace


FAQ

Getting Started

What are AI Readiness Files? They are structured files you deploy at the root of your website to tell AI systems exactly who you are, what you offer, and where to send people. They speak a format AI already understands, so assistants stop guessing about your brand based on old training data.

Why does AI readiness matter now? When someone wants a product recommendation, a service provider, or a straight answer, they often ask ChatGPT, Claude, Gemini, or Perplexity before they visit a website. If you are not giving those systems clear, current signals, they guess. And they often guess wrong.

How many files are in the kit? The kit includes 17 purpose-built files across 7 categories: Identity & Permissions, Content Files, Map & Navigation, Intelligence Files, Research Files, Policy Files, and Operations Files. Each one helps AI understand and represent your site more accurately. (The skill generates 18 files total โ€” the extra one is this README.md for your project.)

Where should I start? Start with the critical files: robots.txt, ai.txt, llms.txt, and llms-full.txt. They deliver the biggest immediate impact and are what most AI systems look for first. Then add sitemaps, intelligence JSON files, policies, and operational files using the deployment checklist.

Identity & Permissions

What does robots.txt do for AI? robots.txt sits at the front door of your website and tells automated visitors (search engines, AI bots, and scrapers) which sections they can access. For AI readiness, it includes instructions for major crawlers like GPTBot and ClaudeBot, pointing them toward your llms.txt and ai-sitemap.xml while keeping checkout, login, and admin pages off limits.

What is ai.txt? ai.txt is your brand's introduction to every AI system on the internet. Where robots.txt controls access, ai.txt goes further. It covers what you sell, what you are known for, your authoritative topics, and the rules for what AI systems can and cannot do with your content.

How is ai.txt different from robots.txt? robots.txt controls access: which pages bots can crawl. ai.txt controls identity: who you are, what you offer, and your ground rules for AI use of your content. Think of robots.txt as the doorman and ai.txt as the briefing document you hand a journalist before an interview.

Content & Navigation

What is llms.txt? llms.txt is a structured text file built for large language models. It gives AI a quick map of your website: company name, description, organized sections with direct links, and the most common questions your site answers. It follows the llmstxt.org standard used by ChatGPT, Claude, Gemini, and Perplexity.

What's the difference between llms.txt and llms-full.txt? llms.txt is the cheat sheet: a quick summary an AI can scan in seconds. llms-full.txt is the deep dive with rich descriptions, detailed Q&A, and full category explanations. If llms.txt is a Wikipedia summary, llms-full.txt is the full article.

Why do I need an ai-sitemap.xml? A regular sitemap lists pages and timestamps. The ai-sitemap adds what each page is about, its content type, and a plain-English summary. It is the difference between a paper road map and GPS with points of interest. AI crawlers can understand pages without fetching and parsing each one individually.

Intelligence & Research

What is ai-intent.json? ai-intent.json maps real user questions (the things people type into AI assistants) to the best page on your website to answer each one. Without it, AI guesses which page to recommend. With it, you give AI a direct URL for every common query.

What are ai-entities.json and ai-schema.json for? ai-entities.json is a structured catalog of the important parts of your site: products, categories, services, and key concepts. It powers AI knowledge graphs. ai-schema.json uses the Schema.org standard to describe your organization in machine-readable format so search engines and AI systems can identify you without ambiguity.

What are the RAG index files? rag-index.json and rag-index.jsonl are ready-made indexes of your site built for AI research and retrieval pipelines. When a user asks a question, AI first pulls the most relevant documents from this index before generating an answer, which keeps responses grounded in your actual content.

Policies & Maintenance

What is a training data policy? training-data-policy.txt sets formal rules for how AI companies can use your content, including model training, RAG indexing, and commercial use. It answers a practical question every brand should decide upfront: what are others allowed to do with your work?

What is ai-disclosure.txt? ai-disclosure.txt is a public transparency report explaining how your organization uses AI, whether for content generation, recommendations, or customer interactions. It builds trust by answering those questions before someone has to ask.

How often should I update my AI readiness files? It depends on the file. Update llms.txt and sitemaps monthly or when your site structure changes. Refresh ai.txt and llms-full.txt quarterly or when products change. Review policy files annually. The manifest.json file lists recommended update frequencies for every file in the kit.


Reference Documentation

The references/file-specs.md file contains the detailed specification for each file โ€” 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 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

Author & Company

Russ Wittmann โ€” SVP of Technology, Silverback Marketing LinkedIn ยท X / Twitter

Silverback Marketing is an ROI-focused digital marketing agency (founded 2007, Queen Creek, Arizona) 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.

๐Ÿ”— ai.silverbackmarketing.com ยท silverbackmarketing.com


License

MIT โ€” free to use, modify, and distribute with attribution. See LICENSE.

F
license - not found
-
quality - not tested
B
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
โ€“Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    Enables AI agents to check whether a public website is crawlable, understandable, and ready for AI search workflows through local-only audits of robots.txt, sitemaps, metadata, and llms.txt.
    Last updated
    3
    72
    1
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Check whether a website is visible to AI search engines (ChatGPT, Perplexity, Claude, Google AI Overviews). Returns a 0-100 readiness score, a grade, and a specific fix for each gap. Dependency-free, no API keys.
    Last updated
    2
    4
    MIT

View all related MCP servers

Related MCP Connectors

  • Scan any URL for AI agent readability โ€” Vercel Spec, llmstxt.org, and agent-protocol manifests.

  • Live SEO workflow tools for Claude Code, Codex, and AI agents.

  • SEO research, audits, backlinks, GSC, and content workflow tools for AI agents.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/silverbackmarketing/ai-readiness'

If you have feedback or need assistance with the MCP directory API, please join our Discord server