Overall AI readiness score
A combined result across all audit signals.
Overall AI readiness score
A combined result across all audit signals.
Overall AI readiness assessment
GenAIScript was independently audited by llmsmap. microsoft.github.io currently scores 54/100 for AI readiness. The result combines AI-specific files, crawler policy, sitemap discovery, structured homepage data, and—when available—the mobile Google Lighthouse technical profile.
llms.txt is accessible and contains 614 tokens. No accessible llms-full.txt was detected, so deeper context still has to be assembled from regular pages. No separate ai.txt policy was detected; it is optional, but can clarify training, retrieval, and attribution preferences.
robots.txt was not found, so explicit crawler policy could not be confirmed. No Schema.org type was detected on the homepage. 0 OpenGraph tags were found and markup completeness is 0%, leaving more entity interpretation to crawlers.
The mobile Lighthouse profile adds Performance 61/100, Accessibility 96/100, Best Practices 81/100, SEO 92/100, and experimental Agentic Browsing 50/100. These signals have a limited weight: they complement rather than replace llms.txt, robots.txt, and structured-data checks.
A mobile Lighthouse measurement. Google’s experimental Agentic Browsing category is explained separately and does not replace the broader llmsmap AI-readiness score.
Performance
Accessibility
Best Practices
Technical SEO
Agentic Browsing
Mobile performance is 61/100, with the largest visible content block appearing in 7.3 s and the browser main thread blocked for 0 ms. Layout shift was 0. The main thread is where the browser runs JavaScript, calculates layout, and paints the page; long work there delays both user input and browser-agent actions.
Accessibility scored 96/100, Best Practices 81/100, and technical SEO 92/100. The experimental Agentic Browsing category scored 50/100. It measures signals Google currently tests for software agents and is shown separately from the llmsmap AI-readiness score.
Remove unused CSS and JavaScript, load heavy widgets on demand, and limit third-party scripts. Less code means less parsing and background work on the device.
Serve correctly sized modern formats, prioritise the primary visual, and lazy-load content below the first viewport.
Improve server response time, remove unnecessary redirects and repeat downloads, and use compression, caching, and selective preconnect hints.
Verify unique titles and descriptions, crawlability, canonicals, descriptive link text, and language relationships. This reduces ambiguity for search engines and AI systems selecting a page.
First content
Main content
Layout stability
Blocking time
Visual speed
Machine-readable files, crawler policy, discovery, and homepage markup.
Full version was not found
ai.txt file was not found
robots.txt file was not found
Sitemap is not declared in robots.txt
Schema.org markup was not found on the homepage
OpenGraph tags were not found on the homepage
Based on robots.txt analysis
# GenAIScript > GenAIScript is a JavaScript/TypeScript library and environment to build productive script using LLMs. ## Markdown Documentation All pages of the documentation have a markdown route by adding '.md' to the URL. For example, the markdown for https://microsoft.github.io/genaiscript/reference/scripts is at https://microsoft.github.io/genaiscript/reference/scripts.md ## Guidance for Code Generation - GenAIScript programs are meant to be executed through the genaiscript cli (https://www.npmjs.com/package/genaiscript). - When generating code for GenAIScript, always target TypeScript, Node.JS, ESM. Prefer await/async, keep it simple. - ambient types and definitions defined in "genaiscript.d.ts" are preloaded at runtime. you do not need to import them. - you keep the code simple, avoid exception handlers or error checking. - you add TODOs where you are unsure so that the user can review them - you use the global types in genaiscript.d.ts are already loaded in the global context, no need to import them. - save generated code in the "./genaisrc" folder with ".genai.mts" extension ## Documentation Sets - [Abridged documentation](https://microsoft.github.io/genaiscript/llms-small.txt): a compact version of the documentation for GenAIScript, with non-essential content removed - [Complete documentation](https://microsoft.github.io/genaiscript/llms-full.txt): the full documentation for GenAIScript - [Getting Started](https://microsoft.github.io/genaiscript/_llms-txt/getting-started.txt): Sequence of short tutorials on how to get started with GenAIScript - [Configuration](https://microsoft.github.io/genaiscript/_llms-txt/configuration.txt): Configure access to LLMs and other services - [Reference](https://microsoft.github.io/genaiscript/_llms-txt/reference.txt): full reference documentation (runtime and cli) - [Reference Scripts](https://microsoft.github.io/genaiscript/_llms-txt/reference-scripts.txt): full reference documentation for the runtime - [Reference CLI](https://microsoft.github.io/genaiscript/_llms-txt/reference-cli.txt): full reference documentation for the command line interface and Node.JS runtime - [Guides](https://microsoft.github.io/genaiscript/_llms-txt/guides.txt): Guides on various LLM programming topics ## Notes - The complete documentation includes all content from the official documentation - The content is automatically generated from the same source as the official documentation