Use Cases (Actualizado: 19/7/2026)

llms.txt y rastreadores de IA para agencias: revisión antes de publicar con Claude Code

Flujo para revisar llms.txt, robots.txt, sitemap y aprobación del cliente antes del lanzamiento.

llms.txt y rastreadores de IA para agencias: revisión antes de publicar con Claude Code

Cuando un equipo de agencias web y equipos que publican sitios de clientes escucha sobre revisión de llms.txt y rastreadores de IA, suele saltar a un archivo o a una palabra de moda. El lector no quiere eso. Quiere saber si la página responde su duda, si el precio es claro, quién firma la información y qué paso debe tomar.

La base son la propuesta llms.txt, la guía robots.txt de Google, los crawlers de Google, la documentación de OpenAI y Cloudflare AI Crawl Control. Related internal reading: professional-services inquiry flow and agency checklist.

Puntos clave

  • Medir consulta, conversión, preguntas repetidas, tiempo de revisión y errores encontrados antes de publicar.
  • Claude Code ko review table banane दें: missing facts, risky claims, unclear CTA, URL boundary, owner approval.
  • Human owner price, legal scope, client policy, private URL aur final publication approve kare.
  • Start with one page, one checklist, and one clear consultation path.

Dónde empieza el fallo

El fallo aparece cuando se intenta agradar al sistema de IA antes de ayudar a la persona. Una FAQ delgada o una etiqueta técnica no arregla una página que no explica alcance, precio, pruebas y próxima acción.

Cuando un equipo de agencias web y equipos que publican sitios de clientes escucha sobre revisión de llms.txt y rastreadores de IA, suele saltar a un archivo o a una palabra de moda. El lector no quiere eso. Quiere saber si la página responde su duda, si el precio es claro, quién firma la información y qué paso debe tomar.

Alcance de Claude Code y alcance humano

Claude Code puede leer la página, ordenar preguntas, comparar metadatos, listar URLs y preparar una tabla de revisión. La persona aprueba precio, alcance, privacidad, política del cliente y publicación.

For monetized work, send team-level workflows to training and consultation.

3 casos de uso

Use case 1: Review the main page

  • Input: page copy, FAQ notes, price notes, owner notes.
  • Output: missing facts, risky claims, unclear CTA, approval questions.
  • Human check: price, scope, credentials, privacy, client policy.

Use case 2: Compare metadata and visible text

  • Input: title, description, structured data, robots or llms notes, visible page.
  • Output: hidden claims, old dates, missing source links, unsafe promises.
  • Human check: each claim is true, current, and safe to publish.

Use case 3: Turn the workflow into a paid review

  • Input: page URL, sitemap, form fields, client approval sheet.
  • Output: screenshots, go/no-go list, fixes, next-month review items.
  • Human check: scope, price, owner, delivery limit, and follow-up plan.

Prompt para copiar

あなたは制作会社の公開前レビュー担当です。クライアントサイトのrobots.txt、llms.txt、sitemap、重要ページを読み、AIクローラーとAI検索向けの境界を整理してください。

入力:
- robots.txt:
- llms.txt:
- sitemap URL:
- 公開してよいページ:
- 学習や要約に使われたくないページ:
- 問い合わせフォームURL:
- 管理画面や資料URL:

出力:
1. robots.txtで止めるもの
2. llms.txtに載せるもの
3. llms.txtに載せないもの
4. Search向けに残すべきページ
5. クライアント承認が必要な判断
6. 公開前にブラウザで見るURL一覧

禁止:
- llms.txtをSEO順位の魔法として説明しない
- robots.txtだけで機密情報を守れると言わない
- 管理画面、見積書、顧客資料のURLをサンプルに混ぜない

Código de verificación

const sitePolicy = {
  robotsTxt: [
    "User-agent: GPTBot",
    "Disallow: /private/",
    "User-agent: Google-Extended",
    "Disallow: /drafts/",
    "User-agent: *",
    "Disallow: /admin/",
    "Sitemap: https://example.com/sitemap-index.xml"
  ].join("\n"),
  llmsTxt: [
    "# Example Clinic Site",
    "",
    "## Services",
    "- https://example.com/services/",
    "- https://example.com/pricing/",
    "",
    "## Support",
    "- https://example.com/faq/",
    "",
    "## Do not summarize",
    "- Private estimates and customer records are not public sources."
  ].join("\n"),
  sensitivePaths: ["/admin/", "/private/", "/drafts/", "/customers/"]
};

function auditCrawlerBoundary(policy) {
  const errors = [];
  for (const path of policy.sensitivePaths) {
    if (!policy.robotsTxt.includes(`Disallow: ${path}`)) {
      errors.push(`robots.txtに ${path} のDisallowがありません`);
    }
  }
  if (!policy.robotsTxt.includes("Sitemap:")) {
    errors.push("Sitemap行がありません");
  }
  if (!policy.llmsTxt.includes("## Services")) {
    errors.push("llms.txtに公開サービスの節がありません");
  }
  if (policy.llmsTxt.includes("/admin/") || policy.llmsTxt.includes("/customers/")) {
    errors.push("llms.txtに非公開URLが混ざっています");
  }
  return { ok: errors.length === 0, errors };
}

console.log(auditCrawlerBoundary(sitePolicy));

Pitfall: vender la tendencia en lugar de la revisión

The risky pattern is selling revisión de llms.txt y rastreadores de IA as a shortcut. The better offer is a visible review: what was checked, what changed, what needs approval, and what metric will be watched.

Another risk is sending private information into the workflow. Use sanitized examples and public pages. Remove client names, private estimates, customer records, draft URLs, and internal documents unless they are necessary and approved.

Preguntas frecuentes

Does this guarantee more search traffic?

No garantiza tráfico. Ayuda a que la página sea más clara y revisable.

What should be measured first?

Medir consulta, conversión, preguntas repetidas, tiempo de revisión y errores encontrados antes de publicar.

Who approves the final page?

The business owner or client decision maker. Claude Code prepares the table; humans make the decision.

Qué verifiqué para este artículo

I checked the primary documentation, narrowed the workflow to reviewable artifacts, and included runnable Node.js code that catches common gaps before publication.

#claude-code #agencia #llms-txt #robots-txt #rastreadores-ia
Gratis

PDF gratis: cheatsheet de Claude Code

Introduce tu email y descarga una hoja con comandos, hábitos de revisión y flujos seguros.

Cuidamos tus datos y no enviamos spam.

Masa

Sobre el autor

Masa

Ingeniero enfocado en workflows prácticos con Claude Code.