مدقق llms.txt
تحقق من أي ملف llms.txt وفقاً للمواصفات الرسمية لـ llmstxt.org
الصق عنوان الرابط (URL) أو النص الخام وسيقوم هذا المدقق بتحليله بالطريقة التي يقرؤها بها زحّاف الذكاء الاصطناعي — مؤكداً على هيكل Markdown، وعنوان H1 المطلوب، وملخص الاقتباس، وفكل الكتل التفصيلية وقائمة ملفات H2، ثم يخبرك بالسطر المحدد الذي يحتاج إلى إصلاح.
ما هو llms.txt؟
llms.txt is a markdown file published at the root of a website — yourdomain.com/llms.txt — that gives large language models a short, curated map of the site. Instead of asking a model to crawl navigation, scripts and boilerplate, the file hands it a title, a summary and a list of the pages that actually matter.
The format is defined by the specification at llmstxt.org. It is deliberately small: only H1 and H2 headings exist, and the body of each section is a list of links. That constraint is what makes the file both human-readable and trivially parseable by a program.
The spec also describes a companion convention, /llms-full.txt, which contains the expanded content itself rather than an index of links.
الترتيب المطلوب، وفقاً للمواصفات
- 1An optional byte-order mark at the very start of the file.
- 2An H1 with the name of the project or site — the only required section.
- 3A blockquote with a short summary containing the key information needed to understand the rest of the file.
- 4Zero or more markdown blocks — paragraphs, lists, tables — of any type except headings.
- 5Zero or more sections delimited by H2 headers, each containing a file list of `- [name](url)` items with optional `: notes`.
- 6A section named exactly “Optional” has special meaning: its URLs may be skipped when a shorter context is needed.
قواعد التحقق الخمس التي نتحقق منها
كل فحص يرتبط مباشرة ببند في مواصفات llmstxt.org. يتم تقييم كل قاعدة، ويصبح المجموع الموزون هو درجة الامتثال والتقدير الحرفي الخاص بك.
تنسيق Markdown
markdown-formatيجب أن يكون الملف بتنسيق markdown، بحيث يحتوي فقط على عناوين H1 و H2.
قم بتوفير ملف markdown عادي في الرابط /llms.txt — بدون HTML، وبدون بيانات تعريفية YAML، وبدون عناوين من H3 إلى H6. أي عنصر أعمق من H2 يعتبر خارج المواصفات.
عنوان المشروع H1
h1-titleعنوان H1 يحمل اسم المشروع أو الموقع. هذا هو القسم الوحيد المطلوب.
ابدأ الملف بسطر واحد `# اسم موقعك`. هذا هو الجزء الإلزامي الوحيد من المواصفات، ويجب أن يتواجد منه سطر واحد بالضبط.
ملخص اقتباس
blockquote-summaryاقتباس يحتوي على ملخص قصير للمرءوع، يتضمن المعلومات الأساسية اللازمة لفهم بقية الملف.
ضع `> ملخص من فقرة واحدة` مباشرة أسفل عنوان H1. وضح ما هو الموقع ومن يخدمه، لكي يتمكن النموذج من تفسير كل رابط تحته.
كتل تفاصيل بدون عناوين
project-detailsصفر أو أكثر من أقسام markdown (مثل الفقرات، والقوائم، والجداول) من أي نوع باستثناء العناوين، وتحتوي على معلومات أكثر تفصيلاً.
أضف سياقاً اختيارياً بعد الملخص في شكل فقرات أو قوائم أو جدول. لا تستخدم عنواناً هنا — العنوان التالي في الملف يجب أن يكون أول قسم H2.
أقسام H2 مع قوائم الملفات
file-listsصفر أو أكثر من أقسام markdown مفصولة بعناوين H2، وتحتوي على قوائم ملفات تحتوي على عناوين URL لتفاصيل إضافية.
قم بتجميع الروابط تحت عناوين `## اسم القسم`، بحيث يكون رابط واحد في كل سطر على النحو التالي: `- [الاسم](https://absolute-url): ملاحظات اختيارية`. يمكن تخطي قسم يحمل اسم `Optional` تماماً عندما تكون هناك حاجة لسياق أقصر، لذا اجعله في النهاية.
كيفية كتابة ملف llms.txt متوافق
دليل التنفيذ
ستة قرارات تبقي الملف ضمن المعيار.
- 1ابدأ بعنوان رئيسي واحد (H1). استخدم اسم موقعك أو مشروعك — ولا تضع أي شيء فوقه سوى علامة ترتيب البايت الاختيارية. هذا هو القسم الوحيد الذي تشترطه المواصفات.
- 2أضف ملخص النص المقتبس. فقرة واحدة بصيغة `>` مباشرة تحت العنوان الرئيسي (H1) تشرح ماهية الموقع، لكي يكون للروابط أدناه سياق واضح.
- 3اجعل كتل التفاصيل خالية من العناوين. يُسمح بإضافة فقرات أو قوائم أو جداول إضافية بعد الملخص — ولكن بدون عناوين حتى يصل الأمر إلى أول عنوان فرعي (H2).
- 4قم بتجميع الروابط تحت أقسام العناوين الفرعية (H2). سمِّ الأقسام بناءً على ما يبحث عنه النموذج: المستندات، الأدلة، واجهة برمجة التطبيقات (API)، المدونة. العناوين المتاحة في هذا التنسيق هي H1 و H2 فقط.
- 5اكتب عناصر قائمة الملفات بدقة. `- [اسم الصفحة](https://example.com/page): ملاحظة قصيرة`. استخدم عناوين URL المطلقة لتمكين النموذج من جدولتها أو فهمها بدون عنوان أساسي.
- 6اجعل قسم "اختياري" في النهاية. يمكن تخطي قسم يحمل عنوان "اختياري" حرفياً عندما تكون هناك حاجة لسياق أقصر. اجعله مخصصاً للصفحات الثانوية واحتفظ به في النهاية.
قالب المعيار
النموذج الأساسي المنشور على llmstxt.org — قم نسخه واملأه بقيمك الخاصة.
# Title > Optional description goes here Optional details go here ## Section name - [Link title](https://link_url): Optional link details ## Optional - [Link title](https://link_url)
Save it as llms.txt and upload it to your site root so it is served at yourdomain.com/llms.txt, then run it back through this checker.
كيفية استخدام هذه الأداة للتحقق
- 1
Pick an input mode
tools.llmsTxtChecker.LlmsTxtCheckerPage.Choose Check by URL to validate a file that is already live, or Paste content to validate a draft before you publish it.
- 2
Enter your URL or file
tools.llmsTxtChecker.LlmsTxtCheckerPage.Type a bare domain, a site root, or a direct /llms.txt URL — the protocol is added for you. In paste mode, drop the full markdown into the text box.
- 3
Run the check
tools.llmsTxtChecker.LlmsTxtCheckerPage.Press Check or Validate. The file is fetched, split into specification blocks, and scored against the five structural rules.
- 4
Read the score and grade
tools.llmsTxtChecker.LlmsTxtCheckerPage.The score ring shows weighted compliance out of 100 with a letter grade, plus how many rules passed, warned, or failed.
- 5
Work through the findings
tools.llmsTxtChecker.LlmsTxtCheckerPage.Each finding names the rule, the line number, and the exact change to make. Expand a rule card to see every detail behind its status.
- 6
Fix, publish, and re-check
tools.llmsTxtChecker.LlmsTxtCheckerPage.Apply the fixes, upload the file to your site root so it is served at yourdomain.com/llms.txt, then run the URL back through the checker to confirm it passes.
أسئلة شائعة حول llms.txt
أدوات ذات صلة
llms.txt Generator
Build a spec-compliant file from your site, then validate it here.
robots.txt Generator
Control which crawlers, including AI bots, may fetch your pages.
AXP & AI Agentic Checker
See what an AI crawler actually receives when it requests your page.
All free tools
The full AI Rank Lab toolkit for AEO, GEO and technical SEO.
The specification this checker follows is published and maintained at llmstxt.org.