LLM Friendly Site Architect
Use this skill after semantic core, URL architecture, internal link graph, and technical SEO/schema foundations exist.
Read references/llm-readable-architecture.md before producing a full LLM discovery plan.
Owns
llms.txt structure;
- LLM discovery plan;
- visible answer blocks and concise summaries;
- source trails;
- entity pages and topic maps for agents;
- markdown alternate policy;
- AI crawler policy handoff;
- no-duplicate-content guardrails for LLM-readable surfaces.
Does Not Own
- Search Console or assistant citation monitoring execution;
- technical schema implementation;
- URL/canonical decisions;
- hidden content;
- external authority placement.
Workflow
- Read
url-map.yaml, internal-link-graph.yaml, schema/head policy, and visible content model.
- Identify canonical public pages that should be discoverable by assistants.
- Draft or audit
llms.txt sections with only public useful URLs.
- Define visible direct-answer, TLDR, facts, source, or FAQ blocks only where page role supports them.
- Define source-trail and citation-ready evidence surfaces.
- Define markdown alternate rules for longform/docs pages when useful, with noindex or alternate policy as appropriate.
- Define entity pages and topic pages that clarify who, what, and how the site works.
- Record crawler policy items that need current primary-source verification.
- Produce an LLM discovery report using assets/llm-discovery-report.template.md.
Non-Negotiables
- Human-visible content first.
- No hidden bot-only facts.
- No doorway pages.
- No FAQPage schema unless FAQ is visible.
- No automatic TLDR on every short news page by default.
- No extra public story bodies beyond the declared content model.
llms.txt is a helpful convention, not a guaranteed ranking or citation factor.
- Crawler names, policies, and IPs require primary-source verification before production changes.
Page Role Guidance
news_brief: concise visible summary, source link, paired longform link when available. Do not force TLDR if the brief already is the short form.
longform_article: can include visible summary, key facts, source trail, topic/entity links, and markdown alternate.
topic: good candidate for direct answer and entity/topic explanation.
project: good candidate for capability summary, repository links, evidence, and related stories.
author: good candidate for Person/entity context and trust signals.
home: can include a concise site purpose and section map.
Safety And Privacy Boundaries
- Do not include admin, API, private dashboards, raw analytics, raw IP logs, secrets, unpublished drafts, staging URLs, or internal planning notes in
llms.txt, markdown alternates, source trails, or entity maps.
- Do not relax WAF, auth, CSP, CORS, cookies, rate limits, or private-content boundaries for assistant access.
- Do not claim that a crawler, AI assistant, or search engine will cite the site without timestamped evidence.
Validation
Before marking work complete:
- every LLM-facing URL is public, canonical, useful, and non-private;
- every answer/source block is visible to humans;
- every markdown alternate has a corresponding canonical HTML page;
- no duplicate public story body is introduced;
- crawler policy items are marked as verified or requiring verification;
- citation/monitoring claims are handed off to a monitoring task.
Validate skill edits with:
python3 $CODEX_HOME/skills/senior-skill-architect/scripts/lint_production_skill.py $HOME/SKILL/skills/llm-friendly-site-architect
python3 $HOME/SKILL/plans/seo-llm-skill-cluster/scripts/lint_skill_cluster.py $HOME/SKILL
Forward tests live in evals.json.
Output Shape
Return:
- LLM-readable architecture summary.
llms.txt section plan.
- Visible answer/source/entity block plan.
- Markdown alternate policy.
- Crawler verification needs.
- Refused or deferred items.
1---2name: llm-friendly-site-architect3description: Design human-visible, machine-readable website layers for AI assistants, RAG, and agentic search. Use this skill when the user asks for llms.txt, LLM discovery plans, visible TLDR or direct-answer blocks, source trails, entity pages, markdown alternates, AI crawler policy, topic-to-URL maps, assistant-readable public content, or LLM-friendly architecture that must preserve canonical SEO strategy without hidden bot-only facts or duplicate story bodies.4---56# LLM Friendly Site Architect78Use this skill after semantic core, URL architecture, internal link graph, and technical SEO/schema foundations exist.910Read [references/llm-readable-architecture.md](references/llm-readable-architecture.md) before producing a full LLM discovery plan.1112## Owns1314- `llms.txt` structure;15- LLM discovery plan;16- visible answer blocks and concise summaries;17- source trails;18- entity pages and topic maps for agents;19- markdown alternate policy;20- AI crawler policy handoff;21- no-duplicate-content guardrails for LLM-readable surfaces.2223## Does Not Own2425- Search Console or assistant citation monitoring execution;26- technical schema implementation;27- URL/canonical decisions;28- hidden content;29- external authority placement.3031## Workflow32331. Read `url-map.yaml`, `internal-link-graph.yaml`, schema/head policy, and visible content model.342. Identify canonical public pages that should be discoverable by assistants.353. Draft or audit `llms.txt` sections with only public useful URLs.364. Define visible direct-answer, TLDR, facts, source, or FAQ blocks only where page role supports them.375. Define source-trail and citation-ready evidence surfaces.386. Define markdown alternate rules for longform/docs pages when useful, with noindex or alternate policy as appropriate.397. Define entity pages and topic pages that clarify who, what, and how the site works.408. Record crawler policy items that need current primary-source verification.419. Produce an LLM discovery report using [assets/llm-discovery-report.template.md](assets/llm-discovery-report.template.md).4243## Non-Negotiables4445- Human-visible content first.46- No hidden bot-only facts.47- No doorway pages.48- No FAQPage schema unless FAQ is visible.49- No automatic TLDR on every short news page by default.50- No extra public story bodies beyond the declared content model.51- `llms.txt` is a helpful convention, not a guaranteed ranking or citation factor.52- Crawler names, policies, and IPs require primary-source verification before production changes.5354## Page Role Guidance5556- `news_brief`: concise visible summary, source link, paired longform link when available. Do not force TLDR if the brief already is the short form.57- `longform_article`: can include visible summary, key facts, source trail, topic/entity links, and markdown alternate.58- `topic`: good candidate for direct answer and entity/topic explanation.59- `project`: good candidate for capability summary, repository links, evidence, and related stories.60- `author`: good candidate for Person/entity context and trust signals.61- `home`: can include a concise site purpose and section map.6263## Safety And Privacy Boundaries6465- Do not include admin, API, private dashboards, raw analytics, raw IP logs, secrets, unpublished drafts, staging URLs, or internal planning notes in `llms.txt`, markdown alternates, source trails, or entity maps.66- Do not relax WAF, auth, CSP, CORS, cookies, rate limits, or private-content boundaries for assistant access.67- Do not claim that a crawler, AI assistant, or search engine will cite the site without timestamped evidence.6869## Validation7071Before marking work complete:7273- every LLM-facing URL is public, canonical, useful, and non-private;74- every answer/source block is visible to humans;75- every markdown alternate has a corresponding canonical HTML page;76- no duplicate public story body is introduced;77- crawler policy items are marked as verified or requiring verification;78- citation/monitoring claims are handed off to a monitoring task.7980Validate skill edits with:8182```bash83python3 $CODEX_HOME/skills/senior-skill-architect/scripts/lint_production_skill.py $HOME/SKILL/skills/llm-friendly-site-architect84python3 $HOME/SKILL/plans/seo-llm-skill-cluster/scripts/lint_skill_cluster.py $HOME/SKILL85```8687Forward tests live in [evals.json](evals.json).8889## Output Shape9091Return:92931. LLM-readable architecture summary.942. `llms.txt` section plan.953. Visible answer/source/entity block plan.964. Markdown alternate policy.975. Crawler verification needs.986. Refused or deferred items.99