Ring:Generating Llms Txt logo

Ring:Generating Llms Txt

Organization
LerianStudio
ring:generating-llms-txt

Generating or auditing a repository's llms.txt per the llmstxt.org spec, and creating CLAUDE.md / AGENTS.md when missing, by analyzing README, build files, docs, and API surface. Use when creating an llms.txt, auditing an existing one for spec compliance and live links, or improving a repo's AI readability. Skip when the llms.txt is current, the task is code-only with no doc scope, or the repo needs no LLM discoverability.

Overview

PublisherLerianStudio
Repositoryring
Skill namering:generating-llms-txt
Stars
215
Forks
28
Bundled files
Instructions only
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by LerianStudio on GitHub. Read the source before you install it.

Installation

Install the Ring:Generating Llms Txt AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/LerianStudio/ring.git /tmp/ring
mkdir -p .claude/skills
cp -r /tmp/ring/dev-team/skills/generating-llms-txt .claude/skills/lerianstudio-ring-generating-llms-txt
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Ring:Generating Llms Txt in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Ring:Generating Llms Txt on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Ring:Generating Llms Txt is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

LLMs.txt & AI Documentation Generator

When to use

  • Creating a new llms.txt for a repository
  • Auditing an existing llms.txt for completeness
  • Generating CLAUDE.md or AGENTS.md for AI coding agents
  • Improving AI readability of a repository

Skip when

  • Repository already has a complete, up-to-date llms.txt
  • Task is code implementation with no documentation scope
  • Repository is private/internal with no LLM discoverability need

Related

Complementary: ring:running-dev-cycle, ring:implementing-tasks

Generates llms.txt, CLAUDE.md, and AGENTS.md for repositories.

Step 1: Analyze Repository

1. Read README.md — project name, description, purpose
2. Read CONTRIBUTING.md — build, test, lint instructions (if exists)
3. Read Makefile / package.json / go.mod — build system, language, dependencies
4. Scan /docs/ — available documentation
5. Scan /api/ or OpenAPI specs — API surface
6. Read existing llms.txt / CLAUDE.md / AGENTS.md (if mode=audit)
7. Identify: language, architecture, test framework

Step 2: Generate llms.txt

Follow llmstxt.org specification exactly:

markdown
# {Project Name}

> {One-line description: language, what it does, license.}

{Optional: architecture, key concepts, domain terminology needed to work with this project.}

## Docs

- [{Doc title}]({url}): {Brief description}

## API Reference

- [{API name}]({url}): {What this covers}

## Code

- [{Key module}]({path}): {What this module does}

## Optional

- [{Secondary resource}]({url}): {Description}

Rules:

  • One H1 (project name), required
  • Blockquote summary — required, include language and license
  • H2 sections only (no H3+)
  • Links: [title](url): description format
  • File in repo root: /llms.txt
  • Target: fits in ~2K tokens

MUST include: name, architecture overview, key domain concepts, links to README/CONTRIBUTING/API docs/key modules.

MUST NOT include: internal-only docs, CI/CD details, issue tracker, full dependency lists, changelog.

Step 3: Generate CLAUDE.md

Read by Claude Code at session start. Must be actionable with exact commands:

markdown
# {Project Name}

## Quick Start
{How to build and run locally — exact copy-pasteable commands}

## Testing
{How to run tests — exact commands including single-test}

## Linting & Formatting
{Lint/format commands, CI expectations}

## Architecture
{Brief: layers, key directories, patterns}
e.g., "Business logic in /internal/domain/, HTTP handlers in /internal/adapters/http/"

## Key Conventions
{Naming conventions, error handling, logging patterns with examples}
e.g., "Functions use camelCase: processTransaction()"

## Common Pitfalls
{What trips up new contributors or AI agents}

Rules:

  • Commands must be copy-pasteable (no placeholders)
  • Architecture must name actual directories
  • Conventions must have inline examples
  • Keep under 3K tokens

Step 4: Generate AGENTS.md

Same structure as CLAUDE.md but vendor-neutral language. If CLAUDE.md exists: AGENTS.md can reference it:

markdown
# {Project Name} — AI Agent Context

See [CLAUDE.md](./CLAUDE.md) for complete setup and conventions.

## Additional Notes
{Any agent-specific guidance not in CLAUDE.md}

Audit Mode (mode=audit)

For existing files, check:

CheckPass Condition
llms.txt has H1 + blockquoteRequired fields present
All links resolveNo 404s
Spec complianceNo H3+, no non-list content in sections
CLAUDE.md commands validAll commands runnable, no stale references
Under token budgetllms.txt < 2K tokens, CLAUDE.md < 3K tokens

Output

markdown
## LLM Documentation Report

Mode: create | audit | full
Repository: {repo_path}

### Files Generated/Updated
| File | Action | Tokens |
|------|--------|--------|
| llms.txt | Created/Updated/OK | ~{N} |
| CLAUDE.md | Created/Updated/OK | ~{N} |
| AGENTS.md | Created/Updated/OK | ~{N} |

### Audit Results (audit mode)
| Check | Status | Details |
|-------|--------|---------|

Frequently asked questions

What does the Ring:Generating Llms Txt AI skill do?

Generating or auditing a repository's llms.txt per the llmstxt.org spec, and creating CLAUDE.md / AGENTS.md when missing, by analyzing README, build files, docs, and API surface. Use when creating an llms.txt, auditing an existing one for spec compliance and live links, or improving a repo's AI readability. Skip when the llms.txt is current, the task is code-only with no doc scope, or the repo needs no LLM discoverability.

Why use Ring:Generating Llms Txt on TypingMind?

Because you install it once and use it with any model. Ring:Generating Llms Txt is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Ring:Generating Llms Txt in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/LerianStudio/ring/tree/main/dev-team/skills/generating-llms-txt. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Ring:Generating Llms Txt?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Ring:Generating Llms Txt?

As many as you like. As long as a model supports skills, you can use Ring:Generating Llms Txt with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Ring:Generating Llms Txt AI skill free?

Yes. It is published on GitHub by LerianStudio under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇