generate-llms

Generate llms.txt and llms-full.txt files from site data sources.

7|3|Updated Jan 9, 2026
One-click install
npx skills add https://github.com/agentconfig/agentconfig.org --skill generate-llms
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: generate-llms
Source: https://github.com/agentconfig/agentconfig.org/tree/main/.github/skills/generate-llms
Command: npx skills add https://github.com/agentconfig/agentconfig.org --skill generate-llms

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

Generates /llms.txt and /llms-full.txt files to help AI agents understand and navigate the agentconfig.org site content, keeping the index and full content up to date.

Core Features & Use Cases

  • Generates machine-readable documentation following the llmstxt.org standard: /llms.txt (TOC) and /llms-full.txt (complete content), plus per-page Markdown references like skills.md, agents.md, and mcp.md.
  • Reads from site data sources (site/src/data/pages.ts, primitives.ts, comparison.ts) and related data to assemble a current, coherent content bundle for agents.
  • Supports regeneration on content edits or before deployment, ensuring agents have accurate context.

Quick Start

Run the generation script to update site/public/llms.txt and site/public/llms-full.txt based on current data.

Frequently Asked Questions about generate-llms

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate llms.txt files for my website automatically?

To generate llms.txt files automatically, this Skill reads from site data sources like pages.ts and writes outputs to site/public/llms.txt and llms-full.txt following the llmstxt.org standard. It assembles a coherent content bundle for AI agents to navigate your site.

What is the difference between llms.txt and llms-full.txt?

The llms.txt file serves as a table of contents, while llms-full.txt contains the complete site content. This generation script creates both files plus per-page Markdown references like skills.md and agents.md to provide full context for AI navigation.

When should I regenerate llms.txt before deployment?

You should regenerate llms.txt before deployment or whenever site content changes, such as updates to pages, primitives, comparisons, or registries. This ensures AI agents receive accurate and current site context when reasoning about your content.

Can I generate llms.txt from existing TypeScript data sources?

Yes, this Skill reads directly from TypeScript data sources like site/src/data/pages.ts, primitives.ts, and comparison.ts. It transforms these existing data structures into machine-readable Markdown files without requiring a separate content export process.

Does generating llms-full.txt require external dependencies?

No external dependencies are required to generate llms-full.txt. The Skill operates using internal scripts to read site data sources and write the generated Markdown outputs directly to the site's public directory.