+ );
+}
+
+export function TableOfContents({ items }: TableOfContentsProps) {
+ const flatItems = useMemo(() => flattenTocItems(items), [items]);
+ const [activeId, setActiveId] = useState(
+ flatItems[0]?.id
+ );
+
+ useEffect(() => {
+ setActiveId(flatItems[0]?.id);
+ }, [flatItems]);
+
+ useEffect(() => {
+ if (flatItems.length === 0) {
+ return;
+ }
+
+ const headings = flatItems
+ .map((item) => document.getElementById(item.id))
+ .filter((heading): heading is HTMLElement => Boolean(heading));
+
+ const getActiveHeading = () => {
+ const scrollBottom = window.scrollY + window.innerHeight;
+ const pageBottom = document.documentElement.scrollHeight;
+
+ if (pageBottom - scrollBottom <= BOTTOM_SCROLL_TOLERANCE) {
+ return headings.at(-1);
+ }
+
+ const activeLine = Math.max(
+ HEADING_TOP_OFFSET,
+ Math.min(
+ window.innerHeight * ACTIVE_LINE_RATIO,
+ HEADING_TOP_OFFSET + ACTIVE_LINE_MAX_OFFSET
+ )
+ );
+
+ let activeHeading = headings[0];
+ for (const heading of headings) {
+ if (heading.getBoundingClientRect().top <= activeLine) {
+ activeHeading = heading;
+ continue;
+ }
+
+ break;
+ }
+
+ return activeHeading;
+ };
+
+ let animationFrame = 0;
+
+ const updateActiveHeading = () => {
+ animationFrame = 0;
+ setActiveId(getActiveHeading()?.id);
+ };
+
+ const scheduleActiveHeadingUpdate = () => {
+ if (animationFrame !== 0) {
+ return;
+ }
+
+ animationFrame = window.requestAnimationFrame(updateActiveHeading);
+ };
+
+ const updateFromHash = () => {
+ const hashId = decodeURIComponent(window.location.hash.slice(1));
+ const hashHeading = headings.find((heading) => heading.id === hashId);
+ if (hashHeading) {
+ setActiveId(hashHeading.id);
+ }
+ scheduleActiveHeadingUpdate();
+ };
+
+ updateFromHash();
+
+ window.addEventListener("scroll", scheduleActiveHeadingUpdate, {
+ passive: true,
+ });
+ window.addEventListener("resize", scheduleActiveHeadingUpdate);
+ window.addEventListener("hashchange", updateFromHash);
+
+ return () => {
+ if (animationFrame !== 0) {
+ window.cancelAnimationFrame(animationFrame);
+ }
+ window.removeEventListener("scroll", scheduleActiveHeadingUpdate);
+ window.removeEventListener("resize", scheduleActiveHeadingUpdate);
+ window.removeEventListener("hashchange", updateFromHash);
+ };
+ }, [flatItems]);
+
+ if (items.length === 0) {
+ return null;
+ }
+
+ return (
+
+ );
+}
diff --git a/apps/example/src/generated/agent-readability.json b/apps/example/src/generated/agent-readability.json
index fcd254a..f636cfc 100644
--- a/apps/example/src/generated/agent-readability.json
+++ b/apps/example/src/generated/agent-readability.json
@@ -1,6 +1,6 @@
{
"version": 1,
- "generatedAt": "2026-05-10T23:52:50.702Z",
+ "generatedAt": "2026-05-11T01:03:23.362Z",
"baseUrl": "https://leadtype.dev",
"product": {
"name": "Leadtype",
@@ -18,7 +18,7 @@
"groups": [
"get-started"
],
- "lastModified": "2026-05-10T22:54:48.000Z"
+ "lastModified": "2026-05-11T01:01:43.000Z"
},
{
"title": "Components",
@@ -31,7 +31,7 @@
"groups": [
"authoring"
],
- "lastModified": "2026-05-10T22:54:48.000Z"
+ "lastModified": "2026-05-11T01:01:43.000Z"
},
{
"title": "Frontmatter",
@@ -44,7 +44,7 @@
"groups": [
"authoring"
],
- "lastModified": "2026-05-10T23:20:16.000Z"
+ "lastModified": "2026-05-11T01:01:43.000Z"
},
{
"title": "Bundle docs into a package",
@@ -57,7 +57,7 @@
"groups": [
"build"
],
- "lastModified": "2026-05-10T22:54:48.000Z"
+ "lastModified": "2026-05-11T01:01:43.000Z"
},
{
"title": "Connect a docs site",
@@ -70,7 +70,7 @@
"groups": [
"build"
],
- "lastModified": "2026-05-10T23:20:16.000Z"
+ "lastModified": "2026-05-11T01:01:43.000Z"
},
{
"title": "Optimize docs for agents",
@@ -83,7 +83,7 @@
"groups": [
"build"
],
- "lastModified": "2026-05-10T22:54:48.000Z"
+ "lastModified": "2026-05-11T01:01:43.000Z"
},
{
"title": "Validate in CI",
@@ -109,7 +109,7 @@
"groups": [
"get-started"
],
- "lastModified": "2026-05-10T23:20:16.000Z"
+ "lastModified": "2026-05-11T01:01:43.000Z"
},
{
"title": "Methodology",
@@ -122,7 +122,7 @@
"groups": [
"get-started"
],
- "lastModified": "2026-05-10T22:54:48.000Z"
+ "lastModified": "2026-05-11T01:01:43.000Z"
},
{
"title": "Quickstart",
@@ -135,7 +135,7 @@
"groups": [
"get-started"
],
- "lastModified": "2026-05-10T22:54:48.000Z"
+ "lastModified": "2026-05-11T01:01:43.000Z"
},
{
"title": "CLI",
@@ -148,7 +148,7 @@
"groups": [
"reference"
],
- "lastModified": "2026-05-10T22:54:48.000Z"
+ "lastModified": "2026-05-11T01:01:43.000Z"
},
{
"title": "Convert",
@@ -174,7 +174,7 @@
"groups": [
"reference"
],
- "lastModified": "2026-05-10T22:54:48.000Z"
+ "lastModified": "2026-05-11T01:01:43.000Z"
},
{
"title": "Lint rules",
@@ -200,7 +200,7 @@
"groups": [
"reference"
],
- "lastModified": "2026-05-10T22:54:48.000Z"
+ "lastModified": "2026-05-11T01:01:43.000Z"
},
{
"title": "Remark plugins",
@@ -213,7 +213,7 @@
"groups": [
"reference"
],
- "lastModified": "2026-05-10T22:54:48.000Z"
+ "lastModified": "2026-05-11T01:01:43.000Z"
},
{
"title": "Search",
@@ -245,6 +245,35 @@
"description": "One MDX source. A website for humans, AGENTS.md for offline coding agents, llms.txt for HTTP agents — all from a single pipeline.",
"groups": [
"get-started"
+ ],
+ "toc": [
+ {
+ "id": "choose-your-path",
+ "title": "Choose your path",
+ "level": 2,
+ "urlPath": "/docs",
+ "urlWithHash": "/docs#choose-your-path",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs#choose-your-path",
+ "children": []
+ },
+ {
+ "id": "what-you-get",
+ "title": "What you get",
+ "level": 2,
+ "urlPath": "/docs",
+ "urlWithHash": "/docs#what-you-get",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs#what-you-get",
+ "children": []
+ },
+ {
+ "id": "next",
+ "title": "Next",
+ "level": 2,
+ "urlPath": "/docs",
+ "urlWithHash": "/docs#next",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs#next",
+ "children": []
+ }
]
},
{
@@ -253,6 +282,71 @@
"description": "The mental model: one MDX source, a remark pipeline, two output modes, three audiences.",
"groups": [
"get-started"
+ ],
+ "toc": [
+ {
+ "id": "the-pipeline",
+ "title": "The pipeline",
+ "level": 2,
+ "urlPath": "/docs/how-it-works",
+ "urlWithHash": "/docs/how-it-works#the-pipeline",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/how-it-works#the-pipeline",
+ "children": []
+ },
+ {
+ "id": "two-output-modes",
+ "title": "Two output modes",
+ "level": 2,
+ "urlPath": "/docs/how-it-works",
+ "urlWithHash": "/docs/how-it-works#two-output-modes",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/how-it-works#two-output-modes",
+ "children": []
+ },
+ {
+ "id": "the-artifacts",
+ "title": "The artifacts",
+ "level": 2,
+ "urlPath": "/docs/how-it-works",
+ "urlWithHash": "/docs/how-it-works#the-artifacts",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/how-it-works#the-artifacts",
+ "children": []
+ },
+ {
+ "id": "the-three-audiences",
+ "title": "The three audiences",
+ "level": 2,
+ "urlPath": "/docs/how-it-works",
+ "urlWithHash": "/docs/how-it-works#the-three-audiences",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/how-it-works#the-three-audiences",
+ "children": []
+ },
+ {
+ "id": "vocabulary",
+ "title": "Vocabulary",
+ "level": 2,
+ "urlPath": "/docs/how-it-works",
+ "urlWithHash": "/docs/how-it-works#vocabulary",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/how-it-works#vocabulary",
+ "children": []
+ },
+ {
+ "id": "what-runs-when",
+ "title": "What runs when",
+ "level": 2,
+ "urlPath": "/docs/how-it-works",
+ "urlWithHash": "/docs/how-it-works#what-runs-when",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/how-it-works#what-runs-when",
+ "children": []
+ },
+ {
+ "id": "where-to-next",
+ "title": "Where to next",
+ "level": 2,
+ "urlPath": "/docs/how-it-works",
+ "urlWithHash": "/docs/how-it-works#where-to-next",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/how-it-works#where-to-next",
+ "children": []
+ }
]
},
{
@@ -261,6 +355,44 @@
"description": "How leadtype differs from Fumadocs, Starlight, and Mintlify.",
"groups": [
"get-started"
+ ],
+ "toc": [
+ {
+ "id": "the-short-version",
+ "title": "The short version",
+ "level": 2,
+ "urlPath": "/docs/methodology",
+ "urlWithHash": "/docs/methodology#the-short-version",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/methodology#the-short-version",
+ "children": []
+ },
+ {
+ "id": "what-leadtype-owns",
+ "title": "What leadtype owns",
+ "level": 2,
+ "urlPath": "/docs/methodology",
+ "urlWithHash": "/docs/methodology#what-leadtype-owns",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/methodology#what-leadtype-owns",
+ "children": []
+ },
+ {
+ "id": "what-leadtype-does-not-own",
+ "title": "What leadtype does not own",
+ "level": 2,
+ "urlPath": "/docs/methodology",
+ "urlWithHash": "/docs/methodology#what-leadtype-does-not-own",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/methodology#what-leadtype-does-not-own",
+ "children": []
+ },
+ {
+ "id": "when-the-combination-shines",
+ "title": "When the combination shines",
+ "level": 2,
+ "urlPath": "/docs/methodology",
+ "urlWithHash": "/docs/methodology#when-the-combination-shines",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/methodology#when-the-combination-shines",
+ "children": []
+ }
]
},
{
@@ -269,6 +401,62 @@
"description": "Install leadtype, run it against a docs folder, and inspect the artifacts it produces.",
"groups": [
"get-started"
+ ],
+ "toc": [
+ {
+ "id": "install",
+ "title": "Install",
+ "level": 2,
+ "urlPath": "/docs/quickstart",
+ "urlWithHash": "/docs/quickstart#install",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/quickstart#install",
+ "children": []
+ },
+ {
+ "id": "author-one-page",
+ "title": "Author one page",
+ "level": 2,
+ "urlPath": "/docs/quickstart",
+ "urlWithHash": "/docs/quickstart#author-one-page",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/quickstart#author-one-page",
+ "children": []
+ },
+ {
+ "id": "generate",
+ "title": "Generate",
+ "level": 2,
+ "urlPath": "/docs/quickstart",
+ "urlWithHash": "/docs/quickstart#generate",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/quickstart#generate",
+ "children": []
+ },
+ {
+ "id": "inspect-the-output",
+ "title": "Inspect the output",
+ "level": 2,
+ "urlPath": "/docs/quickstart",
+ "urlWithHash": "/docs/quickstart#inspect-the-output",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/quickstart#inspect-the-output",
+ "children": []
+ },
+ {
+ "id": "bundle-for-offline-agents",
+ "title": "Bundle for offline agents",
+ "level": 2,
+ "urlPath": "/docs/quickstart",
+ "urlWithHash": "/docs/quickstart#bundle-for-offline-agents",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/quickstart#bundle-for-offline-agents",
+ "children": []
+ },
+ {
+ "id": "what-s-next",
+ "title": "What's next",
+ "level": 2,
+ "urlPath": "/docs/quickstart",
+ "urlWithHash": "/docs/quickstart#what-s-next",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/quickstart#what-s-next",
+ "children": []
+ }
]
}
],
@@ -288,6 +476,208 @@
"description": "MDX components the pipeline knows how to flatten into agent-readable markdown.",
"groups": [
"authoring"
+ ],
+ "toc": [
+ {
+ "id": "why-flatten-at-all",
+ "title": "Why flatten at all?",
+ "level": 2,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#why-flatten-at-all",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#why-flatten-at-all",
+ "children": []
+ },
+ {
+ "id": "the-naming-contract",
+ "title": "The naming contract",
+ "level": 2,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#the-naming-contract",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#the-naming-contract",
+ "children": []
+ },
+ {
+ "id": "headings-and-table-of-contents",
+ "title": "Headings and table of contents",
+ "level": 2,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#headings-and-table-of-contents",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#headings-and-table-of-contents",
+ "children": [
+ {
+ "id": "the-slug-contract",
+ "title": "The slug contract",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#the-slug-contract",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#the-slug-contract",
+ "children": []
+ },
+ {
+ "id": "where-the-toc-data-lives",
+ "title": "Where the TOC data lives",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#where-the-toc-data-lives",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#where-the-toc-data-lives",
+ "children": []
+ },
+ {
+ "id": "rendering-the-sidebar",
+ "title": "Rendering the sidebar",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#rendering-the-sidebar",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#rendering-the-sidebar",
+ "children": []
+ },
+ {
+ "id": "troubleshooting",
+ "title": "Troubleshooting",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#troubleshooting",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#troubleshooting",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "component-reference",
+ "title": "Component reference",
+ "level": 2,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#component-reference",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#component-reference",
+ "children": [
+ {
+ "id": "callout",
+ "title": "Callout",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#callout",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#callout",
+ "children": []
+ },
+ {
+ "id": "cards",
+ "title": "Cards",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#cards",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#cards",
+ "children": []
+ },
+ {
+ "id": "steps",
+ "title": "Steps",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#steps",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#steps",
+ "children": []
+ },
+ {
+ "id": "tabs",
+ "title": "Tabs",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#tabs",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#tabs",
+ "children": []
+ },
+ {
+ "id": "commandtabs",
+ "title": "CommandTabs",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#commandtabs",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#commandtabs",
+ "children": []
+ },
+ {
+ "id": "prompt",
+ "title": "Prompt",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#prompt",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#prompt",
+ "children": []
+ },
+ {
+ "id": "audience",
+ "title": "Audience",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#audience",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#audience",
+ "children": []
+ },
+ {
+ "id": "filetree",
+ "title": "FileTree",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#filetree",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#filetree",
+ "children": []
+ },
+ {
+ "id": "accordion",
+ "title": "Accordion",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#accordion",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#accordion",
+ "children": []
+ },
+ {
+ "id": "topicswitcher",
+ "title": "TopicSwitcher",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#topicswitcher",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#topicswitcher",
+ "children": []
+ },
+ {
+ "id": "typetable-and-extractedtypetable",
+ "title": "TypeTable and ExtractedTypeTable",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#typetable-and-extractedtypetable",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#typetable-and-extractedtypetable",
+ "children": []
+ },
+ {
+ "id": "example",
+ "title": "Example",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#example",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#example",
+ "children": []
+ },
+ {
+ "id": "mermaid",
+ "title": "Mermaid",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#mermaid",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#mermaid",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "guidelines",
+ "title": "Guidelines",
+ "level": 2,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#guidelines",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#guidelines",
+ "children": []
+ }
]
},
{
@@ -296,6 +686,63 @@
"description": "Required fields, group semantics, and how authored MDX becomes a navigation tree.",
"groups": [
"authoring"
+ ],
+ "toc": [
+ {
+ "id": "minimum",
+ "title": "Minimum",
+ "level": 2,
+ "urlPath": "/docs/authoring/frontmatter",
+ "urlWithHash": "/docs/authoring/frontmatter#minimum",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/frontmatter#minimum",
+ "children": []
+ },
+ {
+ "id": "how-groups-become-a-nav-tree",
+ "title": "How groups become a nav tree",
+ "level": 2,
+ "urlPath": "/docs/authoring/frontmatter",
+ "urlWithHash": "/docs/authoring/frontmatter#how-groups-become-a-nav-tree",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/frontmatter#how-groups-become-a-nav-tree",
+ "children": [
+ {
+ "id": "nested-groups",
+ "title": "Nested groups",
+ "level": 3,
+ "urlPath": "/docs/authoring/frontmatter",
+ "urlWithHash": "/docs/authoring/frontmatter#nested-groups",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/frontmatter#nested-groups",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "optional-fields",
+ "title": "Optional fields",
+ "level": 2,
+ "urlPath": "/docs/authoring/frontmatter",
+ "urlWithHash": "/docs/authoring/frontmatter#optional-fields",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/frontmatter#optional-fields",
+ "children": []
+ },
+ {
+ "id": "lint-rules",
+ "title": "Lint rules",
+ "level": 2,
+ "urlPath": "/docs/authoring/frontmatter",
+ "urlWithHash": "/docs/authoring/frontmatter#lint-rules",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/frontmatter#lint-rules",
+ "children": []
+ },
+ {
+ "id": "what-this-gives-you",
+ "title": "What this gives you",
+ "level": 2,
+ "urlPath": "/docs/authoring/frontmatter",
+ "urlWithHash": "/docs/authoring/frontmatter#what-this-gives-you",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/frontmatter#what-this-gives-you",
+ "children": []
+ }
]
}
],
@@ -315,6 +762,89 @@
"description": "Ship agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.",
"groups": [
"build"
+ ],
+ "toc": [
+ {
+ "id": "the-flow",
+ "title": "The flow",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#the-flow",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#the-flow",
+ "children": []
+ },
+ {
+ "id": "why-agents-md-not-llms-txt",
+ "title": "Why AGENTS.md, not llms.txt?",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#why-agents-md-not-llms-txt",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#why-agents-md-not-llms-txt",
+ "children": []
+ },
+ {
+ "id": "generate-into-the-package",
+ "title": "Generate into the package",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#generate-into-the-package",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#generate-into-the-package",
+ "children": []
+ },
+ {
+ "id": "filter-to-package-specific-docs",
+ "title": "Filter to package-specific docs",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#filter-to-package-specific-docs",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#filter-to-package-specific-docs",
+ "children": []
+ },
+ {
+ "id": "include-in-the-published-tarball",
+ "title": "Include in the published tarball",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#include-in-the-published-tarball",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#include-in-the-published-tarball",
+ "children": []
+ },
+ {
+ "id": "verify-before-publishing",
+ "title": "Verify before publishing",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#verify-before-publishing",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#verify-before-publishing",
+ "children": []
+ },
+ {
+ "id": "tell-consuming-projects-to-use-the-bundle",
+ "title": "Tell consuming projects to use the bundle",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#tell-consuming-projects-to-use-the-bundle",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#tell-consuming-projects-to-use-the-bundle",
+ "children": []
+ },
+ {
+ "id": "when-to-use-this",
+ "title": "When to use this",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#when-to-use-this",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#when-to-use-this",
+ "children": []
+ },
+ {
+ "id": "what-s-next",
+ "title": "What's next",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#what-s-next",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#what-s-next",
+ "children": []
+ }
]
},
{
@@ -323,6 +853,80 @@
"description": "Wire leadtype into a docs app build so humans, agents, and search use one source.",
"groups": [
"build"
+ ],
+ "toc": [
+ {
+ "id": "the-flow",
+ "title": "The flow",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#the-flow",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#the-flow",
+ "children": []
+ },
+ {
+ "id": "one-off-run",
+ "title": "One-off run",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#one-off-run",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#one-off-run",
+ "children": []
+ },
+ {
+ "id": "wire-it-into-the-build",
+ "title": "Wire it into the build",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#wire-it-into-the-build",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#wire-it-into-the-build",
+ "children": []
+ },
+ {
+ "id": "configure-the-product-and-groups",
+ "title": "Configure the product and groups",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#configure-the-product-and-groups",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#configure-the-product-and-groups",
+ "children": []
+ },
+ {
+ "id": "make-the-site-agent-readable",
+ "title": "Make the site agent-readable",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#make-the-site-agent-readable",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#make-the-site-agent-readable",
+ "children": []
+ },
+ {
+ "id": "connect-a-remote-source",
+ "title": "Connect a remote source",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#connect-a-remote-source",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#connect-a-remote-source",
+ "children": []
+ },
+ {
+ "id": "verify",
+ "title": "Verify",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#verify",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#verify",
+ "children": []
+ },
+ {
+ "id": "what-s-next",
+ "title": "What's next",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#what-s-next",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#what-s-next",
+ "children": []
+ }
]
},
{
@@ -331,6 +935,90 @@
"description": "Set up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.",
"groups": [
"build"
+ ],
+ "toc": [
+ {
+ "id": "what-good-looks-like",
+ "title": "What good looks like",
+ "level": 2,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#what-good-looks-like",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#what-good-looks-like",
+ "children": []
+ },
+ {
+ "id": "1-generate-the-artifacts",
+ "title": "1. Generate the artifacts",
+ "level": 2,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#1-generate-the-artifacts",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#1-generate-the-artifacts",
+ "children": []
+ },
+ {
+ "id": "2-serve-root-discovery-files",
+ "title": "2. Serve root discovery files",
+ "level": 2,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#2-serve-root-discovery-files",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#2-serve-root-discovery-files",
+ "children": []
+ },
+ {
+ "id": "3-add-json-ld-to-docs-pages",
+ "title": "3. Add JSON-LD to docs pages",
+ "level": 2,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#3-add-json-ld-to-docs-pages",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#3-add-json-ld-to-docs-pages",
+ "children": []
+ },
+ {
+ "id": "4-return-markdown-to-agents",
+ "title": "4. Return markdown to agents",
+ "level": 2,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#4-return-markdown-to-agents",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#4-return-markdown-to-agents",
+ "children": [
+ {
+ "id": "serve-sitemap-xml-and-robots-txt-with-the-live-origin",
+ "title": "Serve sitemap.xml and robots.txt with the live origin",
+ "level": 3,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#serve-sitemap-xml-and-robots-txt-with-the-live-origin",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#serve-sitemap-xml-and-robots-txt-with-the-live-origin",
+ "children": []
+ },
+ {
+ "id": "cache-control-and-cdn",
+ "title": "Cache-Control and CDN",
+ "level": 3,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#cache-control-and-cdn",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#cache-control-and-cdn",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "5-verify-locally",
+ "title": "5. Verify locally",
+ "level": 2,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#5-verify-locally",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#5-verify-locally",
+ "children": []
+ },
+ {
+ "id": "minimal-checklist",
+ "title": "Minimal checklist",
+ "level": 2,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#minimal-checklist",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#minimal-checklist",
+ "children": []
+ }
]
},
{
@@ -339,6 +1027,62 @@
"description": "Run leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.",
"groups": [
"build"
+ ],
+ "toc": [
+ {
+ "id": "what-it-catches",
+ "title": "What it catches",
+ "level": 2,
+ "urlPath": "/docs/build/validate-in-ci",
+ "urlWithHash": "/docs/build/validate-in-ci#what-it-catches",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/validate-in-ci#what-it-catches",
+ "children": []
+ },
+ {
+ "id": "github-actions",
+ "title": "GitHub Actions",
+ "level": 2,
+ "urlPath": "/docs/build/validate-in-ci",
+ "urlWithHash": "/docs/build/validate-in-ci#github-actions",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/validate-in-ci#github-actions",
+ "children": []
+ },
+ {
+ "id": "other-ci-providers",
+ "title": "Other CI providers",
+ "level": 2,
+ "urlPath": "/docs/build/validate-in-ci",
+ "urlWithHash": "/docs/build/validate-in-ci#other-ci-providers",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/validate-in-ci#other-ci-providers",
+ "children": []
+ },
+ {
+ "id": "local-pre-push-hook",
+ "title": "Local pre-push hook",
+ "level": 2,
+ "urlPath": "/docs/build/validate-in-ci",
+ "urlWithHash": "/docs/build/validate-in-ci#local-pre-push-hook",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/validate-in-ci#local-pre-push-hook",
+ "children": []
+ },
+ {
+ "id": "run-before-generate",
+ "title": "Run before generate",
+ "level": 2,
+ "urlPath": "/docs/build/validate-in-ci",
+ "urlWithHash": "/docs/build/validate-in-ci#run-before-generate",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/validate-in-ci#run-before-generate",
+ "children": []
+ },
+ {
+ "id": "what-to-fix-first",
+ "title": "What to fix first",
+ "level": 2,
+ "urlPath": "/docs/build/validate-in-ci",
+ "urlWithHash": "/docs/build/validate-in-ci#what-to-fix-first",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/validate-in-ci#what-to-fix-first",
+ "children": []
+ }
]
}
],
@@ -358,6 +1102,72 @@
"description": "leadtype generate and leadtype lint — flags, exit codes, and JSON output.",
"groups": [
"reference"
+ ],
+ "toc": [
+ {
+ "id": "generate",
+ "title": "generate",
+ "level": 2,
+ "urlPath": "/docs/reference/cli",
+ "urlWithHash": "/docs/reference/cli#generate",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/cli#generate",
+ "children": [
+ {
+ "id": "bundle-mode",
+ "title": "Bundle mode",
+ "level": 3,
+ "urlPath": "/docs/reference/cli",
+ "urlWithHash": "/docs/reference/cli#bundle-mode",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/cli#bundle-mode",
+ "children": []
+ },
+ {
+ "id": "json-output-shape",
+ "title": "JSON output shape",
+ "level": 3,
+ "urlPath": "/docs/reference/cli",
+ "urlWithHash": "/docs/reference/cli#json-output-shape",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/cli#json-output-shape",
+ "children": []
+ },
+ {
+ "id": "group-inference",
+ "title": "Group inference",
+ "level": 3,
+ "urlPath": "/docs/reference/cli",
+ "urlWithHash": "/docs/reference/cli#group-inference",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/cli#group-inference",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "lint",
+ "title": "lint",
+ "level": 2,
+ "urlPath": "/docs/reference/cli",
+ "urlWithHash": "/docs/reference/cli#lint",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/cli#lint",
+ "children": []
+ },
+ {
+ "id": "help",
+ "title": "help",
+ "level": 2,
+ "urlPath": "/docs/reference/cli",
+ "urlWithHash": "/docs/reference/cli#help",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/cli#help",
+ "children": []
+ },
+ {
+ "id": "library-entry-points",
+ "title": "Library entry points",
+ "level": 2,
+ "urlPath": "/docs/reference/cli",
+ "urlWithHash": "/docs/reference/cli#library-entry-points",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/cli#library-entry-points",
+ "children": []
+ }
]
},
{
@@ -366,6 +1176,53 @@
"description": "MDX-to-markdown conversion APIs from leadtype/convert.",
"groups": [
"reference"
+ ],
+ "toc": [
+ {
+ "id": "convertallmdx",
+ "title": "convertAllMdx",
+ "level": 2,
+ "urlPath": "/docs/reference/convert",
+ "urlWithHash": "/docs/reference/convert#convertallmdx",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/convert#convertallmdx",
+ "children": []
+ },
+ {
+ "id": "convertmdxtomarkdown",
+ "title": "convertMdxToMarkdown",
+ "level": 2,
+ "urlPath": "/docs/reference/convert",
+ "urlWithHash": "/docs/reference/convert#convertmdxtomarkdown",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/convert#convertmdxtomarkdown",
+ "children": []
+ },
+ {
+ "id": "writemdxfileasmarkdown",
+ "title": "writeMdxFileAsMarkdown",
+ "level": 2,
+ "urlPath": "/docs/reference/convert",
+ "urlWithHash": "/docs/reference/convert#writemdxfileasmarkdown",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/convert#writemdxfileasmarkdown",
+ "children": []
+ },
+ {
+ "id": "behavior-notes",
+ "title": "Behavior notes",
+ "level": 2,
+ "urlPath": "/docs/reference/convert",
+ "urlWithHash": "/docs/reference/convert#behavior-notes",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/convert#behavior-notes",
+ "children": []
+ },
+ {
+ "id": "pairing-with-remark-plugins",
+ "title": "Pairing with remark plugins",
+ "level": 2,
+ "urlPath": "/docs/reference/convert",
+ "urlWithHash": "/docs/reference/convert#pairing-with-remark-plugins",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/convert#pairing-with-remark-plugins",
+ "children": []
+ }
]
},
{
@@ -374,6 +1231,53 @@
"description": "How Leadtype benchmarks AGENTS.md, llms.txt, and llms-full.txt output before changing defaults.",
"groups": [
"reference"
+ ],
+ "toc": [
+ {
+ "id": "what-we-benchmark",
+ "title": "What we benchmark",
+ "level": 2,
+ "urlPath": "/docs/reference/evals",
+ "urlWithHash": "/docs/reference/evals#what-we-benchmark",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/evals#what-we-benchmark",
+ "children": []
+ },
+ {
+ "id": "what-we-learned",
+ "title": "What we learned",
+ "level": 2,
+ "urlPath": "/docs/reference/evals",
+ "urlWithHash": "/docs/reference/evals#what-we-learned",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/evals#what-we-learned",
+ "children": []
+ },
+ {
+ "id": "current-default",
+ "title": "Current default",
+ "level": 2,
+ "urlPath": "/docs/reference/evals",
+ "urlWithHash": "/docs/reference/evals#current-default",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/evals#current-default",
+ "children": []
+ },
+ {
+ "id": "open-question",
+ "title": "Open question",
+ "level": 2,
+ "urlPath": "/docs/reference/evals",
+ "urlWithHash": "/docs/reference/evals#open-question",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/evals#open-question",
+ "children": []
+ },
+ {
+ "id": "run-the-evals",
+ "title": "Run the evals",
+ "level": 2,
+ "urlPath": "/docs/reference/evals",
+ "urlWithHash": "/docs/reference/evals#run-the-evals",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/evals#run-the-evals",
+ "children": []
+ }
]
},
{
@@ -382,6 +1286,110 @@
"description": "Schema, link, and navigation checks. CLI and library API.",
"groups": [
"reference"
+ ],
+ "toc": [
+ {
+ "id": "rules",
+ "title": "Rules",
+ "level": 2,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#rules",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#rules",
+ "children": [
+ {
+ "id": "frontmatter-rules",
+ "title": "Frontmatter rules",
+ "level": 3,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#frontmatter-rules",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#frontmatter-rules",
+ "children": []
+ },
+ {
+ "id": "content-link-rules",
+ "title": "Content / link rules",
+ "level": 3,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#content-link-rules",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#content-link-rules",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "library-api",
+ "title": "Library API",
+ "level": 2,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#library-api",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#library-api",
+ "children": [
+ {
+ "id": "result-shape",
+ "title": "Result shape",
+ "level": 3,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#result-shape",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#result-shape",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "default-schemas",
+ "title": "Default schemas",
+ "level": 2,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#default-schemas",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#default-schemas",
+ "children": [
+ {
+ "id": "docs-frontmatter",
+ "title": "Docs frontmatter",
+ "level": 3,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#docs-frontmatter",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#docs-frontmatter",
+ "children": []
+ },
+ {
+ "id": "changelog-frontmatter",
+ "title": "Changelog frontmatter",
+ "level": 3,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#changelog-frontmatter",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#changelog-frontmatter",
+ "children": []
+ },
+ {
+ "id": "meta-json",
+ "title": "meta.json",
+ "level": 3,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#meta-json",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#meta-json",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "custom-schemas",
+ "title": "Custom schemas",
+ "level": 2,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#custom-schemas",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#custom-schemas",
+ "children": []
+ },
+ {
+ "id": "practical-guidance",
+ "title": "Practical guidance",
+ "level": 2,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#practical-guidance",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#practical-guidance",
+ "children": []
+ }
]
},
{
@@ -390,6 +1398,163 @@
"description": "Generate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.",
"groups": [
"reference"
+ ],
+ "toc": [
+ {
+ "id": "what-gets-generated",
+ "title": "What gets generated",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#what-gets-generated",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#what-gets-generated",
+ "children": []
+ },
+ {
+ "id": "example-llms-txt",
+ "title": "Example llms.txt",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#example-llms-txt",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#example-llms-txt",
+ "children": []
+ },
+ {
+ "id": "typical-sequence",
+ "title": "Typical sequence",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#typical-sequence",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#typical-sequence",
+ "children": []
+ },
+ {
+ "id": "generateagentreadabilityartifacts",
+ "title": "generateAgentReadabilityArtifacts",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#generateagentreadabilityartifacts",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#generateagentreadabilityartifacts",
+ "children": []
+ },
+ {
+ "id": "agent-readability-helpers",
+ "title": "Agent readability helpers",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#agent-readability-helpers",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#agent-readability-helpers",
+ "children": [
+ {
+ "id": "createagentmarkdownresponse",
+ "title": "createAgentMarkdownResponse",
+ "level": 3,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#createagentmarkdownresponse",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#createagentmarkdownresponse",
+ "children": []
+ },
+ {
+ "id": "createsitemapxmlresponse-createsitemapmarkdownresponse-createrobotstxtresponse",
+ "title": "createSitemapXmlResponse / createSitemapMarkdownResponse / createRobotsTxtResponse",
+ "level": 3,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#createsitemapxmlresponse-createsitemapmarkdownresponse-createrobotstxtresponse",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#createsitemapxmlresponse-createsitemapmarkdownresponse-createrobotstxtresponse",
+ "children": []
+ },
+ {
+ "id": "createdocshead",
+ "title": "createDocsHead",
+ "level": 3,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#createdocshead",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#createdocshead",
+ "children": []
+ },
+ {
+ "id": "lower-level-helpers",
+ "title": "Lower-level helpers",
+ "level": 3,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#lower-level-helpers",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#lower-level-helpers",
+ "children": []
+ },
+ {
+ "id": "cache-control-and-cdn",
+ "title": "Cache-Control and CDN",
+ "level": 3,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#cache-control-and-cdn",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#cache-control-and-cdn",
+ "children": []
+ },
+ {
+ "id": "manifest-version",
+ "title": "Manifest version",
+ "level": 3,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#manifest-version",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#manifest-version",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "generateagentsmd",
+ "title": "generateAgentsMd",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#generateagentsmd",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#generateagentsmd",
+ "children": [
+ {
+ "id": "example-output",
+ "title": "Example output",
+ "level": 3,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#example-output",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#example-output",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "resolvedocsnavigation",
+ "title": "resolveDocsNavigation",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#resolvedocsnavigation",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#resolvedocsnavigation",
+ "children": []
+ },
+ {
+ "id": "tables-of-contents",
+ "title": "Tables of contents",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#tables-of-contents",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#tables-of-contents",
+ "children": []
+ },
+ {
+ "id": "group-design",
+ "title": "Group design",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#group-design",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#group-design",
+ "children": []
+ },
+ {
+ "id": "base-url-precedence",
+ "title": "Base URL precedence",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#base-url-precedence",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#base-url-precedence",
+ "children": []
+ }
]
},
{
@@ -398,6 +1563,63 @@
"description": "The default plugin stack that flattens MDX components into markdown.",
"groups": [
"reference"
+ ],
+ "toc": [
+ {
+ "id": "the-default-stack",
+ "title": "The default stack",
+ "level": 2,
+ "urlPath": "/docs/reference/remark",
+ "urlWithHash": "/docs/reference/remark#the-default-stack",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/remark#the-default-stack",
+ "children": []
+ },
+ {
+ "id": "why-order-matters",
+ "title": "Why order matters",
+ "level": 2,
+ "urlPath": "/docs/reference/remark",
+ "urlWithHash": "/docs/reference/remark#why-order-matters",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/remark#why-order-matters",
+ "children": []
+ },
+ {
+ "id": "optional-plugins",
+ "title": "Optional plugins",
+ "level": 2,
+ "urlPath": "/docs/reference/remark",
+ "urlWithHash": "/docs/reference/remark#optional-plugins",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/remark#optional-plugins",
+ "children": [
+ {
+ "id": "remarkinclude",
+ "title": "remarkInclude",
+ "level": 3,
+ "urlPath": "/docs/reference/remark",
+ "urlWithHash": "/docs/reference/remark#remarkinclude",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/remark#remarkinclude",
+ "children": []
+ },
+ {
+ "id": "remarktypetabletomarkdown-with-basepath",
+ "title": "remarkTypeTableToMarkdown with basePath",
+ "level": 3,
+ "urlPath": "/docs/reference/remark",
+ "urlWithHash": "/docs/reference/remark#remarktypetabletomarkdown-with-basepath",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/remark#remarktypetabletomarkdown-with-basepath",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "plugin-selection-rules",
+ "title": "Plugin selection rules",
+ "level": 2,
+ "urlPath": "/docs/reference/remark",
+ "urlWithHash": "/docs/reference/remark#plugin-selection-rules",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/remark#plugin-selection-rules",
+ "children": []
+ }
]
},
{
@@ -406,6 +1628,89 @@
"description": "Static search index, runtime helpers, and source-grounded answer streaming.",
"groups": [
"reference"
+ ],
+ "toc": [
+ {
+ "id": "vocabulary",
+ "title": "Vocabulary",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#vocabulary",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#vocabulary",
+ "children": []
+ },
+ {
+ "id": "build-time-indexing",
+ "title": "Build-time indexing",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#build-time-indexing",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#build-time-indexing",
+ "children": []
+ },
+ {
+ "id": "runtime-search",
+ "title": "Runtime search",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#runtime-search",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#runtime-search",
+ "children": []
+ },
+ {
+ "id": "reading-docs-at-runtime",
+ "title": "Reading docs at runtime",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#reading-docs-at-runtime",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#reading-docs-at-runtime",
+ "children": []
+ },
+ {
+ "id": "source-grounded-answers",
+ "title": "Source-grounded answers",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#source-grounded-answers",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#source-grounded-answers",
+ "children": []
+ },
+ {
+ "id": "streaming-via-provider-entry-points",
+ "title": "Streaming via provider entry points",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#streaming-via-provider-entry-points",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#streaming-via-provider-entry-points",
+ "children": []
+ },
+ {
+ "id": "bash-tool-adapters",
+ "title": "Bash tool adapters",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#bash-tool-adapters",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#bash-tool-adapters",
+ "children": []
+ },
+ {
+ "id": "abuse-guards",
+ "title": "Abuse guards",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#abuse-guards",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#abuse-guards",
+ "children": []
+ },
+ {
+ "id": "when-to-add-embeddings",
+ "title": "When to add embeddings",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#when-to-add-embeddings",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#when-to-add-embeddings",
+ "children": []
+ }
]
}
],
diff --git a/apps/example/src/generated/docs-nav.json b/apps/example/src/generated/docs-nav.json
index 47ccaac..2525f99 100644
--- a/apps/example/src/generated/docs-nav.json
+++ b/apps/example/src/generated/docs-nav.json
@@ -14,6 +14,35 @@
"description": "One MDX source. A website for humans, AGENTS.md for offline coding agents, llms.txt for HTTP agents — all from a single pipeline.",
"groups": [
"get-started"
+ ],
+ "toc": [
+ {
+ "id": "choose-your-path",
+ "title": "Choose your path",
+ "level": 2,
+ "urlPath": "/docs",
+ "urlWithHash": "/docs#choose-your-path",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs#choose-your-path",
+ "children": []
+ },
+ {
+ "id": "what-you-get",
+ "title": "What you get",
+ "level": 2,
+ "urlPath": "/docs",
+ "urlWithHash": "/docs#what-you-get",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs#what-you-get",
+ "children": []
+ },
+ {
+ "id": "next",
+ "title": "Next",
+ "level": 2,
+ "urlPath": "/docs",
+ "urlWithHash": "/docs#next",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs#next",
+ "children": []
+ }
]
},
{
@@ -22,6 +51,71 @@
"description": "The mental model: one MDX source, a remark pipeline, two output modes, three audiences.",
"groups": [
"get-started"
+ ],
+ "toc": [
+ {
+ "id": "the-pipeline",
+ "title": "The pipeline",
+ "level": 2,
+ "urlPath": "/docs/how-it-works",
+ "urlWithHash": "/docs/how-it-works#the-pipeline",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/how-it-works#the-pipeline",
+ "children": []
+ },
+ {
+ "id": "two-output-modes",
+ "title": "Two output modes",
+ "level": 2,
+ "urlPath": "/docs/how-it-works",
+ "urlWithHash": "/docs/how-it-works#two-output-modes",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/how-it-works#two-output-modes",
+ "children": []
+ },
+ {
+ "id": "the-artifacts",
+ "title": "The artifacts",
+ "level": 2,
+ "urlPath": "/docs/how-it-works",
+ "urlWithHash": "/docs/how-it-works#the-artifacts",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/how-it-works#the-artifacts",
+ "children": []
+ },
+ {
+ "id": "the-three-audiences",
+ "title": "The three audiences",
+ "level": 2,
+ "urlPath": "/docs/how-it-works",
+ "urlWithHash": "/docs/how-it-works#the-three-audiences",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/how-it-works#the-three-audiences",
+ "children": []
+ },
+ {
+ "id": "vocabulary",
+ "title": "Vocabulary",
+ "level": 2,
+ "urlPath": "/docs/how-it-works",
+ "urlWithHash": "/docs/how-it-works#vocabulary",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/how-it-works#vocabulary",
+ "children": []
+ },
+ {
+ "id": "what-runs-when",
+ "title": "What runs when",
+ "level": 2,
+ "urlPath": "/docs/how-it-works",
+ "urlWithHash": "/docs/how-it-works#what-runs-when",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/how-it-works#what-runs-when",
+ "children": []
+ },
+ {
+ "id": "where-to-next",
+ "title": "Where to next",
+ "level": 2,
+ "urlPath": "/docs/how-it-works",
+ "urlWithHash": "/docs/how-it-works#where-to-next",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/how-it-works#where-to-next",
+ "children": []
+ }
]
},
{
@@ -30,6 +124,44 @@
"description": "How leadtype differs from Fumadocs, Starlight, and Mintlify.",
"groups": [
"get-started"
+ ],
+ "toc": [
+ {
+ "id": "the-short-version",
+ "title": "The short version",
+ "level": 2,
+ "urlPath": "/docs/methodology",
+ "urlWithHash": "/docs/methodology#the-short-version",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/methodology#the-short-version",
+ "children": []
+ },
+ {
+ "id": "what-leadtype-owns",
+ "title": "What leadtype owns",
+ "level": 2,
+ "urlPath": "/docs/methodology",
+ "urlWithHash": "/docs/methodology#what-leadtype-owns",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/methodology#what-leadtype-owns",
+ "children": []
+ },
+ {
+ "id": "what-leadtype-does-not-own",
+ "title": "What leadtype does not own",
+ "level": 2,
+ "urlPath": "/docs/methodology",
+ "urlWithHash": "/docs/methodology#what-leadtype-does-not-own",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/methodology#what-leadtype-does-not-own",
+ "children": []
+ },
+ {
+ "id": "when-the-combination-shines",
+ "title": "When the combination shines",
+ "level": 2,
+ "urlPath": "/docs/methodology",
+ "urlWithHash": "/docs/methodology#when-the-combination-shines",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/methodology#when-the-combination-shines",
+ "children": []
+ }
]
},
{
@@ -38,6 +170,62 @@
"description": "Install leadtype, run it against a docs folder, and inspect the artifacts it produces.",
"groups": [
"get-started"
+ ],
+ "toc": [
+ {
+ "id": "install",
+ "title": "Install",
+ "level": 2,
+ "urlPath": "/docs/quickstart",
+ "urlWithHash": "/docs/quickstart#install",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/quickstart#install",
+ "children": []
+ },
+ {
+ "id": "author-one-page",
+ "title": "Author one page",
+ "level": 2,
+ "urlPath": "/docs/quickstart",
+ "urlWithHash": "/docs/quickstart#author-one-page",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/quickstart#author-one-page",
+ "children": []
+ },
+ {
+ "id": "generate",
+ "title": "Generate",
+ "level": 2,
+ "urlPath": "/docs/quickstart",
+ "urlWithHash": "/docs/quickstart#generate",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/quickstart#generate",
+ "children": []
+ },
+ {
+ "id": "inspect-the-output",
+ "title": "Inspect the output",
+ "level": 2,
+ "urlPath": "/docs/quickstart",
+ "urlWithHash": "/docs/quickstart#inspect-the-output",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/quickstart#inspect-the-output",
+ "children": []
+ },
+ {
+ "id": "bundle-for-offline-agents",
+ "title": "Bundle for offline agents",
+ "level": 2,
+ "urlPath": "/docs/quickstart",
+ "urlWithHash": "/docs/quickstart#bundle-for-offline-agents",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/quickstart#bundle-for-offline-agents",
+ "children": []
+ },
+ {
+ "id": "what-s-next",
+ "title": "What's next",
+ "level": 2,
+ "urlPath": "/docs/quickstart",
+ "urlWithHash": "/docs/quickstart#what-s-next",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/quickstart#what-s-next",
+ "children": []
+ }
]
}
],
@@ -57,6 +245,208 @@
"description": "MDX components the pipeline knows how to flatten into agent-readable markdown.",
"groups": [
"authoring"
+ ],
+ "toc": [
+ {
+ "id": "why-flatten-at-all",
+ "title": "Why flatten at all?",
+ "level": 2,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#why-flatten-at-all",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#why-flatten-at-all",
+ "children": []
+ },
+ {
+ "id": "the-naming-contract",
+ "title": "The naming contract",
+ "level": 2,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#the-naming-contract",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#the-naming-contract",
+ "children": []
+ },
+ {
+ "id": "headings-and-table-of-contents",
+ "title": "Headings and table of contents",
+ "level": 2,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#headings-and-table-of-contents",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#headings-and-table-of-contents",
+ "children": [
+ {
+ "id": "the-slug-contract",
+ "title": "The slug contract",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#the-slug-contract",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#the-slug-contract",
+ "children": []
+ },
+ {
+ "id": "where-the-toc-data-lives",
+ "title": "Where the TOC data lives",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#where-the-toc-data-lives",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#where-the-toc-data-lives",
+ "children": []
+ },
+ {
+ "id": "rendering-the-sidebar",
+ "title": "Rendering the sidebar",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#rendering-the-sidebar",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#rendering-the-sidebar",
+ "children": []
+ },
+ {
+ "id": "troubleshooting",
+ "title": "Troubleshooting",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#troubleshooting",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#troubleshooting",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "component-reference",
+ "title": "Component reference",
+ "level": 2,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#component-reference",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#component-reference",
+ "children": [
+ {
+ "id": "callout",
+ "title": "Callout",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#callout",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#callout",
+ "children": []
+ },
+ {
+ "id": "cards",
+ "title": "Cards",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#cards",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#cards",
+ "children": []
+ },
+ {
+ "id": "steps",
+ "title": "Steps",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#steps",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#steps",
+ "children": []
+ },
+ {
+ "id": "tabs",
+ "title": "Tabs",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#tabs",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#tabs",
+ "children": []
+ },
+ {
+ "id": "commandtabs",
+ "title": "CommandTabs",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#commandtabs",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#commandtabs",
+ "children": []
+ },
+ {
+ "id": "prompt",
+ "title": "Prompt",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#prompt",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#prompt",
+ "children": []
+ },
+ {
+ "id": "audience",
+ "title": "Audience",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#audience",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#audience",
+ "children": []
+ },
+ {
+ "id": "filetree",
+ "title": "FileTree",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#filetree",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#filetree",
+ "children": []
+ },
+ {
+ "id": "accordion",
+ "title": "Accordion",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#accordion",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#accordion",
+ "children": []
+ },
+ {
+ "id": "topicswitcher",
+ "title": "TopicSwitcher",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#topicswitcher",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#topicswitcher",
+ "children": []
+ },
+ {
+ "id": "typetable-and-extractedtypetable",
+ "title": "TypeTable and ExtractedTypeTable",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#typetable-and-extractedtypetable",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#typetable-and-extractedtypetable",
+ "children": []
+ },
+ {
+ "id": "example",
+ "title": "Example",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#example",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#example",
+ "children": []
+ },
+ {
+ "id": "mermaid",
+ "title": "Mermaid",
+ "level": 3,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#mermaid",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#mermaid",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "guidelines",
+ "title": "Guidelines",
+ "level": 2,
+ "urlPath": "/docs/authoring/components",
+ "urlWithHash": "/docs/authoring/components#guidelines",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/components#guidelines",
+ "children": []
+ }
]
},
{
@@ -65,6 +455,63 @@
"description": "Required fields, group semantics, and how authored MDX becomes a navigation tree.",
"groups": [
"authoring"
+ ],
+ "toc": [
+ {
+ "id": "minimum",
+ "title": "Minimum",
+ "level": 2,
+ "urlPath": "/docs/authoring/frontmatter",
+ "urlWithHash": "/docs/authoring/frontmatter#minimum",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/frontmatter#minimum",
+ "children": []
+ },
+ {
+ "id": "how-groups-become-a-nav-tree",
+ "title": "How groups become a nav tree",
+ "level": 2,
+ "urlPath": "/docs/authoring/frontmatter",
+ "urlWithHash": "/docs/authoring/frontmatter#how-groups-become-a-nav-tree",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/frontmatter#how-groups-become-a-nav-tree",
+ "children": [
+ {
+ "id": "nested-groups",
+ "title": "Nested groups",
+ "level": 3,
+ "urlPath": "/docs/authoring/frontmatter",
+ "urlWithHash": "/docs/authoring/frontmatter#nested-groups",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/frontmatter#nested-groups",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "optional-fields",
+ "title": "Optional fields",
+ "level": 2,
+ "urlPath": "/docs/authoring/frontmatter",
+ "urlWithHash": "/docs/authoring/frontmatter#optional-fields",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/frontmatter#optional-fields",
+ "children": []
+ },
+ {
+ "id": "lint-rules",
+ "title": "Lint rules",
+ "level": 2,
+ "urlPath": "/docs/authoring/frontmatter",
+ "urlWithHash": "/docs/authoring/frontmatter#lint-rules",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/frontmatter#lint-rules",
+ "children": []
+ },
+ {
+ "id": "what-this-gives-you",
+ "title": "What this gives you",
+ "level": 2,
+ "urlPath": "/docs/authoring/frontmatter",
+ "urlWithHash": "/docs/authoring/frontmatter#what-this-gives-you",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/authoring/frontmatter#what-this-gives-you",
+ "children": []
+ }
]
}
],
@@ -84,6 +531,89 @@
"description": "Ship agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.",
"groups": [
"build"
+ ],
+ "toc": [
+ {
+ "id": "the-flow",
+ "title": "The flow",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#the-flow",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#the-flow",
+ "children": []
+ },
+ {
+ "id": "why-agents-md-not-llms-txt",
+ "title": "Why AGENTS.md, not llms.txt?",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#why-agents-md-not-llms-txt",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#why-agents-md-not-llms-txt",
+ "children": []
+ },
+ {
+ "id": "generate-into-the-package",
+ "title": "Generate into the package",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#generate-into-the-package",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#generate-into-the-package",
+ "children": []
+ },
+ {
+ "id": "filter-to-package-specific-docs",
+ "title": "Filter to package-specific docs",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#filter-to-package-specific-docs",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#filter-to-package-specific-docs",
+ "children": []
+ },
+ {
+ "id": "include-in-the-published-tarball",
+ "title": "Include in the published tarball",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#include-in-the-published-tarball",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#include-in-the-published-tarball",
+ "children": []
+ },
+ {
+ "id": "verify-before-publishing",
+ "title": "Verify before publishing",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#verify-before-publishing",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#verify-before-publishing",
+ "children": []
+ },
+ {
+ "id": "tell-consuming-projects-to-use-the-bundle",
+ "title": "Tell consuming projects to use the bundle",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#tell-consuming-projects-to-use-the-bundle",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#tell-consuming-projects-to-use-the-bundle",
+ "children": []
+ },
+ {
+ "id": "when-to-use-this",
+ "title": "When to use this",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#when-to-use-this",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#when-to-use-this",
+ "children": []
+ },
+ {
+ "id": "what-s-next",
+ "title": "What's next",
+ "level": 2,
+ "urlPath": "/docs/build/bundle-package-docs",
+ "urlWithHash": "/docs/build/bundle-package-docs#what-s-next",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/bundle-package-docs#what-s-next",
+ "children": []
+ }
]
},
{
@@ -92,6 +622,80 @@
"description": "Wire leadtype into a docs app build so humans, agents, and search use one source.",
"groups": [
"build"
+ ],
+ "toc": [
+ {
+ "id": "the-flow",
+ "title": "The flow",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#the-flow",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#the-flow",
+ "children": []
+ },
+ {
+ "id": "one-off-run",
+ "title": "One-off run",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#one-off-run",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#one-off-run",
+ "children": []
+ },
+ {
+ "id": "wire-it-into-the-build",
+ "title": "Wire it into the build",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#wire-it-into-the-build",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#wire-it-into-the-build",
+ "children": []
+ },
+ {
+ "id": "configure-the-product-and-groups",
+ "title": "Configure the product and groups",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#configure-the-product-and-groups",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#configure-the-product-and-groups",
+ "children": []
+ },
+ {
+ "id": "make-the-site-agent-readable",
+ "title": "Make the site agent-readable",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#make-the-site-agent-readable",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#make-the-site-agent-readable",
+ "children": []
+ },
+ {
+ "id": "connect-a-remote-source",
+ "title": "Connect a remote source",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#connect-a-remote-source",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#connect-a-remote-source",
+ "children": []
+ },
+ {
+ "id": "verify",
+ "title": "Verify",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#verify",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#verify",
+ "children": []
+ },
+ {
+ "id": "what-s-next",
+ "title": "What's next",
+ "level": 2,
+ "urlPath": "/docs/build/connect-docs-site",
+ "urlWithHash": "/docs/build/connect-docs-site#what-s-next",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/connect-docs-site#what-s-next",
+ "children": []
+ }
]
},
{
@@ -100,6 +704,90 @@
"description": "Set up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.",
"groups": [
"build"
+ ],
+ "toc": [
+ {
+ "id": "what-good-looks-like",
+ "title": "What good looks like",
+ "level": 2,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#what-good-looks-like",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#what-good-looks-like",
+ "children": []
+ },
+ {
+ "id": "1-generate-the-artifacts",
+ "title": "1. Generate the artifacts",
+ "level": 2,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#1-generate-the-artifacts",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#1-generate-the-artifacts",
+ "children": []
+ },
+ {
+ "id": "2-serve-root-discovery-files",
+ "title": "2. Serve root discovery files",
+ "level": 2,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#2-serve-root-discovery-files",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#2-serve-root-discovery-files",
+ "children": []
+ },
+ {
+ "id": "3-add-json-ld-to-docs-pages",
+ "title": "3. Add JSON-LD to docs pages",
+ "level": 2,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#3-add-json-ld-to-docs-pages",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#3-add-json-ld-to-docs-pages",
+ "children": []
+ },
+ {
+ "id": "4-return-markdown-to-agents",
+ "title": "4. Return markdown to agents",
+ "level": 2,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#4-return-markdown-to-agents",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#4-return-markdown-to-agents",
+ "children": [
+ {
+ "id": "serve-sitemap-xml-and-robots-txt-with-the-live-origin",
+ "title": "Serve sitemap.xml and robots.txt with the live origin",
+ "level": 3,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#serve-sitemap-xml-and-robots-txt-with-the-live-origin",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#serve-sitemap-xml-and-robots-txt-with-the-live-origin",
+ "children": []
+ },
+ {
+ "id": "cache-control-and-cdn",
+ "title": "Cache-Control and CDN",
+ "level": 3,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#cache-control-and-cdn",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#cache-control-and-cdn",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "5-verify-locally",
+ "title": "5. Verify locally",
+ "level": 2,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#5-verify-locally",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#5-verify-locally",
+ "children": []
+ },
+ {
+ "id": "minimal-checklist",
+ "title": "Minimal checklist",
+ "level": 2,
+ "urlPath": "/docs/build/optimize-docs-for-agents",
+ "urlWithHash": "/docs/build/optimize-docs-for-agents#minimal-checklist",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/optimize-docs-for-agents#minimal-checklist",
+ "children": []
+ }
]
},
{
@@ -108,6 +796,62 @@
"description": "Run leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.",
"groups": [
"build"
+ ],
+ "toc": [
+ {
+ "id": "what-it-catches",
+ "title": "What it catches",
+ "level": 2,
+ "urlPath": "/docs/build/validate-in-ci",
+ "urlWithHash": "/docs/build/validate-in-ci#what-it-catches",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/validate-in-ci#what-it-catches",
+ "children": []
+ },
+ {
+ "id": "github-actions",
+ "title": "GitHub Actions",
+ "level": 2,
+ "urlPath": "/docs/build/validate-in-ci",
+ "urlWithHash": "/docs/build/validate-in-ci#github-actions",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/validate-in-ci#github-actions",
+ "children": []
+ },
+ {
+ "id": "other-ci-providers",
+ "title": "Other CI providers",
+ "level": 2,
+ "urlPath": "/docs/build/validate-in-ci",
+ "urlWithHash": "/docs/build/validate-in-ci#other-ci-providers",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/validate-in-ci#other-ci-providers",
+ "children": []
+ },
+ {
+ "id": "local-pre-push-hook",
+ "title": "Local pre-push hook",
+ "level": 2,
+ "urlPath": "/docs/build/validate-in-ci",
+ "urlWithHash": "/docs/build/validate-in-ci#local-pre-push-hook",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/validate-in-ci#local-pre-push-hook",
+ "children": []
+ },
+ {
+ "id": "run-before-generate",
+ "title": "Run before generate",
+ "level": 2,
+ "urlPath": "/docs/build/validate-in-ci",
+ "urlWithHash": "/docs/build/validate-in-ci#run-before-generate",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/validate-in-ci#run-before-generate",
+ "children": []
+ },
+ {
+ "id": "what-to-fix-first",
+ "title": "What to fix first",
+ "level": 2,
+ "urlPath": "/docs/build/validate-in-ci",
+ "urlWithHash": "/docs/build/validate-in-ci#what-to-fix-first",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/build/validate-in-ci#what-to-fix-first",
+ "children": []
+ }
]
}
],
@@ -127,6 +871,72 @@
"description": "leadtype generate and leadtype lint — flags, exit codes, and JSON output.",
"groups": [
"reference"
+ ],
+ "toc": [
+ {
+ "id": "generate",
+ "title": "generate",
+ "level": 2,
+ "urlPath": "/docs/reference/cli",
+ "urlWithHash": "/docs/reference/cli#generate",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/cli#generate",
+ "children": [
+ {
+ "id": "bundle-mode",
+ "title": "Bundle mode",
+ "level": 3,
+ "urlPath": "/docs/reference/cli",
+ "urlWithHash": "/docs/reference/cli#bundle-mode",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/cli#bundle-mode",
+ "children": []
+ },
+ {
+ "id": "json-output-shape",
+ "title": "JSON output shape",
+ "level": 3,
+ "urlPath": "/docs/reference/cli",
+ "urlWithHash": "/docs/reference/cli#json-output-shape",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/cli#json-output-shape",
+ "children": []
+ },
+ {
+ "id": "group-inference",
+ "title": "Group inference",
+ "level": 3,
+ "urlPath": "/docs/reference/cli",
+ "urlWithHash": "/docs/reference/cli#group-inference",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/cli#group-inference",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "lint",
+ "title": "lint",
+ "level": 2,
+ "urlPath": "/docs/reference/cli",
+ "urlWithHash": "/docs/reference/cli#lint",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/cli#lint",
+ "children": []
+ },
+ {
+ "id": "help",
+ "title": "help",
+ "level": 2,
+ "urlPath": "/docs/reference/cli",
+ "urlWithHash": "/docs/reference/cli#help",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/cli#help",
+ "children": []
+ },
+ {
+ "id": "library-entry-points",
+ "title": "Library entry points",
+ "level": 2,
+ "urlPath": "/docs/reference/cli",
+ "urlWithHash": "/docs/reference/cli#library-entry-points",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/cli#library-entry-points",
+ "children": []
+ }
]
},
{
@@ -135,6 +945,53 @@
"description": "MDX-to-markdown conversion APIs from leadtype/convert.",
"groups": [
"reference"
+ ],
+ "toc": [
+ {
+ "id": "convertallmdx",
+ "title": "convertAllMdx",
+ "level": 2,
+ "urlPath": "/docs/reference/convert",
+ "urlWithHash": "/docs/reference/convert#convertallmdx",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/convert#convertallmdx",
+ "children": []
+ },
+ {
+ "id": "convertmdxtomarkdown",
+ "title": "convertMdxToMarkdown",
+ "level": 2,
+ "urlPath": "/docs/reference/convert",
+ "urlWithHash": "/docs/reference/convert#convertmdxtomarkdown",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/convert#convertmdxtomarkdown",
+ "children": []
+ },
+ {
+ "id": "writemdxfileasmarkdown",
+ "title": "writeMdxFileAsMarkdown",
+ "level": 2,
+ "urlPath": "/docs/reference/convert",
+ "urlWithHash": "/docs/reference/convert#writemdxfileasmarkdown",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/convert#writemdxfileasmarkdown",
+ "children": []
+ },
+ {
+ "id": "behavior-notes",
+ "title": "Behavior notes",
+ "level": 2,
+ "urlPath": "/docs/reference/convert",
+ "urlWithHash": "/docs/reference/convert#behavior-notes",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/convert#behavior-notes",
+ "children": []
+ },
+ {
+ "id": "pairing-with-remark-plugins",
+ "title": "Pairing with remark plugins",
+ "level": 2,
+ "urlPath": "/docs/reference/convert",
+ "urlWithHash": "/docs/reference/convert#pairing-with-remark-plugins",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/convert#pairing-with-remark-plugins",
+ "children": []
+ }
]
},
{
@@ -143,6 +1000,53 @@
"description": "How Leadtype benchmarks AGENTS.md, llms.txt, and llms-full.txt output before changing defaults.",
"groups": [
"reference"
+ ],
+ "toc": [
+ {
+ "id": "what-we-benchmark",
+ "title": "What we benchmark",
+ "level": 2,
+ "urlPath": "/docs/reference/evals",
+ "urlWithHash": "/docs/reference/evals#what-we-benchmark",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/evals#what-we-benchmark",
+ "children": []
+ },
+ {
+ "id": "what-we-learned",
+ "title": "What we learned",
+ "level": 2,
+ "urlPath": "/docs/reference/evals",
+ "urlWithHash": "/docs/reference/evals#what-we-learned",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/evals#what-we-learned",
+ "children": []
+ },
+ {
+ "id": "current-default",
+ "title": "Current default",
+ "level": 2,
+ "urlPath": "/docs/reference/evals",
+ "urlWithHash": "/docs/reference/evals#current-default",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/evals#current-default",
+ "children": []
+ },
+ {
+ "id": "open-question",
+ "title": "Open question",
+ "level": 2,
+ "urlPath": "/docs/reference/evals",
+ "urlWithHash": "/docs/reference/evals#open-question",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/evals#open-question",
+ "children": []
+ },
+ {
+ "id": "run-the-evals",
+ "title": "Run the evals",
+ "level": 2,
+ "urlPath": "/docs/reference/evals",
+ "urlWithHash": "/docs/reference/evals#run-the-evals",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/evals#run-the-evals",
+ "children": []
+ }
]
},
{
@@ -151,6 +1055,110 @@
"description": "Schema, link, and navigation checks. CLI and library API.",
"groups": [
"reference"
+ ],
+ "toc": [
+ {
+ "id": "rules",
+ "title": "Rules",
+ "level": 2,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#rules",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#rules",
+ "children": [
+ {
+ "id": "frontmatter-rules",
+ "title": "Frontmatter rules",
+ "level": 3,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#frontmatter-rules",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#frontmatter-rules",
+ "children": []
+ },
+ {
+ "id": "content-link-rules",
+ "title": "Content / link rules",
+ "level": 3,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#content-link-rules",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#content-link-rules",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "library-api",
+ "title": "Library API",
+ "level": 2,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#library-api",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#library-api",
+ "children": [
+ {
+ "id": "result-shape",
+ "title": "Result shape",
+ "level": 3,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#result-shape",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#result-shape",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "default-schemas",
+ "title": "Default schemas",
+ "level": 2,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#default-schemas",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#default-schemas",
+ "children": [
+ {
+ "id": "docs-frontmatter",
+ "title": "Docs frontmatter",
+ "level": 3,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#docs-frontmatter",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#docs-frontmatter",
+ "children": []
+ },
+ {
+ "id": "changelog-frontmatter",
+ "title": "Changelog frontmatter",
+ "level": 3,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#changelog-frontmatter",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#changelog-frontmatter",
+ "children": []
+ },
+ {
+ "id": "meta-json",
+ "title": "meta.json",
+ "level": 3,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#meta-json",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#meta-json",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "custom-schemas",
+ "title": "Custom schemas",
+ "level": 2,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#custom-schemas",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#custom-schemas",
+ "children": []
+ },
+ {
+ "id": "practical-guidance",
+ "title": "Practical guidance",
+ "level": 2,
+ "urlPath": "/docs/reference/lint",
+ "urlWithHash": "/docs/reference/lint#practical-guidance",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/lint#practical-guidance",
+ "children": []
+ }
]
},
{
@@ -159,6 +1167,163 @@
"description": "Generate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.",
"groups": [
"reference"
+ ],
+ "toc": [
+ {
+ "id": "what-gets-generated",
+ "title": "What gets generated",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#what-gets-generated",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#what-gets-generated",
+ "children": []
+ },
+ {
+ "id": "example-llms-txt",
+ "title": "Example llms.txt",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#example-llms-txt",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#example-llms-txt",
+ "children": []
+ },
+ {
+ "id": "typical-sequence",
+ "title": "Typical sequence",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#typical-sequence",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#typical-sequence",
+ "children": []
+ },
+ {
+ "id": "generateagentreadabilityartifacts",
+ "title": "generateAgentReadabilityArtifacts",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#generateagentreadabilityartifacts",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#generateagentreadabilityartifacts",
+ "children": []
+ },
+ {
+ "id": "agent-readability-helpers",
+ "title": "Agent readability helpers",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#agent-readability-helpers",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#agent-readability-helpers",
+ "children": [
+ {
+ "id": "createagentmarkdownresponse",
+ "title": "createAgentMarkdownResponse",
+ "level": 3,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#createagentmarkdownresponse",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#createagentmarkdownresponse",
+ "children": []
+ },
+ {
+ "id": "createsitemapxmlresponse-createsitemapmarkdownresponse-createrobotstxtresponse",
+ "title": "createSitemapXmlResponse / createSitemapMarkdownResponse / createRobotsTxtResponse",
+ "level": 3,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#createsitemapxmlresponse-createsitemapmarkdownresponse-createrobotstxtresponse",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#createsitemapxmlresponse-createsitemapmarkdownresponse-createrobotstxtresponse",
+ "children": []
+ },
+ {
+ "id": "createdocshead",
+ "title": "createDocsHead",
+ "level": 3,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#createdocshead",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#createdocshead",
+ "children": []
+ },
+ {
+ "id": "lower-level-helpers",
+ "title": "Lower-level helpers",
+ "level": 3,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#lower-level-helpers",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#lower-level-helpers",
+ "children": []
+ },
+ {
+ "id": "cache-control-and-cdn",
+ "title": "Cache-Control and CDN",
+ "level": 3,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#cache-control-and-cdn",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#cache-control-and-cdn",
+ "children": []
+ },
+ {
+ "id": "manifest-version",
+ "title": "Manifest version",
+ "level": 3,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#manifest-version",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#manifest-version",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "generateagentsmd",
+ "title": "generateAgentsMd",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#generateagentsmd",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#generateagentsmd",
+ "children": [
+ {
+ "id": "example-output",
+ "title": "Example output",
+ "level": 3,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#example-output",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#example-output",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "resolvedocsnavigation",
+ "title": "resolveDocsNavigation",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#resolvedocsnavigation",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#resolvedocsnavigation",
+ "children": []
+ },
+ {
+ "id": "tables-of-contents",
+ "title": "Tables of contents",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#tables-of-contents",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#tables-of-contents",
+ "children": []
+ },
+ {
+ "id": "group-design",
+ "title": "Group design",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#group-design",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#group-design",
+ "children": []
+ },
+ {
+ "id": "base-url-precedence",
+ "title": "Base URL precedence",
+ "level": 2,
+ "urlPath": "/docs/reference/llm",
+ "urlWithHash": "/docs/reference/llm#base-url-precedence",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/llm#base-url-precedence",
+ "children": []
+ }
]
},
{
@@ -167,6 +1332,63 @@
"description": "The default plugin stack that flattens MDX components into markdown.",
"groups": [
"reference"
+ ],
+ "toc": [
+ {
+ "id": "the-default-stack",
+ "title": "The default stack",
+ "level": 2,
+ "urlPath": "/docs/reference/remark",
+ "urlWithHash": "/docs/reference/remark#the-default-stack",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/remark#the-default-stack",
+ "children": []
+ },
+ {
+ "id": "why-order-matters",
+ "title": "Why order matters",
+ "level": 2,
+ "urlPath": "/docs/reference/remark",
+ "urlWithHash": "/docs/reference/remark#why-order-matters",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/remark#why-order-matters",
+ "children": []
+ },
+ {
+ "id": "optional-plugins",
+ "title": "Optional plugins",
+ "level": 2,
+ "urlPath": "/docs/reference/remark",
+ "urlWithHash": "/docs/reference/remark#optional-plugins",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/remark#optional-plugins",
+ "children": [
+ {
+ "id": "remarkinclude",
+ "title": "remarkInclude",
+ "level": 3,
+ "urlPath": "/docs/reference/remark",
+ "urlWithHash": "/docs/reference/remark#remarkinclude",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/remark#remarkinclude",
+ "children": []
+ },
+ {
+ "id": "remarktypetabletomarkdown-with-basepath",
+ "title": "remarkTypeTableToMarkdown with basePath",
+ "level": 3,
+ "urlPath": "/docs/reference/remark",
+ "urlWithHash": "/docs/reference/remark#remarktypetabletomarkdown-with-basepath",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/remark#remarktypetabletomarkdown-with-basepath",
+ "children": []
+ }
+ ]
+ },
+ {
+ "id": "plugin-selection-rules",
+ "title": "Plugin selection rules",
+ "level": 2,
+ "urlPath": "/docs/reference/remark",
+ "urlWithHash": "/docs/reference/remark#plugin-selection-rules",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/remark#plugin-selection-rules",
+ "children": []
+ }
]
},
{
@@ -175,6 +1397,89 @@
"description": "Static search index, runtime helpers, and source-grounded answer streaming.",
"groups": [
"reference"
+ ],
+ "toc": [
+ {
+ "id": "vocabulary",
+ "title": "Vocabulary",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#vocabulary",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#vocabulary",
+ "children": []
+ },
+ {
+ "id": "build-time-indexing",
+ "title": "Build-time indexing",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#build-time-indexing",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#build-time-indexing",
+ "children": []
+ },
+ {
+ "id": "runtime-search",
+ "title": "Runtime search",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#runtime-search",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#runtime-search",
+ "children": []
+ },
+ {
+ "id": "reading-docs-at-runtime",
+ "title": "Reading docs at runtime",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#reading-docs-at-runtime",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#reading-docs-at-runtime",
+ "children": []
+ },
+ {
+ "id": "source-grounded-answers",
+ "title": "Source-grounded answers",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#source-grounded-answers",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#source-grounded-answers",
+ "children": []
+ },
+ {
+ "id": "streaming-via-provider-entry-points",
+ "title": "Streaming via provider entry points",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#streaming-via-provider-entry-points",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#streaming-via-provider-entry-points",
+ "children": []
+ },
+ {
+ "id": "bash-tool-adapters",
+ "title": "Bash tool adapters",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#bash-tool-adapters",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#bash-tool-adapters",
+ "children": []
+ },
+ {
+ "id": "abuse-guards",
+ "title": "Abuse guards",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#abuse-guards",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#abuse-guards",
+ "children": []
+ },
+ {
+ "id": "when-to-add-embeddings",
+ "title": "When to add embeddings",
+ "level": 2,
+ "urlPath": "/docs/reference/search",
+ "urlWithHash": "/docs/reference/search#when-to-add-embeddings",
+ "absoluteUrlWithHash": "https://leadtype.dev/docs/reference/search#when-to-add-embeddings",
+ "children": []
+ }
]
}
],
diff --git a/apps/example/src/generated/docs-search-content.json b/apps/example/src/generated/docs-search-content.json
index 04600f1..cedf05b 100644
--- a/apps/example/src/generated/docs-search-content.json
+++ b/apps/example/src/generated/docs-search-content.json
@@ -1 +1 @@
-{"version":2,"generatedAt":"2026-05-10T23:52:50.764Z","chunks":["Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nLeadtype does not ship UI components. Your docs app owns runtime rendering, styling, and accessibility — it only has to honor a small naming contract so the remark pipeline can flatten each component into markdown for agents, search, and llms-full.txt .","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nWhy flatten at all?\n\nInteractive MDX components like Body content goes here. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nCards\n\nA grid of short, linked entry points. Flattens to a bullet list of links. Convert Remark Search\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nSteps\n\nNumbered walkthroughs. Flattens to an ordered list with bold step titles. 1. Author docs in MDX Use the components in this list as authoring affordances. 2. Run the conversion leadtype generate writes flattened markdown to public/docs/ . 3. Serve both formats HTML for humans, .md for agents — same URL, content negotiated by the Accept header.\n\n```tsx Use the components in this list.`leadtype generate` writes flattened markdown. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nTabs\n\nGroup equivalent content. Flattens to bold headings followed by content so agents do not need a JSX-aware renderer to read every variant. tanstack-start Use a Vite middleware dev/preview and a Nitro middleware prod to negotiate the Accept header. next-js Wire content negotiation in middleware.ts and serve .md from a route handler. vite A configureServer middleware is enough for static deployments where .md files live in public/ .\n\n```tsx ……… ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nCommandTabs\n\nPackage-manager-aware install or run commands. Flattens to a markdown table with one row per manager. Use mode=\"install\" when command is a package name, mode=\"run\" when command is a CLI name, and mode=\"create\" for starter commands. Use the commands prop for exact per-manager overrides. Package manager Command -- -- npm npm install leadtype pnpm pnpm add leadtype yarn yarn add leadtype bun bun add leadtype Package manager Command -- -- npm npx leadtype lint pnpm pnpm dlx leadtype lint yarn yarn dlx leadtype lint bun bunx leadtype lint\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nPrompt\n\nDisplays an agent-ready prompt with a copy action. Flattening preserves the prompt body as a fenced prompt block so copied instructions also survive in .md , llms-full/ .txt , and bundled AGENTS.md output. Copy prompt for your coding agent Use this after generating artifacts.\n\n```tsx Inspect `public/docs/agent-readability.json`, then wire markdown responses before the HTML docs route. ``` ```prompt Inspect `public/docs/agent-readability.json`, then wire markdown responses before the HTML docs route. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nAudience\n\nSplits browser-only and agent-only guidance without forking the page. Human content renders in the docs UI and is omitted from markdown output; agent content is hidden in the browser and included in generated markdown. This sentence appears only in generated markdown for agents.\n\n```tsx Click the robot icon in the header.Read generated markdown before editing runtime routes. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nFileTree\n\nShows project structure in guides and release instructions. Flattening emits a fenced text tree so agents can read the same hierarchy without JSX.\n\n```tsx ``` ```text public/ ├── llms.txt └── docs/ ├── index.md └── llms-full/ └── get-started.txt ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nAccordion\n\nCollapsible details for secondary content. Flattening ignores open/closed state and emits every item — accordions are not a place to hide content from agents. When should I use accordions? Use them for supporting details, troubleshooting notes, and optional reference material. Closed content is still flattened by the remark pipeline. Are accordions a good place to hide content from LLMs? No. Conversion ignores the open/closed state and emits everything inside.\n\n```tsx Use them for supporting details and optional reference material. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nTopicSwitcher\n\nNavigation across equivalent docs topics — frameworks, SDKs, runtimes, deployment targets, product areas. Reader-facing only; it does not automatically read LLM topic config. Framework React — React integration Vue — Vue integration Svelte — Svelte integration\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nTypeTable and ExtractedTypeTable\n\nTypeTable is for explicit prop or type rows you already know. ExtractedTypeTable reads a TypeScript file at conversion time and extracts the table from a named type — keep its path stable. Property Type Description Default Required -- -- -- -- -- title string Heading rendered above the callout body. - ✅ Required variant CalloutVariant Visual treatment for the callout. info Optional deprecated \\ \\ boolean\\ \\ deprecated Marks the row as deprecated. false Optional\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nExample\n\nData-driven preview and source examples. The host component receives code as data; add file loaders or dynamic imports outside leadtype when an example needs app-specific behavior.\n\n```tsx The host app owns styling and runtime components while leadtype owns conversion. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nMermaid\n\nDiagrams authored as plain text. Renders client-side as interactive SVG. Flattening preserves the source as a fenced mermaid block so other tools can render the diagram from the markdown copy.\n\n```tsx |remark| Markdown Markdown -->|llms.txt| Agents`} /> ``` ```mermaid `graph LR MDX -->|remark| Markdown Markdown -->|search index| API Markdown -->|llms.txt| Agents` ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nGuidelines\n\nKeep runtime components in your docs app. Leadtype stays out of UI. Keep component names stable. Renaming resolver page1 --> resolver page2 --> resolver page3 --> resolver resolver --> nav resolver --> llms resolver --> agents` ```","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nHow groups become a nav tree\n\nNested groups\n\nDeclare children in the config to build deeper trees A page sets group bundle-package-docs and lands in that nested slot. Only leaf groups no children directly contain pages; non-leaf groups are headings only.\n\n```ts { slug: \"build\", title: \"Build\", children: [ { slug: \"bundle-package-docs\", title: \"Bundle a package\" }, { slug: \"connect-docs-site\", title: \"Connect a docs site\" }, ], } ```","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nOptional fields\n\nThe default lint schema also accepts Property Type Description Default Required -- -- -- -- -- icon string Icon name resolved by your sidebar component. - Optional deprecated boolean Marks the page as deprecated in nav and search. - Optional deprecatedReason string Short message paired with deprecated. - Optional experimental boolean Marks the page as experimental. - Optional canary boolean Hides from stable channels. - Optional new boolean Highlights the page as recently added. - Optional draft boolean Excludes from generation entirely. - Optional tags string\\ Free-form tags for search facets. - Optional availableIn Array\\<\\ framework, url?, title? Cross-framework availability map for TopicSwitcher pages. - Optional full boolean Layout hint for docs UIs that support full-width pages. - Optional lastModified and lastAuthor are filled in automatically when you pass --enrich-git to the CLI. Don't author them by hand.","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nLint rules\n\nleadtype lint enforces the schema, so violations surface in CI before they reach a build. The relevant rules schema — a required field is missing or has the wrong type. unknown-field — a top-level field isn't in the schema warn by default; --error-unknown to fail . parse-error — frontmatter or meta.json doesn't parse. invalid-link — a /docs/... link points to a route that doesn't exist. unresolved-placeholder — a doc URL still contains an unresolved framework placeholder. cross-framework-link — a framework-scoped page links to another framework's docs. See Lint rules for the full reference and how to extend the schema.","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nWhat this gives you\n\nOnce frontmatter is consistent, the rest of the pipeline works without per-page configuration. The same group value drives The sidebar position The llms.txt section Search metadata and AGENTS.md grouping The search filtering UI if you build one Cross-framework link checks in lint One field, one source of truth.","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nUse this path when you publish a library on npm and want coding agents, IDEs, and CLI tooling to read your docs without hitting the network. Run leadtype generate --bundle at prepack time, include the output in your published files , and every install ships AGENTS.md + per-topic markdown that the 25+ tools supporting agents.md auto-discover. The website is for humans. The package-bundled docs are for everyone else.","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nThe flow\n\n```mermaid `flowchart LR src[\"docs/*.mdx / (your repo)\"] cli[\"leadtype generate --bundle / --out packages/<name>\"] bundle[\"packages/<name>/ / AGENTS.md / docs/*.md\"] publish[\"npm publish\"] install[\"npm install <name>\"] consume[\"node_modules/<name>/ / AGENTS.md → docs/*.md / read by Claude Code, Codex, / Cursor, Copilot, …\"] src --> cli cli --> bundle bundle --> publish publish --> install install --> consume` ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nWhy AGENTS.md, not llms.txt?\n\nllms.txt is a website convention — a file at /llms.txt with absolute URLs that an agent fetches over HTTP. Inside an npm tarball it's the wrong shape every link points at a hosted URL the agent may not be able to reach, and no major coding agent looks for node modules/ 0) { for (const { urlPath, slug } of navigation.unknown) { process.stderr.write(`error: ${urlPath} declares unknown group \"${slug}\".\\n`); } process.exit(1); } await generateAgentsMd({ srcDir: REPO_ROOT, outDir: PACKAGE_ROOT, product: docsConfig.product, groups: docsConfig.groups, }); ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nVerify before publishing\n\nnpm pack --dry-run should list AGENTS.md docs/ / .md If AGENTS.md is missing, check files in package.json . If .md files are missing, check the --include / --exclude filters.\n\n```bash npx leadtype generate --bundle --src . --out packages/my-package cd packages/my-package && npm pack --dry-run ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nTell consuming projects to use the bundle\n\nAGENTS.md inside your tarball is auto-discovered by agents working in your published package — but for a project that depends on your package, the agent's working directory is the consumer's repo, not yours. You need to point them at the bundled docs. Recommend this snippet in your README so consumers add it to their own root AGENTS.md This is the same pattern Next.js uses to point agents at node modules/next/dist/docs/ .\n\n```md # When working with the `` library, read the bundled docs in `node_modules//AGENTS.md` first — they're version-matched to the installed package and stay accurate as the library updates. ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nWhen to use this\n\nUse this when agents should understand the package from the installed dependency itself — coding agents that don't have web access, IDE assistants, CLI tools, or air-gapped environments. Don't use this if your only goal is a public docs website. For that, see Connect a docs site. You can use both — they read the same source MDX, just emit different shapes.","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nWhat's next\n\nCLI reference LLM files Lint in CI","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nUse this path when you run a docs site or want to . Leadtype runs before your build to convert MDX, generate navigation data, build the search index, and produce agent-readable artifacts. Your site framework — TanStack Start, Next.js, Astro, anything — handles routing and rendering.","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nThe flow\n\n```mermaid `flowchart LR src[\"docs/*.mdx / (your repo)\"] cli[\"leadtype generate\"] pub[\"public/ / llms.txt · llms-full.txt / docs/*.md / docs/sitemap.xml / docs/agent-readability.json\"] gen[\"src/generated/ / docs-nav.json / docs-search-*.json\"] app[\"your docs app / routing + HTML\"] human[\"Humans / (HTML)\"] agent[\"Agents / (markdown + discovery files)\"] search[\"Search UI\"] src --> cli cli --> pub cli --> gen pub --> app gen --> app app --> human app --> agent gen --> search` ```","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nOne-off run\n\nFor a single repo where docs and site live together That single command converts MDX, generates llms.txt , writes Agent Readability discovery files, builds the search index, and resolves the navigation tree. Generated paths are listed by leadtype generate and inspected in detail under How it works.\n\n```bash npx leadtype generate \\ --src . \\ --out public \\ --base-url https://leadtype.dev \\ --name \"my-docs\" \\ --summary \"Short product summary.\" ```","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nWire it into the build\n\nAdd a pipeline step before vite/Next/Astro builds. The simplest setup is one script per stage so you can rerun convert/search independently during dev Splitting into separate scripts is optional — the CLI does all three in one pass. Use scripts when you want fine control over plugin order, base URL, or filtering. A canonical convert script remarkInclude enables / include foo / -style partial expansion. The basePath swap on remarkTypeTableToMarkdown is only needed if your docs use ` reads TypeScript files at conversion time. // Pass basePath so the component can resolve relative paths. const typeTablePlugin: NonNullable< MdxToMarkdownOptions[\"remarkPlugins\"] >[number] = [remarkTypeTableToMarkdown, { basePath: repoRoot }]; await convertAllMdx({ srcDir, outDir, remarkPlugins: [ remarkInclude, ...defaultRemarkPlugins.filter((p) => p !== remarkTypeTableToMarkdown), typeTablePlugin, ], enrichFrontmatterFromGit: true, }); ```","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nConfigure the product and groups\n\nAuthor docs/docs.config.ts once and let every stage read from it Pages declare group in frontmatter. The config declares the tree. The two together produce the navigation manifest, the llms.txt sections, and the lint check that catches typos. See Frontmatter for the resolution rules.\n\n```ts import { defineDocsConfig } from \"leadtype\"; export default defineDocsConfig({ product: { name: \"my-docs\", summary: \"Short product summary.\", bullets: [\"What it does in one bullet.\", \"Another bullet.\"], bestStartingPoints: [{ urlPath: \"/docs\" }, { urlPath: \"/docs/quickstart\" }], }, groups: [ { slug: \"get-started\", title: \"Get Started\" }, { slug: \"guides\", title: \"Guides\" }, ], }); ```","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nMake the site agent-readable\n\nAfter generation, wire the runtime pieces into your docs app Serve root discovery files /llms.txt , /sitemap.xml , /sitemap.md , and /robots.txt . Keep docs-scoped discovery files available under /docs/ . Add JSON-LD, canonical links, and markdown alternate links to docs HTML pages. Return markdown for Accept text/markdown , known AI user agents, and direct .md URLs. Preserve canonical url and last updated frontmatter in markdown responses. Leadtype provides leadtype/llm/readability so you do not have to hand-roll request detection, frontmatter aliases, missing-page markdown, or JSON-LD escaping. The full setup guide is Optimize docs for agents. The core request hook looks like this in any framework Put it before your HTML docs route. Normal browsers continue to receive HTML; agent-oriented requests receive the generated markdown with Content-Type text/markdown; charset=utf-8 . When implementing this in a codebase, inspect the framework's request pipeline before editing. The markdown response hook must run before static docs HTML routes, but it must not intercept /llms.txt , sitemap files, robots files, search JSON, or agent-readability.json .\n\n```ts import manifest from \"../public/docs/agent-readability.json\"; import { createAgentMarkdownResponse } from \"leadtype/llm/readability\"; const response = createAgentMarkdownResponse({ urlPath: request.url, method: request.method, headers: Object.fromEntries(request.headers), manifest, requestOrigin: new URL(request.url).origin, readMarkdownFile(target) { return readGeneratedFile(`public/${target.filePath}`); }, }); if (response) { return new Response(response.body, { status: response.status, headers: response.headers, }); } ```","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nMake the site agent-readable\n\nsponse hook must run before static docs HTML routes, but it must not intercept /llms.txt , sitemap files, robots files, search JSON, or agent-readability.json . After wiring, test both a normal browser request and an Accept text/markdown request for the same docs URL.","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nConnect a remote source\n\nWhen the docs source lives in a different repo from the docs site Run lint first so missing or malformed frontmatter fails before the converter writes anything. Use --format github in CI to get inline annotations on the PR. Use --json on generate so automation can read the resolved groups and search index stats. This is the shape we expect for orgs hosting one docs UI for multiple package repos the source lives next to the code it documents, the docs app pulls it in at build time. See Bundle docs into a package if the package should also ship docs inside its npm tarball.\n\n```bash git clone --depth 1 https://github.com/acme/package-a .docs-src/package-a npx leadtype lint .docs-src/package-a/docs --format github --error-unknown npx leadtype generate --src .docs-src/package-a --out public --json npm run build ```","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nVerify\n\nAfter a clean build public/docs/index.md — the converted home page. public/llms.txt — the routing index. Should mention every group from your config. public/llms-full.txt — all generated markdown docs flattened into one fallback file. public/docs/search-index.json and public/docs/search-content.json — non-empty. public/docs/sitemap.xml , public/docs/sitemap.md , and public/docs/agent-readability.json — docs-scoped discovery data. Merge these with your app's non-docs routes before serving root-level /sitemap.xml , /sitemap.md , and /robots.txt . Then start the dev server and check the agent-facing routes The markdown response should include content-type text/markdown; charset=utf-8 . If you get text/html back, the markdown response hook is not running before the docs HTML route.\n\n```bash curl http://localhost:5173/llms.txt curl http://localhost:5173/sitemap.xml curl http://localhost:5173/docs/sitemap.xml curl -I -H \"Accept: text/markdown\" http://localhost:5173/docs/ ```","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nWhat's next\n\nOptimize docs for agents Evals Lint in CI Search reference","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\nUse this guide when you already have a docs site and want agents to find, fetch, attribute, and cite the same content humans read in the browser. Leadtype handles the generated files. Your app wires those files into routing and HTML. The default output shape is based on the repo's agent evals. See Evals for the benchmark summary and the open question around larger-corpus llms-full.txt scaling.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\nWhat good looks like\n\nAn agent-readable docs site has four layers 1. Discovery files /llms.txt , /sitemap.xml , /sitemap.md , and /robots.txt tell agents what exists and where to start. 2. Markdown retrieval Each docs page has a markdown mirror at /docs/page.md , and agent requests to /docs/page can receive markdown instead of HTML. 3. Structured HTML metadata Human HTML pages include JSON-LD, canonical links, and markdown alternate links so agents can extract page identity without guessing from the DOM. 4. Attribution metadata Markdown responses include canonical url and last updated frontmatter so copied content keeps its source and freshness.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n1. Generate the artifacts\n\nRun the site-mode pipeline before your app build This writes the docs-scoped files under public/docs/ and the top-level public/llms.txt The generated agent-readability.json manifest is the bridge between build-time content and runtime requests. It contains page URLs, markdown mirror paths, titles, descriptions, group navigation, and freshness dates.\n\n```bash npx leadtype generate \\ --src . \\ --out public \\ --base-url https://leadtype.dev \\ --name \"My product\" \\ --summary \"One sentence about the product.\" ``` ```txt public/ ├── llms.txt ├── llms-full.txt └── docs/ ├── index.md ├── quickstart.md ├── llms.txt ├── sitemap.xml ├── sitemap.md ├── robots.txt └── agent-readability.json ```","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n2. Serve root discovery files\n\nThe recommended setup is runtime regenerators rather than static files for the few artifacts that need absolute URLs. That keeps preview and staging environments honest without rebuilding. If you also have marketing, blog, changelog, or product pages, pass them through the optional pages field — the regenerator merges them into the rebased output The other generated artifacts — /llms.txt , /docs/llms.txt , /llms-full.txt , /docs/agent-readability.json — use root-relative links and serve fine as static files straight from public/ . Keep the docs-scoped versions too /docs/sitemap.xml etc. . Audits and agents may request both /sitemap.xml and /docs/sitemap.xml , especially when the audited URL is /docs .\n\n```ts // In your framework's middleware (Vite plugin, Next.js middleware, Astro // endpoint, Cloudflare Worker, etc.): import manifest from \"../public/docs/agent-readability.json\"; import { createRobotsTxtResponse, createSitemapMarkdownResponse, createSitemapXmlResponse, } from \"leadtype/llm/readability\"; const url = new URL(request.url); const requestOrigin = url.origin; if (url.pathname === \"/sitemap.xml\" || url.pathname === \"/docs/sitemap.xml\") { return createSitemapXmlResponse({ manifest, requestOrigin }); } if (url.pathname === \"/sitemap.md\" || url.pathname === \"/docs/sitemap.md\") { return createSitemapMarkdownResponse({ manifest, requestOrigin }); } if (url.pathname === \"/robots.txt\") { return createRobotsTxtResponse({ manifest, requestOrigin }); } ``` ```ts return createSitemapXmlResponse({ manifest, requestOrigin, pages: [...manifest.pages, ...marketingPages, ...blogPages], }); ```","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n3. Add JSON-LD to docs pages\n\nUse the manifest entry for the current page and render Schema.org JSON-LD into the HTML head Use renderJsonLd page, manifest if your framework has a typed metadata API. Use renderJsonLdScript page, manifest if your framework expects an HTML string. Also add canonical and markdown alternate links The JSON-LD gives agents the page title, description, canonical URL, last modified date, and breadcrumbs without scraping your rendered layout.\n\n```ts import agentManifest from \"../public/docs/agent-readability.json\"; import { renderJsonLd, renderJsonLdScript } from \"leadtype/llm/readability\"; const page = agentManifest.pages.find( (entry) => entry.urlPath === \"/docs/quickstart\" ); if (page) { const jsonLd = renderJsonLd(page, agentManifest); const script = renderJsonLdScript(page, agentManifest); } ``` ```html ```","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\nUse createAgentMarkdownResponse from request middleware or route handlers. It returns a Web Response or null when the path is not an agent-oriented markdown request and handles Accept text/markdown and Accept text/plain content negotiation q-values respected . Known AI user-agent headers GPTBot, ClaudeBot, Bingbot, AmazonBot, MetaExternalAgent, PerplexityBot, MistralBot, AppleBot, ByteSpider, YouBot, … . Direct .md URLs such as /docs/quickstart.md . canonical url and last updated frontmatter aliases injected automatically. 200 markdown responses for missing docs pages, so agents do not discard the body. Content-Type text/markdown; charset=utf-8 , Vary Accept , User-Agent , Link <… ; rel=\"canonical\" , Cache-Control public, max-age=300, must-revalidate . readMarkdownFile may be sync or async, so the same code works on Node, Bun, Vercel Edge, Cloudflare Workers, and other edge runtimes Put that logic wherever your framework can intercept docs requests before its HTML route Framework/runtime Where it usually goes -- -- TanStack Start / nitro server/middleware/agent-readability.ts h3 .\n\n```ts import manifest from \"../public/docs/agent-readability.json\"; import { createAgentMarkdownResponse } from \"leadtype/llm/readability\"; export async function handleRequest(request: Request): Promise { return createAgentMarkdownResponse({ urlPath: request.url, method: request.method, headers: Object.fromEntries(request.headers), manifest, requestOrigin: new URL(request.url).origin, async readMarkdownFile(target) { // Node/Bun: read from disk. // Cloudflare: fetch from KV / R2 / asset binding. // Vercel Edge: fetch from the deployment's static asset URL. return await readGeneratedFile(`public/${target.filePath}`); }, }); } ```","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\nn intercept docs requests before its HTML route Framework/runtime Where it usually goes -- -- TanStack Start / nitro server/middleware/agent-readability.ts h3 . One middleware handles both the markdown response and the sitemap/robots regenerators — runs in dev, preview, and prod. See apps/example/server/middleware/agent-readability.ts for the canonical reference. Nuxt server/middleware/agent-readability.ts h3 — same shape as the TanStack Start example. Next.js middleware.ts Edge or a catch-all route handler before the docs page. Astro An endpoint at pages/docs/ ...slug .md.ts or astro middleware . Cloudflare Workers/Pages Worker fetch handler with KV/R2 asset binding for the markdown reader. Express/Hono/Fastify Middleware before the docs HTML route. Tip if you keep static sitemap.xml / sitemap.md / robots.txt files in your build output, your framework's static handler may serve them before your middleware can rebase URLs to the live origin. Either delete the static copies after the build so the middleware always runs or make sure your middleware is registered ahead of static-asset serving.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\norigin. Either delete the static copies after the build so the middleware always runs or make sure your middleware is registered ahead of static-asset serving. Do not rewrite llms.txt , sitemap.xml , sitemap.md , robots.txt , llms-full.txt , or agent-readability.json to page markdown. The helper leaves those artifact paths alone.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\nServe sitemap.xml and robots.txt with the live origin\n\nsitemap.xml 's lint-report.json ```","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nLocal pre-push hook\n\nCatch issues before they reach CI by running lint in a husky pre-push hook Keep it under a second by limiting the scan to changed files when you have many pages. The CLI accepts repeated --ignore globs to skip stale or generated paths.\n\n```bash #!/usr/bin/env sh npx leadtype lint docs --max-warnings 0 ```","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nRun before generate\n\nWhen leadtype lint and leadtype generate both run in the same job, lint first Generate fails noisily on unknown groups or broken includes. Lint fails specifically on content schema problems with file/line context — much easier to debug.\n\n```bash npx leadtype lint docs --error-unknown npx leadtype generate --src . --out public --json ```","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nWhat to fix first\n\nWhen CI fails on a lot of violations, fix them in this order 1. parse-error — frontmatter is broken; nothing else can validate. 2. schema — missing or wrong-typed required fields. 3. unresolved-placeholder — content bug, not a config bug. 4. invalid-link and cross-framework-link — usually a stale link after a docs move. 5. unknown-field — last; either delete the field or extend the schema.","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nLeadtype takes one input — a folder of MDX — and produces every shape your docs need to take. This page names every piece so the rest of the docs make sense.","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nThe pipeline\n\nThe remark stack is what turns interactive MDX components into agent-readable markdown. JSX gets flattened — a fm fm --> remark fm --> groups remark --> md md --> site_idx md --> search groups --> site_idx groups --> agents_md groups --> nav` ```","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nTwo output modes\n\nleadtype generate has two modes that read the same source and emit different shapes Property Type Description Default Required -- -- -- -- -- Site mode default leadtype generate --out public Writes llms.txt, llms-full.txt, docs/search-index.json, docs/sitemap.xml, docs/sitemap.md, docs/robots.txt, docs/agent-readability.json, and docs/\\ .md to a public/ directory your docs website serves. This is what you wire into a Vite, Next.js, Astro, or TanStack Start build. - Optional Bundle mode leadtype generate --bundle --out packages/foo Writes AGENTS.md at the package root and docs/\\ .md beneath it, both with relative paths. Skips llms.txt, llms-full.txt, search, sitemap, robots, and Agent Readability files — those are website-only. Designed for npm tarballs that ship docs alongside the published code. - Optional","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nThe artifacts\n\nProperty Type Description Default Required -- -- -- -- -- Markdown .md docs/\\ human site_out -- \"absolute URLs\" --> http_agent site_out -- \"search-index.json\" --> search_ui bundle_out -- \"AGENTS.md auto-discovery\" --> offline_agent` ```","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nVocabulary\n\nA few terms you will see throughout the docs. Property Type Description Default Required -- -- -- -- -- flatten verb Convert an interactive MDX component into a portable markdown equivalent. A \\ site_run src --> bundle_run site_run --> site_out bundle_run --> bundle_out site_out --> humans site_out --> http_agents site_out --> search bundle_out --> offline_agents` ```","Leadtype\n\nOne MDX source. A website for humans, AGENTS.md for offline coding agents, llms.txt for HTTP agents — all from a single pipeline.\n\nLeadtype\n\nChoose your path\n\nMost teams arrive here for one of two reasons. Pick the journey that matches yours — each is a single page that takes you from zero to running. Build a docs site Ship docs in your package","Leadtype\n\nOne MDX source. A website for humans, AGENTS.md for offline coding agents, llms.txt for HTTP agents — all from a single pipeline.\n\nLeadtype\n\nWhat you get\n\n1. Write once Author MDX with familiar components — Callout , Tabs , Steps , Mermaid , TypeTable , and others. Add group in frontmatter to place pages in the navigation tree. 2. Run \\ leadtype generate\\ For a website converts MDX to markdown, builds llms.txt plus root llms-full.txt , generates a search index, writes Agent Readability discovery files, and resolves navigation. With --bundle emits AGENTS.md plus per-topic .md files for agents reading from node modules/ . 3. Serve all of it Humans get HTML. HTTP agents get markdown via content negotiation or fetch llms.txt . Coding agents working in a project that depends on your package auto-discover AGENTS.md from node modules/ [options] ```","CLI\n\nleadtype generate and leadtype lint — flags, exit codes, and JSON output.\n\nCLI\n\ngenerate\n\nConvert MDX, then either produce website artifacts default or a package bundle --bundle . Flag Default Description -- -- -- --src ; summary: { filesScanned: number; errors: number; warnings: number; }; }; ```","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nDefault schemas\n\nDocs frontmatter\n\nField Required Type -- -- -- title Yes non-empty string description No string icon No string deprecated No boolean deprecatedReason No string experimental No boolean canary No boolean new No boolean draft No boolean tags No string array group No string or string array availableIn No array of framework, url?, title? full No boolean lastModified and lastAuthor are produced by the converter when --enrich-git is set. Don't author them.","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nDefault schemas\n\nChangelog frontmatter\n\nField Required Type -- -- -- title Yes non-empty string version Yes SemVer string date Yes ISO-8601 or parseable date description No string icon No string type No release , improvement , retired , or deprecation tags No string array canary No boolean authors No string or string array draft No boolean","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nDefault schemas\n\nmeta.json\n\nField Required Type -- -- -- pages Yes string array title No non-empty string root No boolean icon No string defaultOpen No boolean nav.sidebar No section or combined nav.label No string nav.mode No string","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nCustom schemas\n\nPass a Valibot schema to extend or replace the defaults Once you provide a custom schema, unknown-field warnings apply to that schema. Add --error-unknown in CI to keep your contract strict.\n\n```ts import * as v from \"valibot\"; import { lintDocs } from \"leadtype/lint\"; const customFrontmatter = v.object({ title: v.pipe(v.string(), v.minLength(1)), audience: v.picklist([\"beginner\", \"advanced\"]), }); await lintDocs({ srcDir: \"docs\", schemas: { frontmatter: customFrontmatter }, }); ```","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nPractical guidance\n\nRun lint before leadtype generate so content errors fail fast. Use --format github in GitHub Actions and --format json in any other CI. Treat unresolved-placeholder as a content bug first — usually a missing entry in availableIn or a stale URL template. After a docs move, lint and run meta.json updates together; they drift at the same time. For wiring lint into pipelines, see Validate in CI.","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nThe leadtype/llm entry point produces four flavors of agent-facing output, all derived from the same docs source generateLlmsTxt — for hosted websites. Emits the /llms.txt convention with root-relative markdown mirror links. generateLLMFullContextFiles — root /llms-full.txt fallback containing all generated markdown docs. Pairs with generateLlmsTxt . generateAgentReadabilityArtifacts — docs-scoped sitemap.xml , sitemap.md , robots.txt , and JSON manifest data that a host app can merge into site-level files. generateAgentsMd — for npm-bundled docs. Emits an AGENTS.md index with relative ./docs/ A library that does one thing well. - Helper that handles the boring parts. - Type-safe by default. - Works in any runtime. ## Best Starting Points - [Documentation](/docs/index.md) - [Quickstart](/docs/quickstart.md) ## Get Started Five-minute happy path and the mental model. - [Quickstart](/docs/quickstart.md): Install and run the pipeline. - [How it works](/docs/how-it-works.md): The mental model. ## Reference CLI flags and conversion APIs. - [CLI](/docs/reference/cli.md): Every flag. ```","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nTypical sequence\n\ngenerateLLMFullContextFiles and generateAgentReadabilityArtifacts read from A library that does one thing well. These docs ship inside the package so coding agents can read them offline. Open the topic file you need from the list below — paths are relative to this file. ## Get Started - [Quickstart](./docs/quickstart.md): Install and run the pipeline. - [How it works](./docs/how-it-works.md): The mental model. ## Reference - [CLI](./docs/reference/cli.md): Every flag. ```","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nresolveDocsNavigation\n\nSame group-resolution logic the LLM files use, but returns the navigation manifest as a plain object — useful for driving a sidebar UI Write the result to src/generated/docs-nav.json and import it from your sidebar component Now your sidebar can import a static manifest with the same group tree the LLM files use.\n\n```ts const navigation = await resolveDocsNavigation({ srcDir: \".\", baseUrl: \"https://leadtype.dev\", groups: docsConfig.groups, }); if (navigation.unknown.length > 0) { for (const { urlPath, slug } of navigation.unknown) { process.stderr.write(`error: ${urlPath} declares unknown group \"${slug}\".\\n`); } process.exit(1); } ``` ```ts import { mkdir, writeFile } from \"node:fs/promises\"; await mkdir(\"src/generated\", { recursive: true }); await writeFile( \"src/generated/docs-nav.json\", `${JSON.stringify(navigation, null, 2)}\\n` ); ```","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nGroup design\n\nThe groups you pass to these APIs come from docs.config.ts . Two principles Use groups for routing, not sharding. Groups organize llms.txt , navigation, search metadata, and AGENTS.md . The root llms-full.txt remains the broad fallback. Write group descriptions for routing, not flavor text. Agents read those descriptions to decide which pages to load. \"How to install and run\" beats \"Welcome to our guides!\"","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nBase URL precedence\n\nPass baseUrl explicitly, or use environment variables for layered fallback The package-specific LEADTYPE AGENT BASE URL lets each package override an org-wide default. BASE URL covers most CI/deployment platforms, and a final hardcoded fallback keeps local builds working without env setup.\n\n```ts const baseUrl = process.env.LEADTYPE_AGENT_BASE_URL || process.env.BASE_URL || process.env.PORTLESS_URL || \"https://leadtype.dev\"; ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nThe remark stack is what turns interactive MDX into agent-readable markdown. Imports get stripped first, placeholders get resolved, then each named component is flattened into a markdown equivalent. Order matters.\n\n```ts import { defaultRemarkPlugins, remarkInclude, remarkTypeTableToMarkdown, } from \"leadtype/remark\"; ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nThe default stack\n\ndefaultRemarkPlugins runs the stack in this order 1. remarkRemoveImports — strip MDX import and export statements. 2. remarkRemoveJsxComments — strip / ... / JSX comments. 3. remarkResolveDocPlaceholders — replace framework and similar placeholders in URLs. 4. remarkAudienceToMarkdown — include ri --> rj --> rd --> rau --> rs --> rc --> rcd --> rdt --> rm --> rct --> rst --> rt --> rtt --> ra --> rts --> rft --> rp --> re --> out` ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nThe default stack\n\n p !== remarkTypeTableToMarkdown), [remarkTypeTableToMarkdown, { basePath: process.cwd() }], ]; ``` ```mdx ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nPlugin selection rules\n\nUse defaultRemarkPlugins for any agent-facing or LLM output. Add remarkInclude when docs are composed from shared fragments. Use individual plugins only when you intentionally want to omit a flattener e.g. you don't use /docs/search-index.json /docs/search-content.json ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nRuntime search\n\nThe runtime is edge-safe — no Node APIs, works on Vercel, Cloudflare, and anywhere else Results include heading paths, hash URLs, and snippets ready for a search UI. Search is still local and dependency-free, but it is not exact-token only. Query terms expand through lightweight stemming, prefix matches, typo-tolerant fallbacks, and a small built-in synonym map. Exact matches keep the highest weight so API names and config keys stay precise. Pass synonyms when your docs use product-specific vocabulary\n\n```ts import { searchDocs, type DocsSearchIndex, type DocsSearchContentStore, } from \"leadtype/search\"; import indexJson from \"../public/docs/search-index.json\"; import contentJson from \"../public/docs/search-content.json\"; const results = searchDocs( indexJson as DocsSearchIndex, \"tabs install\", { content: contentJson as DocsSearchContentStore } ); ``` ```ts const results = searchDocs(index, \"starter\", { content, synonyms: { starter: [\"quickstart\", \"getting started\"], }, }); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nReading docs at runtime\n\nThe same index doubles as a virtual filesystem. Three readers, picked by what you have Use readDocsContentFile when you need the entire page for context links . Use readDocsContentChunk when a search result already named the right heading.\n\n```ts import { listDocsContentFiles, readDocsContentFile, readDocsContentChunk, } from \"leadtype/search\"; const allFiles = listDocsContentFiles(index); const wholePage = readDocsContentFile(index, \"guides/quickstart\", content); const oneChunk = readDocsContentChunk(index, \"chunk-0\", content); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nSource-grounded answers\n\ncreateAnswerContext turns a query plus retrieved chunks into a system and prompt you pass to any model The system message instructs the model to answer only from the retrieved context, cite sources with 1 -style references, and say so when the context is insufficient.\n\n```ts import { createAnswerContext } from \"leadtype/search\"; const context = createAnswerContext(index, \"how do I run lint?\", { content, productName: \"My Library\", }); // → { system, prompt, sources } ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nStreaming via provider entry points\n\nThree thin wrappers around createAnswerContext that stream a Response and surface sources separately. Use one matching your runtime response is a plain text Response. sources is metadata for citation links — display it separately, don't embed it in the streamed answer. For TanStack, pass an explicit adapter . For Cloudflare, build one with createCloudflareDocsAdapter provider, model, options binding env.AI.gateway \"docs\" .\n\n```ts import { streamDocsAnswer } from \"leadtype/search/vercel\"; // Vercel AI SDK / AI Gateway import { streamDocsAnswer } from \"leadtype/search/tanstack\"; // TanStack AI import { streamDocsAnswer } from \"leadtype/search/cloudflare\"; // Cloudflare AI Gateway / Workers AI ``` ```ts const { response, sources } = streamDocsAnswer({ index, content, query, model: \"openai/gpt-5.5\", productName: \"My Library\", }); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nBash tool adapters\n\nWhen you want an agent to explore docs with shell commands instead of receiving pre-selected chunks The adapter exposes a read-only virtual /docs filesystem with ls , cat , find , grep , and rg . Network commands, code execution, and writes are disabled. Use createDocsBashTool for Vercel AI SDK tool sets and createDocsBashTools for TanStack-compatible tools over the same filesystem.\n\n```ts import { createDocsBashTool, createDocsBashTools } from \"leadtype/search/bash\"; const { tools, instructions } = await createDocsBashTool(index, content); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nAbuse guards\n\nReusable utilities for the request path Helper Purpose -- -- validateDocsQuery Trim and cap query text. readJsonWithLimit Reject oversized JSON bodies before parse. getClientIdentifier Read common proxy IP headers. createMemoryRateLimiter Implements RateLimiter for demos. The in-memory limiter is fine for demos. Production apps should adapt the RateLimiter interface to a shared store — Redis, Vercel KV, Cloudflare KV, or Durable Objects.","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nWhen to add embeddings\n\nStart with the local index. It is static, cheap, edge-safe, and fast for exact API names, config keys, error messages, and paths. Add embeddings only when Users search with vocabulary that doesn't match the docs e.g. \"make it faster\" matching a \"performance optimization\" page . Your docs grow past tens of thousands of chunks and the cold-start memory hit becomes noticeable. Even then, keep the lexical index for exact matches and layer embeddings on top — they're complementary, not replacements."]}
+{"version":2,"generatedAt":"2026-05-11T01:03:23.418Z","chunks":["Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nLeadtype does not ship UI components. Your docs app owns runtime rendering, styling, and accessibility — it only has to honor a small naming contract so the remark pipeline can flatten each component into markdown for agents, search, and llms-full.txt .","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nWhy flatten at all?\n\nInteractive MDX components like ; function textFromChildren(children: HeadingProps[\"children\"]): string { if (typeof children === \"string\" || typeof children === \"number\") { return String(children); } if (Array.isArray(children)) { return children.map(textFromChildren).join(\" \"); } return \"\"; } function createHeading(level: 1 | 2 | 3 | 4 | 5 | 6) { return ({ children, id, ...props }: HeadingProps) => { const Component = `h${level}` as const; const headingId = id ?? slugifyDocsHeading(textFromChildren(children)); return ( {children} ); }; } ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nHeadings and table of contents\n\nWhere the TOC data lives\n\nresolveDocsNavigation returns a toc DocsTableOfContentsItem on every page. The default range is h2 – h3 , which keeps the page-level h1 out and stops short of deep subsection noise. For the standalone APIs resolveDocsTableOfContents , extractDocsTableOfContents , see LLM reference → Tables of contents.\n\n```ts const navigation = await resolveDocsNavigation({ srcDir: \".\", baseUrl: \"https://leadtype.dev\", groups: docsConfig.groups, toc: { minLevel: 2, maxLevel: 4 }, }); ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nHeadings and table of contents\n\nRendering the sidebar\n\nSame stance as the named components above leadtype defines the contract, your app renders. Look up the current page in the manifest and pass currentPage.toc to whatever sidebar component fits your design system. For a complete React reference — scroll-spy, active highlighting, hash sync, sticky positioning — see apps/example/src/components/table-of-contents.tsx . Copy it, fork it, or build your own from the DocsTableOfContentsItem shape.","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nHeadings and table of contents\n\nTroubleshooting\n\nTOC links don't scroll anywhere. Your heading renderer is emitting id attributes that don't match the extracted slugs. Wire slugifyDocsHeading into your MDX heading components as shown above. A page's TOC is empty. Every heading on that page is outside the minLevel / maxLevel range. Defaults exclude h1 the page title and anything deeper than h3 .","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nEach section below shows the authored MDX and a live render.","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nCallout\n\nWraps supporting context, warnings, or tips. Variants change styling but flatten identically into a blockquote. ℹ️ Info Heads up Callouts wrap supporting context, warnings, or tips. The remark pipeline flattens them into blockquotes so agents still see the content. ⚠️ Warning Don't do this Variants like warning, success, error, and tip change the styling but flatten identically.\n\n```tsx Body content goes here. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nCards\n\nA grid of short, linked entry points. Flattens to a bullet list of links. Convert Remark Search\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nSteps\n\nNumbered walkthroughs. Flattens to an ordered list with bold step titles. 1. Author docs in MDX Use the components in this list as authoring affordances. 2. Run the conversion leadtype generate writes flattened markdown to public/docs/ . 3. Serve both formats HTML for humans, .md for agents — same URL, content negotiated by the Accept header.\n\n```tsx Use the components in this list.`leadtype generate` writes flattened markdown. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nTabs\n\nGroup equivalent content. Flattens to bold headings followed by content so agents do not need a JSX-aware renderer to read every variant. tanstack-start Use a Vite middleware dev/preview and a Nitro middleware prod to negotiate the Accept header. next-js Wire content negotiation in middleware.ts and serve .md from a route handler. vite A configureServer middleware is enough for static deployments where .md files live in public/ .\n\n```tsx ……… ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nCommandTabs\n\nPackage-manager-aware install or run commands. Flattens to a markdown table with one row per manager. Use mode=\"install\" when command is a package name, mode=\"run\" when command is a CLI name, and mode=\"create\" for starter commands. Use the commands prop for exact per-manager overrides. Package manager Command -- -- npm npm install leadtype pnpm pnpm add leadtype yarn yarn add leadtype bun bun add leadtype Package manager Command -- -- npm npx leadtype lint pnpm pnpm dlx leadtype lint yarn yarn dlx leadtype lint bun bunx leadtype lint\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nPrompt\n\nDisplays an agent-ready prompt with a copy action. Flattening preserves the prompt body as a fenced prompt block so copied instructions also survive in .md , llms-full/ .txt , and bundled AGENTS.md output. Copy prompt for your coding agent Use this after generating artifacts.\n\n```tsx Inspect `public/docs/agent-readability.json`, then wire markdown responses before the HTML docs route. ``` ```prompt Inspect `public/docs/agent-readability.json`, then wire markdown responses before the HTML docs route. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nAudience\n\nSplits browser-only and agent-only guidance without forking the page. Human content renders in the docs UI and is omitted from markdown output; agent content is hidden in the browser and included in generated markdown. This sentence appears only in generated markdown for agents.\n\n```tsx Click the robot icon in the header.Read generated markdown before editing runtime routes. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nFileTree\n\nShows project structure in guides and release instructions. Flattening emits a fenced text tree so agents can read the same hierarchy without JSX.\n\n```tsx ``` ```text public/ ├── llms.txt └── docs/ ├── index.md └── llms-full/ └── get-started.txt ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nAccordion\n\nCollapsible details for secondary content. Flattening ignores open/closed state and emits every item — accordions are not a place to hide content from agents. When should I use accordions? Use them for supporting details, troubleshooting notes, and optional reference material. Closed content is still flattened by the remark pipeline. Are accordions a good place to hide content from LLMs? No. Conversion ignores the open/closed state and emits everything inside.\n\n```tsx Use them for supporting details and optional reference material. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nTopicSwitcher\n\nNavigation across equivalent docs topics — frameworks, SDKs, runtimes, deployment targets, product areas. Reader-facing only; it does not automatically read LLM topic config. Framework React — React integration Vue — Vue integration Svelte — Svelte integration\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nTypeTable and ExtractedTypeTable\n\nTypeTable is for explicit prop or type rows you already know. ExtractedTypeTable reads a TypeScript file at conversion time and extracts the table from a named type — keep its path stable. Property Type Description Default Required -- -- -- -- -- title string Heading rendered above the callout body. - ✅ Required variant CalloutVariant Visual treatment for the callout. info Optional deprecated \\ \\ boolean\\ \\ deprecated Marks the row as deprecated. false Optional\n\n```tsx ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nExample\n\nData-driven preview and source examples. The host component receives code as data; add file loaders or dynamic imports outside leadtype when an example needs app-specific behavior.\n\n```tsx The host app owns styling and runtime components while leadtype owns conversion. ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nComponent reference\n\nMermaid\n\nDiagrams authored as plain text. Renders client-side as interactive SVG. Flattening preserves the source as a fenced mermaid block so other tools can render the diagram from the markdown copy.\n\n```tsx |remark| Markdown Markdown -->|llms.txt| Agents`} /> ``` ```mermaid `graph LR MDX -->|remark| Markdown Markdown -->|search index| API Markdown -->|llms.txt| Agents` ```","Components\n\nMDX components the pipeline knows how to flatten into agent-readable markdown.\n\nComponents\n\nGuidelines\n\nKeep runtime components in your docs app. Leadtype stays out of UI. Keep component names stable. Renaming resolver page1 --> resolver page2 --> resolver page3 --> resolver resolver --> nav resolver --> llms resolver --> agents` ```","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nHow groups become a nav tree\n\nNested groups\n\nDeclare children in the config to build deeper trees A page sets group bundle-package-docs and lands in that nested slot. Only leaf groups no children directly contain pages; non-leaf groups are headings only.\n\n```ts { slug: \"build\", title: \"Build\", children: [ { slug: \"bundle-package-docs\", title: \"Bundle a package\" }, { slug: \"connect-docs-site\", title: \"Connect a docs site\" }, ], } ```","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nOptional fields\n\nThe default lint schema also accepts Property Type Description Default Required -- -- -- -- -- icon string Icon name resolved by your sidebar component. - Optional deprecated boolean Marks the page as deprecated in nav and search. - Optional deprecatedReason string Short message paired with deprecated. - Optional experimental boolean Marks the page as experimental. - Optional canary boolean Hides from stable channels. - Optional new boolean Highlights the page as recently added. - Optional draft boolean Excludes from generation entirely. - Optional tags string\\ Free-form tags for search facets. - Optional availableIn Array\\<\\ framework, url?, title? Cross-framework availability map for TopicSwitcher pages. - Optional full boolean Layout hint for docs UIs that support full-width pages. - Optional lastModified and lastAuthor are filled in automatically when you pass --enrich-git to the CLI. Don't author them by hand.","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nLint rules\n\nleadtype lint enforces the schema, so violations surface in CI before they reach a build. The relevant rules schema — a required field is missing or has the wrong type. unknown-field — a top-level field isn't in the schema warn by default; --error-unknown to fail . parse-error — frontmatter or meta.json doesn't parse. invalid-link — a /docs/... link points to a route that doesn't exist. unresolved-placeholder — a doc URL still contains an unresolved framework placeholder. cross-framework-link — a framework-scoped page links to another framework's docs. See Lint rules for the full reference and how to extend the schema.","Frontmatter\n\nRequired fields, group semantics, and how authored MDX becomes a navigation tree.\n\nFrontmatter\n\nWhat this gives you\n\nOnce frontmatter is consistent, the rest of the pipeline works without per-page configuration. The same group value drives The sidebar position The llms.txt section Search metadata and AGENTS.md grouping The search filtering UI if you build one Cross-framework link checks in lint One field, one source of truth.","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nUse this path when you publish a library on npm and want coding agents, IDEs, and CLI tooling to read your docs without hitting the network. Run leadtype generate --bundle at prepack time, include the output in your published files , and every install ships AGENTS.md + per-topic markdown that the 25+ tools supporting agents.md auto-discover. The website is for humans. The package-bundled docs are for everyone else.","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nThe flow\n\n```mermaid `flowchart LR src[\"docs/*.mdx / (your repo)\"] cli[\"leadtype generate --bundle / --out packages/<name>\"] bundle[\"packages/<name>/ / AGENTS.md / docs/*.md\"] publish[\"npm publish\"] install[\"npm install <name>\"] consume[\"node_modules/<name>/ / AGENTS.md → docs/*.md / read by Claude Code, Codex, / Cursor, Copilot, …\"] src --> cli cli --> bundle bundle --> publish publish --> install install --> consume` ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nWhy AGENTS.md, not llms.txt?\n\nllms.txt is a website convention — a file at /llms.txt with absolute URLs that an agent fetches over HTTP. Inside an npm tarball it's the wrong shape every link points at a hosted URL the agent may not be able to reach, and no major coding agent looks for node modules/ 0) { for (const { urlPath, slug } of navigation.unknown) { process.stderr.write(`error: ${urlPath} declares unknown group \"${slug}\".\\n`); } process.exit(1); } await generateAgentsMd({ srcDir: REPO_ROOT, outDir: PACKAGE_ROOT, product: docsConfig.product, groups: docsConfig.groups, }); ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nVerify before publishing\n\nnpm pack --dry-run should list AGENTS.md docs/ / .md If AGENTS.md is missing, check files in package.json . If .md files are missing, check the --include / --exclude filters.\n\n```bash npx leadtype generate --bundle --src . --out packages/my-package cd packages/my-package && npm pack --dry-run ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nTell consuming projects to use the bundle\n\nAGENTS.md inside your tarball is auto-discovered by agents working in your published package — but for a project that depends on your package, the agent's working directory is the consumer's repo, not yours. You need to point them at the bundled docs. Recommend this snippet in your README so consumers add it to their own root AGENTS.md This is the same pattern Next.js uses to point agents at node modules/next/dist/docs/ .\n\n```md # When working with the `` library, read the bundled docs in `node_modules//AGENTS.md` first — they're version-matched to the installed package and stay accurate as the library updates. ```","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nWhen to use this\n\nUse this when agents should understand the package from the installed dependency itself — coding agents that don't have web access, IDE assistants, CLI tools, or air-gapped environments. Don't use this if your only goal is a public docs website. For that, see Connect a docs site. You can use both — they read the same source MDX, just emit different shapes.","Bundle docs into a package\n\nShip agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.\n\nBundle docs into a package\n\nWhat's next\n\nCLI reference LLM files Lint in CI","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nUse this path when you run a docs site or want to . Leadtype runs before your build to convert MDX, generate navigation data, build the search index, and produce agent-readable artifacts. Your site framework — TanStack Start, Next.js, Astro, anything — handles routing and rendering.","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nThe flow\n\n```mermaid `flowchart LR src[\"docs/*.mdx / (your repo)\"] cli[\"leadtype generate\"] pub[\"public/ / llms.txt · llms-full.txt / docs/*.md / docs/sitemap.xml / docs/agent-readability.json\"] gen[\"src/generated/ / docs-nav.json / docs-search-*.json\"] app[\"your docs app / routing + HTML\"] human[\"Humans / (HTML)\"] agent[\"Agents / (markdown + discovery files)\"] search[\"Search UI\"] src --> cli cli --> pub cli --> gen pub --> app gen --> app app --> human app --> agent gen --> search` ```","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nOne-off run\n\nFor a single repo where docs and site live together That single command converts MDX, generates llms.txt , writes Agent Readability discovery files, builds the search index, and resolves the navigation tree. Generated paths are listed by leadtype generate and inspected in detail under How it works.\n\n```bash npx leadtype generate \\ --src . \\ --out public \\ --base-url https://leadtype.dev \\ --name \"my-docs\" \\ --summary \"Short product summary.\" ```","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nWire it into the build\n\nAdd a pipeline step before vite/Next/Astro builds. The simplest setup is one script per stage so you can rerun convert/search independently during dev Splitting into separate scripts is optional — the CLI does all three in one pass. Use scripts when you want fine control over plugin order, base URL, or filtering. A canonical convert script remarkInclude enables / include foo / -style partial expansion. The basePath swap on remarkTypeTableToMarkdown is only needed if your docs use ` reads TypeScript files at conversion time. // Pass basePath so the component can resolve relative paths. const typeTablePlugin: NonNullable< MdxToMarkdownOptions[\"remarkPlugins\"] >[number] = [remarkTypeTableToMarkdown, { basePath: repoRoot }]; await convertAllMdx({ srcDir, outDir, remarkPlugins: [ remarkInclude, ...defaultRemarkPlugins.filter((p) => p !== remarkTypeTableToMarkdown), typeTablePlugin, ], enrichFrontmatterFromGit: true, }); ```","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nConfigure the product and groups\n\nAuthor docs/docs.config.ts once and let every stage read from it Pages declare group in frontmatter. The config declares the tree. The two together produce the navigation manifest, the llms.txt sections, and the lint check that catches typos. See Frontmatter for the resolution rules.\n\n```ts import { defineDocsConfig } from \"leadtype\"; export default defineDocsConfig({ product: { name: \"my-docs\", summary: \"Short product summary.\", bullets: [\"What it does in one bullet.\", \"Another bullet.\"], bestStartingPoints: [{ urlPath: \"/docs\" }, { urlPath: \"/docs/quickstart\" }], }, groups: [ { slug: \"get-started\", title: \"Get Started\" }, { slug: \"guides\", title: \"Guides\" }, ], }); ```","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nMake the site agent-readable\n\nAfter generation, wire the runtime pieces into your docs app Serve root discovery files /llms.txt , /sitemap.xml , /sitemap.md , and /robots.txt . Keep docs-scoped discovery files available under /docs/ . Add JSON-LD, canonical links, and markdown alternate links to docs HTML pages. Return markdown for Accept text/markdown , known AI user agents, and direct .md URLs. Preserve canonical url and last updated frontmatter in markdown responses. Leadtype provides leadtype/llm/readability so you do not have to hand-roll request detection, frontmatter aliases, missing-page markdown, or JSON-LD escaping. The full setup guide is Optimize docs for agents. The core request hook looks like this in any framework Put it before your HTML docs route. Normal browsers continue to receive HTML; agent-oriented requests receive the generated markdown with Content-Type text/markdown; charset=utf-8 . When implementing this in a codebase, inspect the framework's request pipeline before editing. The markdown response hook must run before static docs HTML routes, but it must not intercept /llms.txt , sitemap files, robots files, search JSON, or agent-readability.json .\n\n```ts import manifest from \"../public/docs/agent-readability.json\"; import { createAgentMarkdownResponse } from \"leadtype/llm/readability\"; const response = createAgentMarkdownResponse({ urlPath: request.url, method: request.method, headers: Object.fromEntries(request.headers), manifest, requestOrigin: new URL(request.url).origin, readMarkdownFile(target) { return readGeneratedFile(`public/${target.filePath}`); }, }); if (response) { return new Response(response.body, { status: response.status, headers: response.headers, }); } ```","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nMake the site agent-readable\n\nsponse hook must run before static docs HTML routes, but it must not intercept /llms.txt , sitemap files, robots files, search JSON, or agent-readability.json . After wiring, test both a normal browser request and an Accept text/markdown request for the same docs URL.","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nConnect a remote source\n\nWhen the docs source lives in a different repo from the docs site Run lint first so missing or malformed frontmatter fails before the converter writes anything. Use --format github in CI to get inline annotations on the PR. Use --json on generate so automation can read the resolved groups and search index stats. This is the shape we expect for orgs hosting one docs UI for multiple package repos the source lives next to the code it documents, the docs app pulls it in at build time. See Bundle docs into a package if the package should also ship docs inside its npm tarball.\n\n```bash git clone --depth 1 https://github.com/acme/package-a .docs-src/package-a npx leadtype lint .docs-src/package-a/docs --format github --error-unknown npx leadtype generate --src .docs-src/package-a --out public --json npm run build ```","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nVerify\n\nAfter a clean build public/docs/index.md — the converted home page. public/llms.txt — the routing index. Should mention every group from your config. public/llms-full.txt — all generated markdown docs flattened into one fallback file. public/docs/search-index.json and public/docs/search-content.json — non-empty. public/docs/sitemap.xml , public/docs/sitemap.md , and public/docs/agent-readability.json — docs-scoped discovery data. Merge these with your app's non-docs routes before serving root-level /sitemap.xml , /sitemap.md , and /robots.txt . Then start the dev server and check the agent-facing routes The markdown response should include content-type text/markdown; charset=utf-8 . If you get text/html back, the markdown response hook is not running before the docs HTML route.\n\n```bash curl http://localhost:5173/llms.txt curl http://localhost:5173/sitemap.xml curl http://localhost:5173/docs/sitemap.xml curl -I -H \"Accept: text/markdown\" http://localhost:5173/docs/ ```","Connect a docs site\n\nWire leadtype into a docs app build so humans, agents, and search use one source.\n\nConnect a docs site\n\nWhat's next\n\nOptimize docs for agents Evals Lint in CI Search reference","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\nUse this guide when you already have a docs site and want agents to find, fetch, attribute, and cite the same content humans read in the browser. Leadtype handles the generated files. Your app wires those files into routing and HTML. The default output shape is based on the repo's agent evals. See Evals for the benchmark summary and the open question around larger-corpus llms-full.txt scaling.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\nWhat good looks like\n\nAn agent-readable docs site has four layers 1. Discovery files /llms.txt , /sitemap.xml , /sitemap.md , and /robots.txt tell agents what exists and where to start. 2. Markdown retrieval Each docs page has a markdown mirror at /docs/page.md , and agent requests to /docs/page can receive markdown instead of HTML. 3. Structured HTML metadata Human HTML pages include JSON-LD, canonical links, and markdown alternate links so agents can extract page identity without guessing from the DOM. 4. Attribution metadata Markdown responses include canonical url and last updated frontmatter so copied content keeps its source and freshness.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n1. Generate the artifacts\n\nRun the site-mode pipeline before your app build This writes the docs-scoped files under public/docs/ and the top-level public/llms.txt The generated agent-readability.json manifest is the bridge between build-time content and runtime requests. It contains page URLs, markdown mirror paths, titles, descriptions, group navigation, and freshness dates.\n\n```bash npx leadtype generate \\ --src . \\ --out public \\ --base-url https://leadtype.dev \\ --name \"My product\" \\ --summary \"One sentence about the product.\" ``` ```txt public/ ├── llms.txt ├── llms-full.txt └── docs/ ├── index.md ├── quickstart.md ├── llms.txt ├── sitemap.xml ├── sitemap.md ├── robots.txt └── agent-readability.json ```","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n2. Serve root discovery files\n\nThe recommended setup is runtime regenerators rather than static files for the few artifacts that need absolute URLs. That keeps preview and staging environments honest without rebuilding. If you also have marketing, blog, changelog, or product pages, pass them through the optional pages field — the regenerator merges them into the rebased output The other generated artifacts — /llms.txt , /docs/llms.txt , /llms-full.txt , /docs/agent-readability.json — use root-relative links and serve fine as static files straight from public/ . Keep the docs-scoped versions too /docs/sitemap.xml etc. . Audits and agents may request both /sitemap.xml and /docs/sitemap.xml , especially when the audited URL is /docs .\n\n```ts // In your framework's middleware (Vite plugin, Next.js middleware, Astro // endpoint, Cloudflare Worker, etc.): import manifest from \"../public/docs/agent-readability.json\"; import { createRobotsTxtResponse, createSitemapMarkdownResponse, createSitemapXmlResponse, } from \"leadtype/llm/readability\"; const url = new URL(request.url); const requestOrigin = url.origin; if (url.pathname === \"/sitemap.xml\" || url.pathname === \"/docs/sitemap.xml\") { return createSitemapXmlResponse({ manifest, requestOrigin }); } if (url.pathname === \"/sitemap.md\" || url.pathname === \"/docs/sitemap.md\") { return createSitemapMarkdownResponse({ manifest, requestOrigin }); } if (url.pathname === \"/robots.txt\") { return createRobotsTxtResponse({ manifest, requestOrigin }); } ``` ```ts return createSitemapXmlResponse({ manifest, requestOrigin, pages: [...manifest.pages, ...marketingPages, ...blogPages], }); ```","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n3. Add JSON-LD to docs pages\n\nUse the manifest entry for the current page and render Schema.org JSON-LD into the HTML head Use renderJsonLd page, manifest if your framework has a typed metadata API. Use renderJsonLdScript page, manifest if your framework expects an HTML string. Also add canonical and markdown alternate links The JSON-LD gives agents the page title, description, canonical URL, last modified date, and breadcrumbs without scraping your rendered layout.\n\n```ts import agentManifest from \"../public/docs/agent-readability.json\"; import { renderJsonLd, renderJsonLdScript } from \"leadtype/llm/readability\"; const page = agentManifest.pages.find( (entry) => entry.urlPath === \"/docs/quickstart\" ); if (page) { const jsonLd = renderJsonLd(page, agentManifest); const script = renderJsonLdScript(page, agentManifest); } ``` ```html ```","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\nUse createAgentMarkdownResponse from request middleware or route handlers. It returns a Web Response or null when the path is not an agent-oriented markdown request and handles Accept text/markdown and Accept text/plain content negotiation q-values respected . Known AI user-agent headers GPTBot, ClaudeBot, Bingbot, AmazonBot, MetaExternalAgent, PerplexityBot, MistralBot, AppleBot, ByteSpider, YouBot, … . Direct .md URLs such as /docs/quickstart.md . canonical url and last updated frontmatter aliases injected automatically. 200 markdown responses for missing docs pages, so agents do not discard the body. Content-Type text/markdown; charset=utf-8 , Vary Accept , User-Agent , Link <… ; rel=\"canonical\" , Cache-Control public, max-age=300, must-revalidate . readMarkdownFile may be sync or async, so the same code works on Node, Bun, Vercel Edge, Cloudflare Workers, and other edge runtimes Put that logic wherever your framework can intercept docs requests before its HTML route Framework/runtime Where it usually goes -- -- TanStack Start / nitro server/middleware/agent-readability.ts h3 .\n\n```ts import manifest from \"../public/docs/agent-readability.json\"; import { createAgentMarkdownResponse } from \"leadtype/llm/readability\"; export async function handleRequest(request: Request): Promise { return createAgentMarkdownResponse({ urlPath: request.url, method: request.method, headers: Object.fromEntries(request.headers), manifest, requestOrigin: new URL(request.url).origin, async readMarkdownFile(target) { // Node/Bun: read from disk. // Cloudflare: fetch from KV / R2 / asset binding. // Vercel Edge: fetch from the deployment's static asset URL. return await readGeneratedFile(`public/${target.filePath}`); }, }); } ```","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\nn intercept docs requests before its HTML route Framework/runtime Where it usually goes -- -- TanStack Start / nitro server/middleware/agent-readability.ts h3 . One middleware handles both the markdown response and the sitemap/robots regenerators — runs in dev, preview, and prod. See apps/example/server/middleware/agent-readability.ts for the canonical reference. Nuxt server/middleware/agent-readability.ts h3 — same shape as the TanStack Start example. Next.js middleware.ts Edge or a catch-all route handler before the docs page. Astro An endpoint at pages/docs/ ...slug .md.ts or astro middleware . Cloudflare Workers/Pages Worker fetch handler with KV/R2 asset binding for the markdown reader. Express/Hono/Fastify Middleware before the docs HTML route. Tip if you keep static sitemap.xml / sitemap.md / robots.txt files in your build output, your framework's static handler may serve them before your middleware can rebase URLs to the live origin. Either delete the static copies after the build so the middleware always runs or make sure your middleware is registered ahead of static-asset serving.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\norigin. Either delete the static copies after the build so the middleware always runs or make sure your middleware is registered ahead of static-asset serving. Do not rewrite llms.txt , sitemap.xml , sitemap.md , robots.txt , llms-full.txt , or agent-readability.json to page markdown. The helper leaves those artifact paths alone.","Optimize docs for agents\n\nSet up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.\n\nOptimize docs for agents\n\n4. Return markdown to agents\n\nServe sitemap.xml and robots.txt with the live origin\n\nsitemap.xml 's lint-report.json ```","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nLocal pre-push hook\n\nCatch issues before they reach CI by running lint in a husky pre-push hook Keep it under a second by limiting the scan to changed files when you have many pages. The CLI accepts repeated --ignore globs to skip stale or generated paths.\n\n```bash #!/usr/bin/env sh npx leadtype lint docs --max-warnings 0 ```","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nRun before generate\n\nWhen leadtype lint and leadtype generate both run in the same job, lint first Generate fails noisily on unknown groups or broken includes. Lint fails specifically on content schema problems with file/line context — much easier to debug.\n\n```bash npx leadtype lint docs --error-unknown npx leadtype generate --src . --out public --json ```","Validate in CI\n\nRun leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.\n\nValidate in CI\n\nWhat to fix first\n\nWhen CI fails on a lot of violations, fix them in this order 1. parse-error — frontmatter is broken; nothing else can validate. 2. schema — missing or wrong-typed required fields. 3. unresolved-placeholder — content bug, not a config bug. 4. invalid-link and cross-framework-link — usually a stale link after a docs move. 5. unknown-field — last; either delete the field or extend the schema.","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nLeadtype takes one input — a folder of MDX — and produces every shape your docs need to take. This page names every piece so the rest of the docs make sense.","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nThe pipeline\n\nThe remark stack is what turns interactive MDX components into agent-readable markdown. JSX gets flattened — a fm fm --> remark fm --> groups remark --> md md --> site_idx md --> search groups --> site_idx groups --> agents_md groups --> nav` ```","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nTwo output modes\n\nleadtype generate has two modes that read the same source and emit different shapes Property Type Description Default Required -- -- -- -- -- Site mode default leadtype generate --out public Writes llms.txt, llms-full.txt, docs/search-index.json, docs/sitemap.xml, docs/sitemap.md, docs/robots.txt, docs/agent-readability.json, and docs/\\ .md to a public/ directory your docs website serves. This is what you wire into a Vite, Next.js, Astro, or TanStack Start build. - Optional Bundle mode leadtype generate --bundle --out packages/foo Writes AGENTS.md at the package root and docs/\\ .md beneath it, both with relative paths. Skips llms.txt, llms-full.txt, search, sitemap, robots, and Agent Readability files — those are website-only. Designed for npm tarballs that ship docs alongside the published code. - Optional","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nThe artifacts\n\nProperty Type Description Default Required -- -- -- -- -- Markdown .md docs/\\ human site_out -- \"absolute URLs\" --> http_agent site_out -- \"search-index.json\" --> search_ui bundle_out -- \"AGENTS.md auto-discovery\" --> offline_agent` ```","How it works\n\nThe mental model: one MDX source, a remark pipeline, two output modes, three audiences.\n\nHow it works\n\nVocabulary\n\nA few terms you will see throughout the docs. Property Type Description Default Required -- -- -- -- -- flatten verb Convert an interactive MDX component into a portable markdown equivalent. A \\ site_run src --> bundle_run site_run --> site_out bundle_run --> bundle_out site_out --> humans site_out --> http_agents site_out --> search bundle_out --> offline_agents` ```","Leadtype\n\nOne MDX source. A website for humans, AGENTS.md for offline coding agents, llms.txt for HTTP agents — all from a single pipeline.\n\nLeadtype\n\nChoose your path\n\nMost teams arrive here for one of two reasons. Pick the journey that matches yours — each is a single page that takes you from zero to running. Build a docs site Ship docs in your package","Leadtype\n\nOne MDX source. A website for humans, AGENTS.md for offline coding agents, llms.txt for HTTP agents — all from a single pipeline.\n\nLeadtype\n\nWhat you get\n\n1. Write once Author MDX with familiar components — Callout , Tabs , Steps , Mermaid , TypeTable , and others. Add group in frontmatter to place pages in the navigation tree. 2. Run \\ leadtype generate\\ For a website converts MDX to markdown, builds llms.txt plus root llms-full.txt , generates a search index, writes Agent Readability discovery files, and resolves navigation. With --bundle emits AGENTS.md plus per-topic .md files for agents reading from node modules/ . 3. Serve all of it Humans get HTML. HTTP agents get markdown via content negotiation or fetch llms.txt . Coding agents working in a project that depends on your package auto-discover AGENTS.md from node modules/ [options] ```","CLI\n\nleadtype generate and leadtype lint — flags, exit codes, and JSON output.\n\nCLI\n\ngenerate\n\nConvert MDX, then either produce website artifacts default or a package bundle --bundle . Flag Default Description -- -- -- --src ; summary: { filesScanned: number; errors: number; warnings: number; }; }; ```","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nDefault schemas\n\nDocs frontmatter\n\nField Required Type -- -- -- title Yes non-empty string description No string icon No string deprecated No boolean deprecatedReason No string experimental No boolean canary No boolean new No boolean draft No boolean tags No string array group No string or string array availableIn No array of framework, url?, title? full No boolean lastModified and lastAuthor are produced by the converter when --enrich-git is set. Don't author them.","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nDefault schemas\n\nChangelog frontmatter\n\nField Required Type -- -- -- title Yes non-empty string version Yes SemVer string date Yes ISO-8601 or parseable date description No string icon No string type No release , improvement , retired , or deprecation tags No string array canary No boolean authors No string or string array draft No boolean","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nDefault schemas\n\nmeta.json\n\nField Required Type -- -- -- pages Yes string array title No non-empty string root No boolean icon No string defaultOpen No boolean nav.sidebar No section or combined nav.label No string nav.mode No string","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nCustom schemas\n\nPass a Valibot schema to extend or replace the defaults Once you provide a custom schema, unknown-field warnings apply to that schema. Add --error-unknown in CI to keep your contract strict.\n\n```ts import * as v from \"valibot\"; import { lintDocs } from \"leadtype/lint\"; const customFrontmatter = v.object({ title: v.pipe(v.string(), v.minLength(1)), audience: v.picklist([\"beginner\", \"advanced\"]), }); await lintDocs({ srcDir: \"docs\", schemas: { frontmatter: customFrontmatter }, }); ```","Lint rules\n\nSchema, link, and navigation checks. CLI and library API.\n\nLint rules\n\nPractical guidance\n\nRun lint before leadtype generate so content errors fail fast. Use --format github in GitHub Actions and --format json in any other CI. Treat unresolved-placeholder as a content bug first — usually a missing entry in availableIn or a stale URL template. After a docs move, lint and run meta.json updates together; they drift at the same time. For wiring lint into pipelines, see Validate in CI.","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nThe leadtype/llm entry point produces four flavors of agent-facing output, all derived from the same docs source generateLlmsTxt — for hosted websites. Emits the /llms.txt convention with root-relative markdown mirror links. generateLLMFullContextFiles — root /llms-full.txt fallback containing all generated markdown docs. Pairs with generateLlmsTxt . generateAgentReadabilityArtifacts — docs-scoped sitemap.xml , sitemap.md , robots.txt , and JSON manifest data that a host app can merge into site-level files. generateAgentsMd — for npm-bundled docs. Emits an AGENTS.md index with relative ./docs/ A library that does one thing well. - Helper that handles the boring parts. - Type-safe by default. - Works in any runtime. ## Best Starting Points - [Documentation](/docs/index.md) - [Quickstart](/docs/quickstart.md) ## Get Started Five-minute happy path and the mental model. - [Quickstart](/docs/quickstart.md): Install and run the pipeline. - [How it works](/docs/how-it-works.md): The mental model. ## Reference CLI flags and conversion APIs. - [CLI](/docs/reference/cli.md): Every flag. ```","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nTypical sequence\n\ngenerateLLMFullContextFiles and generateAgentReadabilityArtifacts read from A library that does one thing well. These docs ship inside the package so coding agents can read them offline. Open the topic file you need from the list below — paths are relative to this file. ## Get Started - [Quickstart](./docs/quickstart.md): Install and run the pipeline. - [How it works](./docs/how-it-works.md): The mental model. ## Reference - [CLI](./docs/reference/cli.md): Every flag. ```","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nresolveDocsNavigation\n\nSame group-resolution logic the LLM files use, but returns the navigation manifest as a plain object — useful for driving a sidebar UI Write the result to src/generated/docs-nav.json and import it from your sidebar component Now your sidebar can import a static manifest with the same group tree the LLM files use.\n\n```ts const navigation = await resolveDocsNavigation({ srcDir: \".\", baseUrl: \"https://leadtype.dev\", groups: docsConfig.groups, }); if (navigation.unknown.length > 0) { for (const { urlPath, slug } of navigation.unknown) { process.stderr.write(`error: ${urlPath} declares unknown group \"${slug}\".\\n`); } process.exit(1); } ``` ```ts import { mkdir, writeFile } from \"node:fs/promises\"; await mkdir(\"src/generated\", { recursive: true }); await writeFile( \"src/generated/docs-nav.json\", `${JSON.stringify(navigation, null, 2)}\\n` ); ```","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nTables of contents\n\nFor the heading slug contract and renderer wiring, see Components → Headings and table of contents. This section covers the build-time APIs only. resolveDocsNavigation includes a toc array on every page by default. The default range is h2 – h3 , which keeps page-level h1 titles out of sidebars. If you only need TOC data and not the full group tree, call resolveDocsTableOfContents For custom pipelines, extractDocsTableOfContents accepts a markdown or MDX string plus page URL metadata and returns plain JSON. It ignores frontmatter and fenced code blocks, and it uses the same slugifyDocsHeading helper that rendered headings must use to keep id attributes in sync.\n\n```ts const navigation = await resolveDocsNavigation({ srcDir: \".\", baseUrl: \"https://leadtype.dev\", groups: docsConfig.groups, toc: { minLevel: 2, maxLevel: 4 }, }); ``` ```ts const pages = await resolveDocsTableOfContents({ srcDir: \".\", baseUrl: \"https://leadtype.dev\", }); ```","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nGroup design\n\nThe groups you pass to these APIs come from docs.config.ts . Two principles Use groups for routing, not sharding. Groups organize llms.txt , navigation, search metadata, and AGENTS.md . The root llms-full.txt remains the broad fallback. Write group descriptions for routing, not flavor text. Agents read those descriptions to decide which pages to load. \"How to install and run\" beats \"Welcome to our guides!\"","LLM files\n\nGenerate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.\n\nLLM files\n\nBase URL precedence\n\nPass baseUrl explicitly, or use environment variables for layered fallback The package-specific LEADTYPE AGENT BASE URL lets each package override an org-wide default. BASE URL covers most CI/deployment platforms, and a final hardcoded fallback keeps local builds working without env setup.\n\n```ts const baseUrl = process.env.LEADTYPE_AGENT_BASE_URL || process.env.BASE_URL || process.env.PORTLESS_URL || \"https://leadtype.dev\"; ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nThe remark stack is what turns interactive MDX into agent-readable markdown. Imports get stripped first, placeholders get resolved, then each named component is flattened into a markdown equivalent. Order matters.\n\n```ts import { defaultRemarkPlugins, remarkInclude, remarkTypeTableToMarkdown, } from \"leadtype/remark\"; ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nThe default stack\n\ndefaultRemarkPlugins runs the stack in this order 1. remarkRemoveImports — strip MDX import and export statements. 2. remarkRemoveJsxComments — strip / ... / JSX comments. 3. remarkResolveDocPlaceholders — replace framework and similar placeholders in URLs. 4. remarkAudienceToMarkdown — include ri --> rj --> rd --> rau --> rs --> rc --> rcd --> rdt --> rm --> rct --> rst --> rt --> rtt --> ra --> rts --> rft --> rp --> re --> out` ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nThe default stack\n\n p !== remarkTypeTableToMarkdown), [remarkTypeTableToMarkdown, { basePath: process.cwd() }], ]; ``` ```mdx ```","Remark plugins\n\nThe default plugin stack that flattens MDX components into markdown.\n\nRemark plugins\n\nPlugin selection rules\n\nUse defaultRemarkPlugins for any agent-facing or LLM output. Add remarkInclude when docs are composed from shared fragments. Use individual plugins only when you intentionally want to omit a flattener e.g. you don't use /docs/search-index.json /docs/search-content.json ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nRuntime search\n\nThe runtime is edge-safe — no Node APIs, works on Vercel, Cloudflare, and anywhere else Results include heading paths, hash URLs, and snippets ready for a search UI. Search is still local and dependency-free, but it is not exact-token only. Query terms expand through lightweight stemming, prefix matches, typo-tolerant fallbacks, and a small built-in synonym map. Exact matches keep the highest weight so API names and config keys stay precise. Pass synonyms when your docs use product-specific vocabulary\n\n```ts import { searchDocs, type DocsSearchIndex, type DocsSearchContentStore, } from \"leadtype/search\"; import indexJson from \"../public/docs/search-index.json\"; import contentJson from \"../public/docs/search-content.json\"; const results = searchDocs( indexJson as DocsSearchIndex, \"tabs install\", { content: contentJson as DocsSearchContentStore } ); ``` ```ts const results = searchDocs(index, \"starter\", { content, synonyms: { starter: [\"quickstart\", \"getting started\"], }, }); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nReading docs at runtime\n\nThe same index doubles as a virtual filesystem. Three readers, picked by what you have Use readDocsContentFile when you need the entire page for context links . Use readDocsContentChunk when a search result already named the right heading.\n\n```ts import { listDocsContentFiles, readDocsContentFile, readDocsContentChunk, } from \"leadtype/search\"; const allFiles = listDocsContentFiles(index); const wholePage = readDocsContentFile(index, \"guides/quickstart\", content); const oneChunk = readDocsContentChunk(index, \"chunk-0\", content); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nSource-grounded answers\n\ncreateAnswerContext turns a query plus retrieved chunks into a system and prompt you pass to any model The system message instructs the model to answer only from the retrieved context, cite sources with 1 -style references, and say so when the context is insufficient.\n\n```ts import { createAnswerContext } from \"leadtype/search\"; const context = createAnswerContext(index, \"how do I run lint?\", { content, productName: \"My Library\", }); // → { system, prompt, sources } ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nStreaming via provider entry points\n\nThree thin wrappers around createAnswerContext that stream a Response and surface sources separately. Use one matching your runtime response is a plain text Response. sources is metadata for citation links — display it separately, don't embed it in the streamed answer. For TanStack, pass an explicit adapter . For Cloudflare, build one with createCloudflareDocsAdapter provider, model, options binding env.AI.gateway \"docs\" .\n\n```ts import { streamDocsAnswer } from \"leadtype/search/vercel\"; // Vercel AI SDK / AI Gateway import { streamDocsAnswer } from \"leadtype/search/tanstack\"; // TanStack AI import { streamDocsAnswer } from \"leadtype/search/cloudflare\"; // Cloudflare AI Gateway / Workers AI ``` ```ts const { response, sources } = streamDocsAnswer({ index, content, query, model: \"openai/gpt-5.5\", productName: \"My Library\", }); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nBash tool adapters\n\nWhen you want an agent to explore docs with shell commands instead of receiving pre-selected chunks The adapter exposes a read-only virtual /docs filesystem with ls , cat , find , grep , and rg . Network commands, code execution, and writes are disabled. Use createDocsBashTool for Vercel AI SDK tool sets and createDocsBashTools for TanStack-compatible tools over the same filesystem.\n\n```ts import { createDocsBashTool, createDocsBashTools } from \"leadtype/search/bash\"; const { tools, instructions } = await createDocsBashTool(index, content); ```","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nAbuse guards\n\nReusable utilities for the request path Helper Purpose -- -- validateDocsQuery Trim and cap query text. readJsonWithLimit Reject oversized JSON bodies before parse. getClientIdentifier Read common proxy IP headers. createMemoryRateLimiter Implements RateLimiter for demos. The in-memory limiter is fine for demos. Production apps should adapt the RateLimiter interface to a shared store — Redis, Vercel KV, Cloudflare KV, or Durable Objects.","Search\n\nStatic search index, runtime helpers, and source-grounded answer streaming.\n\nSearch\n\nWhen to add embeddings\n\nStart with the local index. It is static, cheap, edge-safe, and fast for exact API names, config keys, error messages, and paths. Add embeddings only when Users search with vocabulary that doesn't match the docs e.g. \"make it faster\" matching a \"performance optimization\" page . Your docs grow past tens of thousands of chunks and the cold-start memory hit becomes noticeable. Even then, keep the lexical index for exact matches and layer embeddings on top — they're complementary, not replacements."]}
diff --git a/apps/example/src/generated/docs-search-index.json b/apps/example/src/generated/docs-search-index.json
index 47b4e26..7ed3c7f 100644
--- a/apps/example/src/generated/docs-search-index.json
+++ b/apps/example/src/generated/docs-search-index.json
@@ -1 +1 @@
-{"version":2,"generatedAt":"2026-05-10T23:52:50.764Z","documents":[["authoring/components","Components","MDX components the pipeline knows how to flatten into agent-readable markdown.","/docs/authoring/components","https://leadtype.dev/docs/authoring/components","authoring/components"],["authoring/frontmatter","Frontmatter","Required fields, group semantics, and how authored MDX becomes a navigation tree.","/docs/authoring/frontmatter","https://leadtype.dev/docs/authoring/frontmatter","authoring/frontmatter"],["build/bundle-package-docs","Bundle docs into a package","Ship agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.","/docs/build/bundle-package-docs","https://leadtype.dev/docs/build/bundle-package-docs","build/bundle-package-docs"],["build/connect-docs-site","Connect a docs site","Wire leadtype into a docs app build so humans, agents, and search use one source.","/docs/build/connect-docs-site","https://leadtype.dev/docs/build/connect-docs-site","build/connect-docs-site"],["build/optimize-docs-for-agents","Optimize docs for agents","Set up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.","/docs/build/optimize-docs-for-agents","https://leadtype.dev/docs/build/optimize-docs-for-agents","build/optimize-docs-for-agents"],["build/validate-in-ci","Validate in CI","Run leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.","/docs/build/validate-in-ci","https://leadtype.dev/docs/build/validate-in-ci","build/validate-in-ci"],["how-it-works","How it works","The mental model: one MDX source, a remark pipeline, two output modes, three audiences.","/docs/how-it-works","https://leadtype.dev/docs/how-it-works","how-it-works"],["index","Leadtype","One MDX source. A website for humans, AGENTS.md for offline coding agents, llms.txt for HTTP agents — all from a single pipeline.","/docs","https://leadtype.dev/docs","index"],["methodology","Methodology","How leadtype differs from Fumadocs, Starlight, and Mintlify.","/docs/methodology","https://leadtype.dev/docs/methodology","methodology"],["quickstart","Quickstart","Install leadtype, run it against a docs folder, and inspect the artifacts it produces.","/docs/quickstart","https://leadtype.dev/docs/quickstart","quickstart"],["reference/cli","CLI","leadtype generate and leadtype lint — flags, exit codes, and JSON output.","/docs/reference/cli","https://leadtype.dev/docs/reference/cli","reference/cli"],["reference/convert","Convert","MDX-to-markdown conversion APIs from leadtype/convert.","/docs/reference/convert","https://leadtype.dev/docs/reference/convert","reference/convert"],["reference/evals","Evals","How Leadtype benchmarks AGENTS.md, llms.txt, and llms-full.txt output before changing defaults.","/docs/reference/evals","https://leadtype.dev/docs/reference/evals","reference/evals"],["reference/lint","Lint rules","Schema, link, and navigation checks. CLI and library API.","/docs/reference/lint","https://leadtype.dev/docs/reference/lint","reference/lint"],["reference/llm","LLM files","Generate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.","/docs/reference/llm","https://leadtype.dev/docs/reference/llm","reference/llm"],["reference/remark","Remark plugins","The default plugin stack that flattens MDX components into markdown.","/docs/reference/remark","https://leadtype.dev/docs/reference/remark","reference/remark"],["reference/search","Search","Static search index, runtime helpers, and source-grounded answer streaming.","/docs/reference/search","https://leadtype.dev/docs/reference/search","reference/search"]],"chunks":[["chunk-0",0,"components",["Components"],44,0],["chunk-1",0,"why-flatten-at-all",["Components","Why flatten at all?"],82,1],["chunk-2",0,"the-naming-contract",["Components","The naming contract"],81,2],["chunk-3",0,"component-reference",["Components","Component reference"],21,3],["chunk-4",0,"callout",["Components","Component reference","Callout"],74,4],["chunk-5",0,"cards",["Components","Component reference","Cards"],43,5],["chunk-6",0,"steps",["Components","Component reference","Steps"],74,6],["chunk-7",0,"tabs",["Components","Component reference","Tabs"],89,7],["chunk-8",0,"commandtabs",["Components","Component reference","CommandTabs"],111,8],["chunk-9",0,"prompt",["Components","Component reference","Prompt"],92,9],["chunk-10",0,"audience",["Components","Component reference","Audience"],65,10],["chunk-11",0,"filetree",["Components","Component reference","FileTree"],61,11],["chunk-12",0,"accordion",["Components","Component reference","Accordion"],77,12],["chunk-13",0,"topicswitcher",["Components","Component reference","TopicSwitcher"],69,13],["chunk-14",0,"typetable-and-extractedtypetable",["Components","Component reference","TypeTable and ExtractedTypeTable"],86,14],["chunk-15",0,"example",["Components","Component reference","Example"],76,15],["chunk-16",0,"mermaid",["Components","Component reference","Mermaid"],62,16],["chunk-17",0,"guidelines",["Components","Guidelines"],55,17],["chunk-18",1,"frontmatter",["Frontmatter"],26,18],["chunk-19",1,"minimum",["Frontmatter","Minimum"],84,19],["chunk-20",1,"how-groups-become-a-nav-tree",["Frontmatter","How groups become a nav tree"],123,20],["chunk-21",1,"nested-groups",["Frontmatter","How groups become a nav tree","Nested groups"],67,21],["chunk-22",1,"optional-fields",["Frontmatter","Optional fields"],117,22],["chunk-23",1,"lint-rules",["Frontmatter","Lint rules"],88,23],["chunk-24",1,"what-this-gives-you",["Frontmatter","What this gives you"],55,24],["chunk-25",2,"bundle-docs-into-a-package",["Bundle docs into a package"],76,25],["chunk-26",2,"the-flow",["Bundle docs into a package","The flow"],86,26],["chunk-27",2,"why-agents-md-not-llms-txt",["Bundle docs into a package","Why AGENTS.md, not llms.txt?"],137,27],["chunk-28",2,"generate-into-the-package",["Bundle docs into a package","Generate into the package"],108,28],["chunk-29",2,"filter-to-package-specific-docs",["Bundle docs into a package","Filter to package-specific docs"],78,29],["chunk-30",2,"include-in-the-published-tarball",["Bundle docs into a package","Include in the published tarball"],156,30],["chunk-31",2,"include-in-the-published-tarball",["Bundle docs into a package","Include in the published tarball"],89,31],["chunk-32",2,"verify-before-publishing",["Bundle docs into a package","Verify before publishing"],71,32],["chunk-33",2,"tell-consuming-projects-to-use-the-bundle",["Bundle docs into a package","Tell consuming projects to use the bundle"],112,33],["chunk-34",2,"when-to-use-this",["Bundle docs into a package","When to use this"],72,34],["chunk-35",2,"what-s-next",["Bundle docs into a package","What's next"],31,35],["chunk-36",3,"connect-a-docs-site",["Connect a docs site"],54,36],["chunk-37",3,"the-flow",["Connect a docs site","The flow"],88,37],["chunk-38",3,"one-off-run",["Connect a docs site","One-off run"],74,38],["chunk-39",3,"wire-it-into-the-build",["Connect a docs site","Wire it into the build"],201,39],["chunk-40",3,"configure-the-product-and-groups",["Connect a docs site","Configure the product and groups"],93,40],["chunk-41",3,"make-the-site-agent-readable",["Connect a docs site","Make the site agent-readable"],229,41],["chunk-42",3,"make-the-site-agent-readable",["Connect a docs site","Make the site agent-readable"],60,42],["chunk-43",3,"connect-a-remote-source",["Connect a docs site","Connect a remote source"],130,43],["chunk-44",3,"verify",["Connect a docs site","Verify"],160,44],["chunk-45",3,"what-s-next",["Connect a docs site","What's next"],27,45],["chunk-46",4,"optimize-docs-for-agents",["Optimize docs for agents"],73,46],["chunk-47",4,"what-good-looks-like",["Optimize docs for agents","What good looks like"],105,47],["chunk-48",4,"1-generate-the-artifacts",["Optimize docs for agents","1. Generate the artifacts"],113,48],["chunk-49",4,"2-serve-root-discovery-files",["Optimize docs for agents","2. Serve root discovery files"],202,49],["chunk-50",4,"3-add-json-ld-to-docs-pages",["Optimize docs for agents","3. Add JSON-LD to docs pages"],142,50],["chunk-51",4,"4-return-markdown-to-agents",["Optimize docs for agents","4. Return markdown to agents"],226,51],["chunk-52",4,"4-return-markdown-to-agents",["Optimize docs for agents","4. Return markdown to agents"],170,52],["chunk-53",4,"4-return-markdown-to-agents",["Optimize docs for agents","4. Return markdown to agents"],71,53],["chunk-54",4,"serve-sitemap-xml-and-robots-txt-with-the-live-origin",["Optimize docs for agents","4. Return markdown to agents","Serve sitemap.xml and robots.txt with the live origin"],172,54],["chunk-55",4,"cache-control-and-cdn",["Optimize docs for agents","4. Return markdown to agents","Cache-Control and CDN"],88,55],["chunk-56",4,"5-verify-locally",["Optimize docs for agents","5. Verify locally"],193,56],["chunk-57",4,"minimal-checklist",["Optimize docs for agents","Minimal checklist"],100,57],["chunk-58",5,"validate-in-ci",["Validate in CI"],49,58],["chunk-59",5,"what-it-catches",["Validate in CI","What it catches"],78,59],["chunk-60",5,"github-actions",["Validate in CI","GitHub Actions"],83,60],["chunk-61",5,"other-ci-providers",["Validate in CI","Other CI providers"],60,61],["chunk-62",5,"local-pre-push-hook",["Validate in CI","Local pre-push hook"],64,62],["chunk-63",5,"run-before-generate",["Validate in CI","Run before generate"],63,63],["chunk-64",5,"what-to-fix-first",["Validate in CI","What to fix first"],66,64],["chunk-65",6,"how-it-works",["How it works"],37,65],["chunk-66",6,"the-pipeline",["How it works","The pipeline"],141,66],["chunk-67",6,"two-output-modes",["How it works","Two output modes"],128,67],["chunk-68",6,"the-artifacts",["How it works","The artifacts"],176,68],["chunk-69",6,"the-artifacts",["How it works","The artifacts"],110,69],["chunk-70",6,"the-three-audiences",["How it works","The three audiences"],178,70],["chunk-71",6,"vocabulary",["How it works","Vocabulary"],153,71],["chunk-72",6,"what-runs-when",["How it works","What runs when"],123,72],["chunk-73",6,"where-to-next",["How it works","Where to next"],20,73],["chunk-74",7,"leadtype",["Leadtype"],184,74],["chunk-75",7,"choose-your-path",["Leadtype","Choose your path"],49,75],["chunk-76",7,"what-you-get",["Leadtype","What you get"],113,76],["chunk-77",7,"next",["Leadtype","Next"],49,77],["chunk-78",8,"methodology",["Methodology"],30,78],["chunk-79",8,"the-short-version",["Methodology","The short version"],130,79],["chunk-80",8,"what-leadtype-owns",["Methodology","What leadtype owns"],53,80],["chunk-81",8,"what-leadtype-does-not-own",["Methodology","What leadtype does not own"],31,81],["chunk-82",8,"when-the-combination-shines",["Methodology","When the combination shines"],86,82],["chunk-83",9,"quickstart",["Quickstart"],18,83],["chunk-84",9,"install",["Quickstart","Install"],54,84],["chunk-85",9,"author-one-page",["Quickstart","Author one page"],46,85],["chunk-86",9,"generate",["Quickstart","Generate"],149,86],["chunk-87",9,"inspect-the-output",["Quickstart","Inspect the output"],158,87],["chunk-88",9,"bundle-for-offline-agents",["Quickstart","Bundle for offline agents"],82,88],["chunk-89",9,"what-s-next",["Quickstart","What's next"],32,89],["chunk-90",10,"cli",["CLI"],30,90],["chunk-91",10,"generate",["CLI","generate"],167,91],["chunk-92",10,"generate",["CLI","generate"],76,92],["chunk-93",10,"bundle-mode",["CLI","generate","Bundle mode"],75,93],["chunk-94",10,"json-output-shape",["CLI","generate","JSON output shape"],172,94],["chunk-95",10,"group-inference",["CLI","generate","Group inference"],88,95],["chunk-96",10,"lint",["CLI","lint"],145,96],["chunk-97",10,"help",["CLI","help"],25,97],["chunk-98",10,"library-entry-points",["CLI","Library entry points"],81,98],["chunk-99",11,"convert",["Convert"],47,99],["chunk-100",11,"convertallmdx",["Convert","convertAllMdx"],67,100],["chunk-101",11,"convertmdxtomarkdown",["Convert","convertMdxToMarkdown"],54,101],["chunk-102",11,"writemdxfileasmarkdown",["Convert","writeMdxFileAsMarkdown"],28,102],["chunk-103",11,"behavior-notes",["Convert","Behavior notes"],50,103],["chunk-104",11,"pairing-with-remark-plugins",["Convert","Pairing with remark plugins"],54,104],["chunk-105",12,"evals",["Evals"],46,105],["chunk-106",12,"what-we-benchmark",["Evals","What we benchmark"],173,106],["chunk-107",12,"what-we-benchmark",["Evals","What we benchmark"],120,107],["chunk-108",12,"what-we-learned",["Evals","What we learned"],132,108],["chunk-109",12,"current-default",["Evals","Current default"],72,109],["chunk-110",12,"open-question",["Evals","Open question"],55,110],["chunk-111",12,"run-the-evals",["Evals","Run the evals"],37,111],["chunk-112",13,"lint-rules",["Lint rules"],46,112],["chunk-113",13,"rules",["Lint rules","Rules"],15,113],["chunk-114",13,"frontmatter-rules",["Lint rules","Rules","Frontmatter rules"],58,114],["chunk-115",13,"content-link-rules",["Lint rules","Rules","Content / link rules"],68,115],["chunk-116",13,"library-api",["Lint rules","Library API"],90,116],["chunk-117",13,"result-shape",["Lint rules","Library API","Result shape"],67,117],["chunk-118",13,"docs-frontmatter",["Lint rules","Default schemas","Docs frontmatter"],75,118],["chunk-119",13,"changelog-frontmatter",["Lint rules","Default schemas","Changelog frontmatter"],60,119],["chunk-120",13,"meta-json",["Lint rules","Default schemas","meta.json"],49,120],["chunk-121",13,"custom-schemas",["Lint rules","Custom schemas"],63,121],["chunk-122",13,"practical-guidance",["Lint rules","Practical guidance"],65,122],["chunk-123",14,"llm-files",["LLM files"],126,123],["chunk-124",14,"what-gets-generated",["LLM files","What gets generated"],154,124],["chunk-125",14,"example-llms-txt",["LLM files","Example llms.txt"],82,125],["chunk-126",14,"typical-sequence",["LLM files","Typical sequence"],105,126],["chunk-127",14,"generateagentreadabilityartifacts",["LLM files","generateAgentReadabilityArtifacts"],132,127],["chunk-128",14,"agent-readability-helpers",["LLM files","Agent readability helpers"],72,128],["chunk-129",14,"createagentmarkdownresponse",["LLM files","Agent readability helpers","createAgentMarkdownResponse"],180,129],["chunk-130",14,"createsitemapxmlresponse-createsitemapmarkdownresponse-createrobotstxtresponse",["LLM files","Agent readability helpers","createSitemapXmlResponse / createSitemapMarkdownResponse / createRobotsTxtResponse"],96,130],["chunk-131",14,"createdocshead",["LLM files","Agent readability helpers","createDocsHead"],148,131],["chunk-132",14,"lower-level-helpers",["LLM files","Agent readability helpers","Lower-level helpers"],144,132],["chunk-133",14,"lower-level-helpers",["LLM files","Agent readability helpers","Lower-level helpers"],58,133],["chunk-134",14,"cache-control-and-cdn",["LLM files","Agent readability helpers","Cache-Control and CDN"],73,134],["chunk-135",14,"manifest-version",["LLM files","Agent readability helpers","Manifest version"],47,135],["chunk-136",14,"generateagentsmd",["LLM files","generateAgentsMd"],144,136],["chunk-137",14,"example-output",["LLM files","generateAgentsMd","Example output"],86,137],["chunk-138",14,"resolvedocsnavigation",["LLM files","resolveDocsNavigation"],111,138],["chunk-139",14,"group-design",["LLM files","Group design"],69,139],["chunk-140",14,"base-url-precedence",["LLM files","Base URL precedence"],75,140],["chunk-141",15,"remark-plugins",["Remark plugins"],46,141],["chunk-142",15,"the-default-stack",["Remark plugins","The default stack"],182,142],["chunk-143",15,"the-default-stack",["Remark plugins","The default stack"],39,143],["chunk-144",15,"why-order-matters",["Remark plugins","Why order matters"],81,144],["chunk-145",15,"remarkinclude",["Remark plugins","Optional plugins","remarkInclude"],40,145],["chunk-146",15,"remarktypetabletomarkdown-with-basepath",["Remark plugins","Optional plugins","remarkTypeTableToMarkdown with basePath"],99,146],["chunk-147",15,"plugin-selection-rules",["Remark plugins","Plugin selection rules"],63,147],["chunk-148",16,"search",["Search"],41,148],["chunk-149",16,"vocabulary",["Search","Vocabulary"],79,149],["chunk-150",16,"build-time-indexing",["Search","Build-time indexing"],66,150],["chunk-151",16,"runtime-search",["Search","Runtime search"],123,151],["chunk-152",16,"reading-docs-at-runtime",["Search","Reading docs at runtime"],62,152],["chunk-153",16,"source-grounded-answers",["Search","Source-grounded answers"],62,153],["chunk-154",16,"streaming-via-provider-entry-points",["Search","Streaming via provider entry points"],103,154],["chunk-155",16,"bash-tool-adapters",["Search","Bash tool adapters"],71,155],["chunk-156",16,"abuse-guards",["Search","Abuse guards"],60,156],["chunk-157",16,"when-to-add-embeddings",["Search","When to add embeddings"],73,157]],"terms":{"10":[[142,0,0,1,0]],"11":[[142,0,0,1,0]],"12":[[142,0,0,1,0]],"13":[[142,0,0,1,0]],"14":[[142,0,0,1,0]],"15":[[142,0,0,1,0]],"16":[[142,0,0,1,0],[143,0,0,1,0]],"17":[[142,0,0,1,0],[143,0,0,1,0]],"18":[[142,0,0,1,0],[143,0,0,1,0]],"25":[[25,0,0,1,0],[68,0,0,1,0],[70,0,0,1,0]],"35":[[71,0,0,1,0],[149,0,0,1,0]],"200":[[51,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0]],"300":[[51,0,0,1,0],[55,0,0,1,0],[129,0,0,1,0],[134,0,0,1,0]],"5173":[[44,0,0,0,4],[56,0,0,0,8],[87,0,0,0,1]],"8601":[[119,0,0,1,0]],"components":[[0,1,1,2,0],[1,1,1,2,0],[2,1,1,2,2],[3,1,1,1,0],[4,1,1,1,0],[5,1,1,1,0],[6,1,1,2,1],[7,1,1,1,0],[8,1,1,1,0],[9,1,1,1,0],[10,1,1,1,0],[11,1,1,1,0],[12,1,1,1,0],[13,1,1,1,0],[14,1,1,1,0],[15,1,1,1,4],[16,1,1,1,0],[17,1,1,3,0],[66,0,0,2,1],[76,0,0,1,0],[81,0,0,1,0],[106,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0]],"mdx":[[0,0,0,1,0],[1,0,0,2,0],[2,0,0,1,1],[3,0,0,2,0],[4,0,0,1,0],[5,0,0,1,1],[6,0,0,2,1],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,3],[16,0,0,1,2],[17,0,0,1,0],[18,0,0,2,0],[19,0,0,1,1],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[26,0,0,0,1],[34,0,0,1,0],[36,0,0,1,0],[37,0,0,0,1],[38,0,0,1,0],[39,0,0,0,2],[58,0,0,1,0],[60,0,0,0,1],[65,0,0,2,0],[66,0,0,2,1],[67,0,0,1,0],[68,0,0,2,0],[69,0,0,1,0],[70,0,0,2,1],[71,0,0,2,0],[72,0,0,2,0],[73,0,0,1,0],[74,0,0,2,1],[75,0,0,1,0],[76,0,0,3,0],[77,0,0,1,0],[80,0,0,1,0],[81,0,0,1,0],[83,0,0,1,0],[85,0,0,1,1],[86,0,0,1,0],[87,0,0,1,0],[91,0,0,1,0],[99,0,0,2,0],[100,0,0,2,0],[101,0,0,1,1],[102,0,0,1,1],[103,0,0,2,0],[104,0,0,1,0],[112,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[141,0,0,2,0],[142,0,0,2,1],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,2,1],[147,0,0,1,0],[150,0,0,1,0]],"pipeline":[[0,0,0,2,0],[1,0,0,1,0],[2,0,0,2,0],[3,0,0,1,0],[4,0,0,2,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,2,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[24,0,0,1,0],[39,0,0,1,8],[41,0,0,1,0],[48,0,0,1,0],[58,0,0,1,0],[65,0,0,1,0],[66,0,1,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,2,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,2,0],[78,0,0,1,0],[80,0,0,1,0],[82,0,0,1,0],[83,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[95,0,0,1,0],[101,0,0,1,0],[125,0,0,0,1],[137,0,0,0,1]],"knows":[[0,0,0,1,0],[1,0,0,1,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0]],"flatten":[[0,0,0,2,0],[1,0,1,1,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,3,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[66,0,0,0,1],[71,0,0,1,0],[142,0,0,2,0]],"into":[[0,0,0,2,0],[1,0,0,2,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,3,0],[5,0,0,1,1],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[19,0,0,0,1],[25,1,1,0,0],[26,1,1,0,0],[27,1,1,0,0],[28,1,2,0,0],[29,1,1,0,0],[30,1,1,0,0],[31,1,1,0,0],[32,1,1,0,0],[33,1,1,0,0],[34,1,1,0,0],[35,1,1,0,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,1,2,0],[40,0,0,1,0],[41,0,0,2,0],[42,0,0,1,0],[43,0,0,2,0],[44,0,0,2,0],[45,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[58,0,0,1,0],[61,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[71,0,0,1,0],[86,0,0,2,0],[87,0,0,0,1],[88,0,0,1,0],[89,0,0,2,0],[91,0,0,2,0],[93,0,0,1,0],[99,0,0,1,0],[103,0,0,1,0],[104,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[128,0,0,1,0],[130,0,0,0,1],[137,0,0,1,0],[141,0,0,3,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,2,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[153,0,0,1,0]],"agent":[[0,0,0,1,0],[1,0,0,2,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,1],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,3,3],[10,0,0,3,1],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,2,0],[25,0,0,1,0],[26,0,0,1,0],[27,0,0,4,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[32,0,0,1,0],[33,0,0,2,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,0,3],[38,0,0,1,0],[41,0,1,2,1],[42,0,1,1,0],[44,0,0,2,0],[46,0,0,2,0],[47,0,0,3,0],[48,0,0,2,1],[49,0,0,2,1],[50,0,0,1,1],[51,0,0,5,1],[52,0,0,4,0],[53,0,0,2,0],[54,0,0,1,1],[55,0,0,3,0],[56,0,0,3,2],[57,0,0,3,0],[66,0,0,1,0],[67,0,0,2,0],[69,0,0,2,0],[70,0,0,1,4],[71,0,0,1,0],[72,0,0,2,0],[74,0,0,1,1],[76,0,0,1,0],[82,0,0,2,0],[86,0,0,2,0],[87,0,0,2,2],[91,0,0,1,0],[93,0,0,1,0],[94,0,0,0,1],[98,0,0,1,0],[103,0,0,1,0],[105,0,0,2,0],[123,0,0,1,0],[124,0,0,1,0],[127,0,0,1,0],[128,0,1,0,0],[129,0,1,5,0],[130,0,1,0,0],[131,0,1,0,1],[132,0,1,2,0],[133,0,1,1,0],[134,0,1,2,0],[135,0,1,1,0],[136,0,0,1,0],[140,0,0,1,1],[141,0,0,1,0],[142,0,0,1,0],[147,0,0,1,0],[155,0,0,1,0]],"readable":[[0,0,0,1,0],[1,0,0,1,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[41,0,1,0,0],[42,0,1,0,0],[46,0,0,1,0],[47,0,0,2,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[66,0,0,1,0],[68,0,0,1,0],[88,0,0,1,0],[141,0,0,1,0]],"markdown":[[0,0,0,2,0],[1,0,0,3,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,1],[6,0,0,2,1],[7,0,0,1,0],[8,0,0,2,0],[9,0,0,1,2],[10,0,0,4,1],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,2,5],[17,0,0,2,0],[19,0,0,1,0],[25,0,0,1,0],[37,0,0,0,1],[41,0,0,8,0],[42,0,0,1,0],[44,0,0,4,1],[46,0,0,1,0],[47,0,0,6,0],[48,0,0,2,0],[49,0,0,1,0],[50,0,0,2,1],[51,0,1,5,0],[52,0,1,3,0],[53,0,1,2,0],[54,0,1,1,0],[55,0,1,2,0],[56,0,0,5,1],[57,0,0,6,0],[66,0,0,3,0],[68,0,0,3,0],[70,0,0,1,1],[71,0,0,3,0],[72,0,0,1,0],[74,0,0,0,1],[76,0,0,2,0],[78,0,0,1,0],[79,0,0,1,0],[80,0,0,2,0],[82,0,0,1,0],[86,0,0,2,0],[87,0,0,0,5],[98,0,0,1,0],[99,0,0,2,0],[100,0,0,1,0],[101,0,0,2,1],[102,0,0,1,0],[103,0,0,2,0],[104,0,0,1,0],[106,0,0,3,0],[107,0,0,2,0],[109,0,0,1,0],[123,0,0,2,0],[124,0,0,4,0],[127,0,0,1,0],[129,0,0,4,0],[131,0,0,0,1],[132,0,0,5,0],[133,0,0,1,0],[134,0,0,1,0],[141,0,0,3,0],[142,0,0,3,1],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,2,0],[147,0,0,1,0],[150,0,0,1,0]],"leadtype":[[0,0,0,1,0],[6,0,0,1,1],[8,0,0,8,4],[15,0,0,1,1],[17,0,0,1,0],[18,0,0,1,0],[19,0,0,0,1],[23,0,0,1,0],[25,0,0,1,0],[26,0,0,0,1],[27,0,0,1,0],[28,0,0,0,1],[29,0,0,0,1],[30,0,0,0,4],[32,0,0,0,1],[36,0,0,2,0],[37,0,0,1,1],[38,0,0,2,2],[39,0,0,1,2],[40,0,0,1,1],[41,0,0,3,1],[42,0,0,1,0],[43,0,0,1,2],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[48,0,0,0,2],[49,0,0,0,1],[50,0,0,0,3],[51,0,0,0,1],[54,0,0,0,1],[58,0,0,3,0],[59,0,0,1,0],[60,0,0,1,1],[61,0,0,1,1],[62,0,0,1,1],[63,0,0,3,2],[64,0,0,1,0],[65,0,0,1,0],[67,0,0,3,0],[72,0,0,1,0],[74,1,1,2,2],[75,1,1,0,0],[76,1,1,1,0],[77,1,1,1,0],[78,0,0,2,0],[79,0,0,3,0],[80,0,1,1,0],[81,0,1,1,0],[82,0,0,4,0],[83,0,0,1,0],[84,0,0,11,0],[85,0,0,1,0],[86,0,0,1,2],[87,0,0,1,2],[88,0,0,1,1],[89,0,0,1,0],[90,0,0,3,1],[91,0,0,2,1],[92,0,0,2,0],[93,0,0,2,1],[94,0,0,2,0],[95,0,0,2,2],[96,0,0,2,1],[97,0,0,2,3],[98,0,0,8,0],[99,0,0,3,1],[100,0,0,1,1],[101,0,0,1,0],[102,0,0,1,0],[103,0,0,1,0],[104,0,0,1,1],[105,0,0,2,0],[106,0,0,3,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,2,0],[110,0,0,1,0],[111,0,0,1,0],[112,0,0,1,1],[116,0,0,0,1],[121,0,0,0,1],[122,0,0,1,0],[123,0,0,3,1],[126,0,0,0,6],[127,0,0,1,3],[128,0,0,0,1],[131,0,0,0,5],[135,0,0,1,0],[136,0,0,0,1],[138,0,0,0,1],[140,0,0,1,2],[141,0,0,0,1],[146,0,0,0,1],[148,0,0,1,0],[150,0,0,0,2],[151,0,0,0,1],[152,0,0,0,1],[153,0,0,0,1],[154,0,0,0,3],[155,0,0,0,1]],"does":[[0,0,0,1,0],[13,0,0,1,0],[39,0,0,1,0],[40,0,0,0,1],[81,0,1,0,0],[85,0,0,0,1],[86,0,0,1,0],[108,0,0,1,0],[125,0,0,0,1],[126,0,0,0,1],[137,0,0,0,1]],"not":[[0,0,0,1,0],[7,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[27,0,1,1,0],[33,0,0,1,0],[41,0,0,2,0],[42,0,0,1,0],[44,0,0,1,0],[51,0,0,2,0],[53,0,0,1,0],[59,0,0,1,0],[64,0,0,1,0],[68,0,0,1,0],[72,0,0,1,0],[74,0,0,1,0],[78,0,0,1,0],[79,0,0,1,0],[81,0,1,0,0],[95,0,0,1,0],[105,0,0,1,0],[108,0,0,2,0],[109,0,0,2,0],[114,0,0,1,0],[124,0,0,1,0],[129,0,0,2,0],[131,0,0,1,0],[139,0,0,2,0],[144,0,0,1,0],[149,0,0,1,0],[151,0,0,1,0],[157,0,0,1,0]],"ship":[[0,0,0,1,0],[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,1],[31,0,0,1,1],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[43,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[79,0,0,1,0],[88,0,0,1,0],[93,0,0,1,0],[136,0,0,1,0],[137,0,0,0,1]],"ui":[[0,0,0,1,0],[10,0,0,1,0],[17,0,0,1,0],[24,0,0,1,0],[37,0,0,0,1],[43,0,0,1,0],[70,0,0,0,3],[74,0,0,1,1],[79,0,0,1,0],[81,0,0,1,0],[82,0,0,1,0],[138,0,0,1,0],[151,0,0,1,0]],"your":[[0,0,0,1,0],[2,0,0,3,0],[9,0,0,1,1],[17,0,0,1,0],[22,0,0,1,0],[25,0,0,2,0],[26,0,0,0,1],[27,0,0,2,0],[30,0,0,1,0],[33,0,0,4,2],[34,0,0,1,0],[36,0,0,2,0],[37,0,0,0,2],[39,0,0,1,0],[41,0,0,2,0],[44,0,0,2,0],[46,0,0,1,0],[48,0,0,1,0],[49,0,0,0,1],[50,0,0,3,0],[51,0,0,1,0],[52,0,0,4,0],[53,0,0,1,0],[55,0,0,2,0],[56,0,0,2,0],[61,0,0,1,0],[65,0,0,1,0],[67,0,0,1,0],[69,0,0,2,0],[70,0,0,4,0],[71,0,0,1,0],[74,0,0,2,1],[75,0,1,1,0],[76,0,0,2,0],[81,0,0,1,0],[82,0,0,1,0],[85,0,0,1,0],[87,0,0,2,0],[89,0,0,1,0],[104,0,0,1,0],[121,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[138,0,0,2,0],[146,0,0,1,0],[148,0,0,1,0],[151,0,0,1,0],[154,0,0,1,0],[157,0,0,1,0]],"docs":[[0,0,0,1,0],[2,0,0,0,1],[5,0,0,0,1],[6,0,0,2,1],[9,0,0,0,4],[10,0,0,1,0],[11,0,0,0,2],[13,0,0,1,2],[15,0,0,0,1],[17,0,0,1,0],[19,0,0,1,2],[20,0,0,2,1],[21,0,0,1,3],[22,0,0,1,0],[23,0,0,2,0],[25,1,1,3,0],[26,1,1,1,3],[27,1,1,1,0],[28,1,1,2,2],[29,1,2,2,0],[30,1,1,3,7],[31,1,1,1,2],[32,1,1,2,0],[33,1,1,3,1],[34,1,1,3,0],[35,1,1,1,0],[36,1,1,2,0],[37,1,1,1,7],[38,1,1,2,1],[39,1,1,2,2],[40,1,1,3,3],[41,1,1,8,1],[42,1,1,3,0],[43,1,1,7,4],[44,1,1,11,2],[45,1,1,2,0],[46,1,1,2,0],[47,1,1,5,0],[48,1,1,3,1],[49,1,1,7,3],[50,1,2,1,4],[51,1,1,4,1],[52,1,1,5,0],[53,1,1,1,0],[54,1,1,2,5],[55,1,1,1,0],[56,1,1,6,5],[57,1,1,8,0],[58,0,0,1,0],[59,0,0,2,0],[60,0,0,0,3],[61,0,0,0,1],[62,0,0,0,1],[63,0,0,0,1],[64,0,0,1,0],[65,0,0,2,0],[66,0,0,0,2],[67,0,0,9,0],[68,0,0,4,0],[69,0,0,6,0],[70,0,0,3,0],[71,0,0,2,0],[72,0,0,4,0],[74,0,0,3,3],[75,0,0,2,0],[78,0,0,3,0],[79,0,0,5,0],[81,0,0,1,0],[82,0,0,3,0],[83,0,0,1,0],[84,0,0,1,0],[85,0,0,2,0],[86,0,0,11,0],[87,0,0,3,6],[88,0,0,4,0],[89,0,0,4,0],[91,0,0,10,0],[92,0,0,3,0],[93,0,0,3,0],[94,0,0,1,8],[95,0,0,2,2],[96,0,0,1,0],[98,0,0,1,0],[100,0,0,1,2],[101,0,0,0,1],[102,0,0,0,2],[104,0,0,1,0],[105,0,0,1,0],[106,0,0,9,0],[107,0,0,4,0],[108,0,0,1,0],[109,0,0,1,1],[110,0,0,1,0],[111,0,0,1,0],[115,0,0,3,0],[116,0,0,1,1],[118,0,1,0,0],[121,0,0,0,1],[122,0,0,1,0],[123,0,0,5,0],[124,0,0,10,0],[125,0,0,0,5],[126,0,0,1,2],[127,0,0,5,0],[129,0,0,1,0],[130,0,0,0,4],[131,0,0,1,4],[132,0,0,5,0],[136,0,0,5,0],[137,0,0,1,4],[138,0,0,1,1],[139,0,0,1,0],[145,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[150,0,0,1,2],[151,0,0,1,2],[152,0,1,0,0],[154,0,0,1,0],[155,0,0,2,0],[157,0,0,2,0]],"app":[[0,0,0,1,0],[2,0,0,1,0],[15,0,0,1,1],[17,0,0,1,0],[19,0,0,0,1],[36,0,0,1,0],[37,0,0,1,6],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,2,0],[42,0,0,1,0],[43,0,0,2,0],[44,0,0,2,0],[45,0,0,1,0],[46,0,0,1,0],[48,0,0,1,0],[81,0,0,1,0],[82,0,0,1,0],[86,0,0,1,0],[94,0,0,1,0],[123,0,0,1,0]],"owns":[[0,0,0,1,0],[15,0,0,0,2],[29,0,0,1,0],[80,0,1,0,0]],"runtime":[[0,0,0,1,0],[10,0,0,0,1],[15,0,0,0,2],[17,0,0,1,0],[41,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0],[87,0,0,1,0],[92,0,0,1,0],[125,0,0,0,1],[128,0,0,2,0],[148,0,0,2,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,1,2,0],[152,0,1,1,0],[153,0,0,1,0],[154,0,0,2,0],[155,0,0,1,0],[156,0,0,1,0],[157,0,0,1,0]],"rendering":[[0,0,0,1,0],[36,0,0,1,0],[103,0,0,1,0],[146,0,0,1,0]],"styling":[[0,0,0,1,0],[4,0,0,2,0],[15,0,0,0,1],[81,0,0,1,0]],"accessibility":[[0,0,0,1,0]],"only":[[0,0,0,1,0],[10,0,0,3,0],[13,0,0,1,0],[17,0,0,1,0],[21,0,0,2,0],[29,0,0,1,0],[34,0,0,1,0],[39,0,0,1,0],[66,0,0,0,3],[67,0,0,1,0],[68,0,0,3,0],[69,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[88,0,0,1,0],[91,0,0,1,0],[93,0,0,1,0],[94,0,0,2,0],[106,0,0,1,0],[107,0,0,2,0],[108,0,0,1,0],[129,0,0,1,0],[147,0,0,1,0],[151,0,0,1,0],[153,0,0,1,0],[155,0,0,1,0],[157,0,0,1,0]],"has":[[0,0,0,1,0],[23,0,0,1,0],[47,0,0,2,0],[50,0,0,1,0],[67,0,0,1,0],[71,0,0,1,0],[86,0,0,1,0]],"honor":[[0,0,0,1,0]],"small":[[0,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[109,0,0,1,0],[110,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0]],"naming":[[0,0,0,1,0],[2,0,1,0,0]],"contract":[[0,0,0,1,0],[2,0,1,1,0],[17,0,0,1,0],[66,0,0,1,0],[73,0,0,1,0],[121,0,0,1,0]],"so":[[0,0,0,1,0],[1,0,0,1,0],[4,0,0,1,0],[7,0,0,1,0],[9,0,0,1,0],[11,0,0,1,0],[16,0,0,1,0],[20,0,0,1,0],[23,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[30,0,0,0,1],[31,0,0,0,1],[33,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,2,1],[40,0,0,1,0],[41,0,0,2,0],[42,0,0,1,0],[43,0,0,3,0],[44,0,0,1,0],[45,0,0,1,0],[47,0,0,2,0],[51,0,0,2,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,2,0],[58,0,0,2,0],[59,0,0,1,0],[60,0,0,2,0],[61,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[68,0,0,3,0],[69,0,0,2,0],[80,0,0,1,0],[88,0,0,1,0],[94,0,0,1,0],[103,0,0,1,0],[104,0,0,1,0],[110,0,0,1,0],[115,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[126,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[137,0,0,0,1],[144,0,0,1,0],[145,0,0,1,0],[149,0,0,2,0],[151,0,0,1,0],[153,0,0,1,0]],"remark":[[0,0,0,1,0],[2,0,0,2,0],[4,0,0,1,0],[5,0,0,1,0],[12,0,0,1,0],[16,0,0,0,2],[17,0,0,1,0],[30,0,0,0,1],[39,0,0,1,1],[65,0,0,1,0],[66,0,0,3,4],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,2,0],[73,0,0,1,0],[80,0,0,1,0],[84,0,0,1,0],[86,0,0,1,0],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,0,1],[104,0,1,1,1],[115,0,0,1,0],[126,0,0,0,1],[141,1,1,1,1],[142,1,1,0,0],[143,1,1,0,0],[144,1,1,0,0],[145,1,1,0,0],[146,1,1,0,1],[147,1,1,0,0]],"each":[[0,0,0,1,0],[1,0,0,1,0],[3,0,0,1,0],[20,0,0,2,0],[29,0,0,1,0],[47,0,0,1,0],[68,0,0,1,0],[70,0,0,1,0],[72,0,0,2,0],[75,0,0,1,0],[82,0,0,1,0],[86,0,0,1,0],[96,0,0,1,0],[106,0,0,1,0],[107,0,0,3,0],[140,0,0,1,0],[141,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0]],"component":[[0,0,0,1,0],[1,0,0,1,0],[3,0,1,0,0],[4,0,1,0,0],[5,0,1,0,0],[6,0,1,0,0],[7,0,1,0,0],[8,0,1,0,0],[9,0,1,0,0],[10,0,1,0,0],[11,0,1,0,0],[12,0,1,0,0],[13,0,1,0,0],[14,0,1,0,0],[15,0,1,1,0],[16,0,1,0,0],[17,0,0,1,0],[22,0,0,1,0],[39,0,0,0,1],[66,0,0,1,0],[69,0,0,1,0],[71,0,0,1,0],[81,0,0,2,0],[104,0,0,1,0],[138,0,0,1,0],[141,0,0,1,0],[144,0,0,3,0]],"agents":[[0,0,0,1,0],[1,0,0,1,0],[4,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[16,0,0,0,2],[20,0,0,1,3],[24,0,0,1,0],[25,0,0,4,0],[26,0,0,1,2],[27,0,1,9,0],[28,0,0,4,1],[29,0,0,1,0],[30,0,0,2,2],[31,0,0,1,0],[32,0,0,3,0],[33,0,0,5,1],[34,0,0,3,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,1,1],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,3,0],[42,0,0,1,0],[43,0,0,1,0],[44,0,0,1,0],[45,0,0,2,0],[46,1,1,1,0],[47,1,1,2,0],[48,1,1,0,0],[49,1,1,1,0],[50,1,1,1,0],[51,1,2,1,0],[52,1,2,0,0],[53,1,2,0,0],[54,1,2,0,0],[55,1,2,1,0],[56,1,1,1,0],[57,1,1,2,0],[66,0,0,0,3],[67,0,0,1,0],[68,0,0,6,0],[69,0,0,1,0],[70,0,0,6,3],[71,0,0,1,0],[72,0,0,1,0],[74,0,0,6,8],[75,0,0,3,0],[76,0,0,8,0],[77,0,0,3,0],[79,0,0,1,0],[80,0,0,1,0],[82,0,0,1,0],[87,0,0,0,1],[88,0,1,2,0],[89,0,0,1,0],[91,0,0,4,0],[93,0,0,1,0],[105,0,0,1,0],[106,0,0,5,0],[107,0,0,1,0],[108,0,0,2,0],[109,0,0,3,0],[110,0,0,1,0],[111,0,0,1,0],[123,0,0,2,0],[124,0,0,2,0],[125,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,5,0],[133,0,0,2,0],[134,0,0,2,0],[135,0,0,1,0],[136,0,0,5,0],[137,0,0,1,1],[138,0,0,1,0],[139,0,0,3,0],[140,0,0,1,0]],"search":[[0,0,0,1,0],[1,0,0,1,0],[5,0,0,1,0],[16,0,0,0,1],[20,0,0,1,0],[22,0,0,2,0],[24,0,0,2,0],[28,0,0,1,0],[36,0,0,2,0],[37,0,0,1,4],[38,0,0,2,0],[39,0,0,2,3],[40,0,0,1,0],[41,0,0,2,0],[42,0,0,2,0],[43,0,0,2,0],[44,0,0,3,0],[45,0,0,2,0],[66,0,0,0,4],[67,0,0,2,0],[68,0,0,3,0],[70,0,0,0,4],[71,0,0,2,0],[72,0,0,2,0],[74,0,0,2,3],[76,0,0,1,0],[78,0,0,1,0],[79,0,0,4,0],[80,0,0,1,0],[82,0,0,2,0],[84,0,0,1,0],[86,0,0,3,0],[87,0,0,1,2],[88,0,0,1,0],[91,0,0,2,0],[93,0,0,2,0],[94,0,0,1,3],[98,0,0,1,0],[106,0,0,1,0],[109,0,0,1,0],[124,0,0,1,0],[129,0,0,1,0],[133,0,0,1,0],[139,0,0,1,0],[148,1,1,2,0],[149,1,1,5,0],[150,1,1,2,3],[151,1,2,3,3],[152,1,1,2,1],[153,1,1,1,1],[154,1,1,1,3],[155,1,1,1,1],[156,1,1,1,0],[157,1,1,2,0]],"llms":[[0,0,0,1,0],[9,0,0,1,0],[11,0,0,0,3],[12,0,0,1,0],[16,0,0,0,2],[19,0,0,3,0],[20,0,0,1,3],[24,0,0,1,0],[27,0,1,4,0],[28,0,0,2,0],[37,0,0,0,2],[38,0,0,1,0],[40,0,0,1,0],[41,0,0,2,0],[42,0,0,1,0],[44,0,0,2,1],[46,0,0,2,0],[47,0,0,2,0],[48,0,0,2,3],[49,0,0,4,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,3,0],[54,0,0,4,0],[55,0,0,1,0],[56,0,0,3,1],[57,0,0,3,0],[66,0,0,0,2],[67,0,0,4,0],[68,0,0,6,0],[69,0,0,1,0],[70,0,0,2,1],[71,0,0,1,0],[72,0,0,4,0],[74,0,0,2,3],[75,0,0,1,0],[76,0,0,4,0],[77,0,0,1,0],[78,0,0,1,0],[79,0,0,4,0],[80,0,0,2,0],[82,0,0,2,0],[86,0,0,3,0],[87,0,0,2,4],[88,0,0,1,0],[91,0,0,4,0],[93,0,0,2,0],[94,0,0,0,3],[95,0,0,1,0],[105,0,0,2,0],[106,0,0,8,0],[107,0,0,13,0],[108,0,0,7,0],[109,0,0,5,2],[110,0,0,3,0],[111,0,0,2,1],[123,0,0,3,0],[124,0,0,5,0],[125,0,1,1,0],[126,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,3,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,3,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,3,0],[140,0,0,1,0],[146,0,0,1,0]],"full":[[0,0,0,1,0],[9,0,0,1,0],[11,0,0,0,1],[19,0,0,1,0],[22,0,0,2,0],[23,0,0,1,0],[28,0,0,1,0],[30,0,0,1,0],[37,0,0,0,1],[39,0,0,1,0],[41,0,0,1,0],[44,0,0,1,0],[46,0,0,1,0],[48,0,0,0,1],[49,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[57,0,0,1,0],[59,0,0,1,0],[66,0,0,0,1],[67,0,0,2,0],[68,0,0,3,0],[72,0,0,2,0],[74,0,0,0,1],[76,0,0,1,0],[80,0,0,1,0],[82,0,0,1,0],[86,0,0,1,0],[87,0,0,1,1],[88,0,0,1,0],[90,0,0,1,0],[91,0,0,2,0],[93,0,0,1,0],[94,0,0,0,1],[96,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0],[106,0,0,6,0],[107,0,0,10,0],[108,0,0,5,0],[109,0,0,3,1],[110,0,0,2,0],[111,0,0,1,0],[118,0,0,1,0],[123,0,0,1,0],[124,0,0,2,0],[129,0,0,1,0],[133,0,0,1,0],[137,0,0,1,0],[139,0,0,1,0],[146,0,0,1,0]],"txt":[[0,0,0,1,0],[9,0,0,1,0],[11,0,0,0,3],[16,0,0,0,2],[19,0,0,3,0],[20,0,0,1,1],[24,0,0,1,0],[27,0,1,4,0],[28,0,0,2,0],[37,0,0,0,2],[38,0,0,1,0],[40,0,0,1,0],[41,0,0,3,0],[42,0,0,1,0],[44,0,0,3,1],[46,0,0,3,0],[47,0,0,4,0],[48,0,0,3,5],[49,0,0,5,1],[50,0,0,2,0],[51,0,0,2,0],[52,0,0,3,0],[53,0,0,5,0],[54,0,1,6,2],[55,0,0,2,0],[56,0,0,4,1],[57,0,0,6,0],[66,0,0,0,2],[67,0,0,5,0],[68,0,0,6,0],[69,0,0,2,0],[70,0,0,2,1],[71,0,0,1,0],[72,0,0,4,0],[74,0,0,2,3],[75,0,0,1,0],[76,0,0,4,0],[77,0,0,1,0],[78,0,0,1,0],[79,0,0,4,0],[80,0,0,2,0],[82,0,0,2,0],[86,0,0,4,0],[87,0,0,2,5],[88,0,0,1,0],[91,0,0,5,0],[93,0,0,2,0],[94,0,0,1,4],[95,0,0,1,0],[105,0,0,2,0],[106,0,0,8,0],[107,0,0,13,0],[108,0,0,7,0],[109,0,0,5,3],[110,0,0,3,0],[111,0,0,2,0],[123,0,0,4,0],[124,0,0,6,0],[125,0,1,1,1],[126,0,0,1,0],[127,0,0,2,1],[128,0,0,1,0],[129,0,0,4,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,3,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,3,0],[140,0,0,1,0],[146,0,0,1,0]],"why":[[1,0,1,0,0],[27,0,1,0,0],[144,0,1,0,0]],"all":[[1,0,1,0,0],[39,0,0,1,0],[44,0,0,1,0],[52,0,0,1,0],[68,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,2,0],[77,0,0,1,0],[84,0,0,1,0],[86,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[123,0,0,2,0],[124,0,0,1,0]],"interactive":[[1,0,0,1,0],[16,0,0,1,0],[66,0,0,1,0],[71,0,0,1,0],[141,0,0,1,0]],"like":[[1,0,0,1,0],[4,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[41,0,0,1,0],[47,0,1,0,0],[87,0,0,1,0],[91,0,0,1,0],[136,0,0,1,0]],"tabs":[[1,0,0,2,0],[2,0,0,1,0],[7,0,1,0,2],[66,0,0,1,0],[71,0,0,1,0],[76,0,0,1,0],[142,0,0,1,0],[151,0,0,0,1]],"callout":[[1,0,0,2,0],[2,0,0,1,0],[4,0,1,0,2],[14,0,0,2,0],[15,0,0,0,2],[17,0,0,1,0],[66,0,0,1,0],[71,0,0,1,0],[76,0,0,1,0],[142,0,0,1,0]],"render":[[1,0,0,2,0],[3,0,0,1,0],[15,0,0,0,1],[16,0,0,1,0],[50,0,0,1,0],[60,0,0,1,0],[70,0,0,0,1],[72,0,0,1,0],[101,0,0,1,0],[132,0,0,1,0]],"fine":[[1,0,0,1,0],[39,0,0,1,0],[49,0,0,1,0],[156,0,0,1,0]],"browser":[[1,0,0,1,0],[10,0,0,2,0],[42,0,0,1,0],[46,0,0,1,0],[70,0,0,0,1],[74,0,0,0,1],[87,0,0,0,1]],"but":[[1,0,0,1,0],[4,0,0,2,0],[19,0,0,2,0],[33,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[82,0,0,1,0],[87,0,0,0,1],[108,0,0,4,0],[124,0,0,1,0],[136,0,0,1,0],[138,0,0,1,0],[151,0,0,1,0]],"do":[[1,0,0,1,0],[4,0,0,1,0],[7,0,0,1,0],[41,0,0,1,0],[51,0,0,1,0],[53,0,0,1,0],[153,0,0,0,1]],"nothing":[[1,0,0,1,0],[64,0,0,1,0]],"reading":[[1,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[74,0,0,1,0],[76,0,0,1,0],[88,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[152,0,1,0,0]],"raw":[[1,0,0,1,0]],"text":[[1,0,0,1,0],[11,0,0,1,1],[16,0,0,1,0],[19,0,0,1,0],[28,0,0,0,1],[41,0,0,2,0],[42,0,0,1,0],[44,0,0,2,1],[50,0,0,0,1],[51,0,0,3,0],[56,0,0,1,1],[70,0,0,1,1],[71,0,0,1,0],[74,0,0,0,1],[87,0,0,0,4],[91,0,0,1,0],[92,0,0,2,0],[129,0,0,1,0],[131,0,0,0,1],[139,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[149,0,0,1,0],[154,0,0,1,0],[156,0,0,1,0]],"flattening":[[1,0,0,1,0],[2,0,0,1,0],[9,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[104,0,0,1,0],[115,0,0,1,0]],"converts":[[1,0,0,1,0],[38,0,0,1,0],[76,0,0,1,0]],"portable":[[1,0,0,1,0],[71,0,0,1,0],[79,0,0,1,0],[82,0,0,1,0]],"equivalent":[[1,0,0,1,0],[7,0,0,1,0],[13,0,0,1,0],[71,0,0,1,0],[96,0,0,1,0],[141,0,0,1,0]],"conversion":[[1,0,0,1,0],[6,0,0,1,1],[12,0,0,1,0],[14,0,0,1,0],[15,0,0,0,1],[19,0,0,1,0],[39,0,0,0,1],[74,0,0,1,0],[80,0,0,1,0],[82,0,0,1,0],[92,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,1,0],[102,0,0,1,0],[103,0,0,2,0],[104,0,0,1,0],[125,0,0,0,1],[126,0,0,1,0],[146,0,0,2,0],[150,0,0,1,0]],"time":[[1,0,0,1,0],[14,0,0,1,0],[25,0,0,1,0],[39,0,0,0,1],[43,0,0,1,0],[48,0,0,1,0],[72,0,0,1,0],[122,0,0,1,0],[130,0,0,1,0],[146,0,0,2,0],[148,0,0,1,0],[150,0,1,0,0]],"becomes":[[1,0,0,4,0],[18,0,0,1,0],[19,0,0,2,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[66,0,0,3,0],[157,0,0,1,0]],"blockquote":[[1,0,0,1,0],[4,0,0,1,0],[66,0,0,1,0],[71,0,0,1,0],[142,0,0,1,0]],"stack":[[1,0,0,1,0],[66,0,0,2,1],[71,0,0,1,0],[72,0,0,1,0],[80,0,0,1,0],[86,0,0,1,0],[99,0,0,1,0],[104,0,0,2,0],[115,0,0,1,0],[141,0,0,2,0],[142,0,1,2,0],[143,0,1,1,0],[144,0,0,1,0],[145,0,0,2,0],[146,0,0,1,0],[147,0,0,1,0]],"bold":[[1,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[66,0,0,1,0],[71,0,0,1,0],[142,0,0,1,0]],"headings":[[1,0,0,1,0],[7,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[66,0,0,1,0],[68,0,0,1,0],[71,0,0,3,0],[124,0,0,1,0],[149,0,0,1,0]],"one":[[1,0,0,1,0],[8,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[24,0,0,3,0],[27,0,0,1,0],[29,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,1,1,0],[39,0,0,3,0],[40,0,0,1,1],[41,0,0,1,0],[42,0,0,1,0],[43,0,0,2,0],[44,0,0,2,0],[45,0,0,1,0],[48,0,0,0,1],[52,0,0,1,0],[56,0,0,1,0],[65,0,0,2,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[70,0,0,2,0],[71,0,0,1,0],[72,0,0,2,0],[73,0,0,1,0],[74,0,0,2,0],[75,0,0,2,0],[76,0,0,2,0],[77,0,0,1,0],[80,0,0,1,0],[82,0,0,2,0],[85,0,1,0,1],[86,0,0,2,0],[93,0,0,1,0],[101,0,0,1,0],[102,0,0,1,0],[107,0,0,2,0],[124,0,0,1,0],[125,0,0,0,1],[126,0,0,0,1],[137,0,0,0,1],[144,0,0,2,0],[146,0,0,1,0],[154,0,0,2,0]],"per":[[1,0,0,1,0],[8,0,0,2,0],[24,0,0,1,0],[25,0,0,2,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[39,0,0,1,0],[54,0,0,1,0],[61,0,0,1,0],[76,0,0,1,0],[93,0,0,1,0],[99,0,0,1,0],[109,0,0,1,0],[124,0,0,1,0],[142,0,0,1,0],[146,0,0,1,0]],"tab":[[1,0,0,1,0],[2,0,0,1,0],[7,0,0,0,6],[142,0,0,1,0]],"typetable":[[1,0,0,1,0],[2,0,0,1,0],[14,0,1,1,1],[66,0,0,1,0],[76,0,0,1,0],[142,0,0,1,0],[147,0,0,1,0]],"table":[[1,0,0,1,0],[8,0,0,1,0],[14,0,0,1,0],[66,0,0,1,0],[142,0,0,2,0],[146,0,0,1,0]],"mermaid":[[1,0,0,2,0],[2,0,0,1,0],[16,0,1,1,2],[20,0,0,0,1],[26,0,0,0,1],[37,0,0,0,1],[66,0,0,0,1],[70,0,0,0,1],[74,0,0,0,1],[76,0,0,1,0],[103,0,0,1,0],[142,0,0,2,1]],"fenced":[[1,0,0,1,0],[9,0,0,1,0],[11,0,0,1,0],[16,0,0,1,0],[142,0,0,3,0],[143,0,0,3,0]],"block":[[1,0,0,1,0],[9,0,0,1,0],[16,0,0,1,0],[18,0,0,1,0],[142,0,0,2,0],[143,0,0,2,0]],"diagram":[[1,0,0,1,0],[16,0,0,1,0],[77,0,0,1,0]],"source":[[1,0,0,1,0],[15,0,0,1,1],[16,0,0,1,0],[20,0,0,1,0],[24,0,0,1,0],[34,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[43,0,1,3,0],[44,0,0,1,0],[45,0,0,1,0],[47,0,0,1,0],[58,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,2,0],[68,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,1],[75,0,0,1,0],[76,0,0,2,0],[77,0,0,1,0],[80,0,0,1,0],[96,0,0,1,0],[103,0,0,1,0],[104,0,0,1,0],[112,0,0,1,0],[123,0,0,1,0],[136,0,0,1,0],[145,0,0,1,0],[148,0,0,2,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,1,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0],[157,0,0,1,0]],"survives":[[1,0,0,1,0]],"other":[[1,0,0,1,0],[16,0,0,1,0],[49,0,0,1,0],[51,0,0,1,0],[54,0,0,1,0],[61,0,1,0,0],[66,0,0,1,0],[70,0,0,1,0],[114,0,0,1,0],[122,0,0,1,0]],"tooling":[[1,0,0,1,0],[25,0,0,1,0]],"this":[[1,0,0,1,0],[4,0,0,1,0],[6,0,0,1,1],[9,0,0,1,1],[10,0,0,1,0],[24,0,1,0,0],[25,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[33,0,0,2,0],[34,0,1,2,0],[36,0,0,1,0],[41,0,0,2,0],[43,0,0,1,0],[46,0,0,1,0],[48,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[87,0,0,1,1],[93,0,0,1,0],[101,0,0,1,0],[112,0,0,1,0],[137,0,0,0,1],[142,0,0,1,0],[145,0,0,1,0]],"means":[[1,0,0,1,0],[108,0,0,1,0],[129,0,0,1,0]],"same":[[1,0,0,1,0],[2,0,0,1,0],[6,0,0,1,0],[11,0,0,1,0],[20,0,0,1,0],[24,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[42,0,0,1,0],[46,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[58,0,0,1,0],[63,0,0,1,0],[67,0,0,1,0],[71,0,0,2,0],[86,0,0,2,0],[87,0,0,1,0],[96,0,0,1,0],[106,0,0,1,0],[115,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[136,0,0,3,0],[138,0,0,2,0],[152,0,0,1,0],[155,0,0,1,0]],"content":[[1,0,0,1,0],[4,0,0,1,1],[6,0,0,1,0],[7,0,0,3,0],[10,0,0,2,0],[12,0,0,4,0],[41,0,0,1,0],[44,0,0,2,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[51,0,0,2,0],[56,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[66,0,0,0,1],[68,0,0,3,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,0,2,0],[72,0,0,1,0],[76,0,0,1,0],[79,0,0,2,0],[82,0,0,2,0],[86,0,0,2,0],[87,0,0,1,2],[90,0,0,1,0],[93,0,0,1,0],[94,0,0,0,1],[96,0,0,1,0],[106,0,0,1,0],[115,0,1,0,0],[117,0,0,0,1],[122,0,0,2,0],[129,0,0,2,0],[131,0,0,0,3],[132,0,0,1,0],[145,0,0,1,0],[149,0,0,4,0],[150,0,0,1,1],[151,0,0,0,3],[152,0,0,0,2],[153,0,0,0,1],[154,0,0,0,1],[155,0,0,0,1]],"reaches":[[1,0,0,1,0]],"three":[[1,0,0,1,0],[18,0,0,1,0],[39,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[70,0,1,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[76,0,0,1,0],[152,0,0,1,0],[154,0,0,1,0]],"audiences":[[1,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[70,0,1,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[76,0,0,1,0]],"humans":[[1,0,0,1,0],[6,0,0,1,0],[25,0,0,1,0],[36,0,0,1,0],[37,0,0,1,1],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[70,0,0,1,1],[74,0,0,2,3],[75,0,0,1,0],[76,0,0,2,0],[77,0,0,1,0]],"without":[[1,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[19,0,0,1,0],[24,0,0,1,0],[25,0,0,1,0],[47,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[70,0,0,1,0],[95,0,0,1,0],[101,0,0,1,0],[103,0,0,1,0],[108,0,0,1,0],[127,0,0,1,0],[140,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0]],"you":[[1,0,0,1,0],[2,0,0,1,0],[14,0,0,1,0],[17,0,0,1,0],[22,0,0,1,0],[24,0,1,1,0],[25,0,0,1,0],[30,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[36,0,0,1,0],[39,0,0,2,0],[41,0,0,1,0],[44,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0],[62,0,0,1,0],[67,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,1,0,0],[79,0,0,3,0],[82,0,0,3,0],[84,0,0,1,0],[87,0,0,1,1],[89,0,0,1,0],[96,0,0,1,0],[98,0,0,1,0],[99,0,0,1,0],[101,0,0,1,0],[121,0,0,1,0],[123,0,0,1,0],[128,0,0,1,0],[134,0,0,2,0],[137,0,0,0,1],[139,0,0,1,0],[144,0,0,2,0],[147,0,0,2,0],[149,0,0,1,0],[152,0,0,2,0],[153,0,0,1,0],[155,0,0,1,0]],"maintaining":[[1,0,0,1,0]],"two":[[1,0,0,1,0],[2,0,0,1,0],[40,0,0,1,0],[54,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,1,2,0],[68,0,0,1,0],[69,0,0,1,0],[70,0,0,2,0],[71,0,0,2,0],[72,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[90,0,0,1,0],[139,0,0,1,0],[147,0,0,1,0]],"copies":[[1,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0]],"recognizes":[[2,0,0,1,0]],"these":[[2,0,0,1,0],[44,0,0,1,0],[68,0,0,1,0],[86,0,0,1,0],[99,0,0,1,0],[123,0,0,1,0],[137,0,0,0,1],[139,0,0,1,0]],"names":[[2,0,0,4,0],[17,0,0,1,0],[65,0,0,1,0],[77,0,0,1,0],[144,0,0,1,0],[151,0,0,1,0],[157,0,0,1,0]],"if":[[2,0,0,2,0],[17,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[24,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,0,1],[32,0,0,2,0],[34,0,0,1,0],[39,0,0,1,0],[41,0,0,0,1],[43,0,0,1,0],[44,0,0,1,0],[49,0,0,1,3],[50,0,0,2,1],[52,0,0,1,0],[54,0,0,1,0],[56,0,0,1,0],[72,0,0,1,0],[79,0,0,1,0],[104,0,0,1,0],[129,0,0,0,1],[131,0,0,1,0],[138,0,0,0,1],[144,0,0,1,0],[147,0,0,1,0]],"just":[[2,0,0,1,0],[34,0,0,1,0],[105,0,0,1,0],[149,0,0,1,0]],"works":[[2,0,0,1,0],[24,0,0,1,0],[38,0,0,1,0],[51,0,0,1,0],[65,1,1,0,0],[66,1,1,0,0],[67,1,1,0,0],[68,1,1,1,0],[69,1,1,0,0],[70,1,1,0,0],[71,1,1,0,0],[72,1,1,0,0],[73,1,1,0,0],[77,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[106,0,0,1,0],[123,0,0,1,0],[125,0,0,0,3],[128,0,0,1,0],[137,0,0,0,2],[151,0,0,1,0]],"accordion":[[2,0,0,1,0],[12,0,1,0,2],[142,0,0,1,0]],"accordionitem":[[2,0,0,1,0],[12,0,0,0,2]],"audience":[[2,0,0,1,0],[10,0,1,0,4],[121,0,0,0,1],[142,0,0,2,0]],"card":[[2,0,0,1,0],[5,0,0,0,1]],"cards":[[2,0,0,1,0],[5,0,1,0,2],[142,0,0,1,0]],"commandtabs":[[2,0,0,1,0],[8,0,1,0,3],[142,0,0,1,0]],"details":[[2,0,0,1,0],[12,0,0,2,1],[142,0,0,1,0]],"example":[[2,0,0,1,0],[15,0,1,1,2],[52,0,0,2,0],[125,0,1,0,0],[137,0,1,0,0],[143,0,0,1,0],[144,0,0,1,0]],"extractedtypetable":[[2,0,0,1,0],[14,0,1,1,0],[39,0,0,1,1],[142,0,0,1,0],[146,0,0,1,1]],"file":[[2,0,0,1,0],[11,0,0,0,2],[14,0,0,1,0],[15,0,0,1,0],[18,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[44,0,0,1,0],[61,0,0,1,0],[63,0,0,1,0],[68,0,0,2,0],[72,0,0,1,0],[86,0,0,2,0],[91,0,0,2,0],[99,0,0,1,0],[101,0,0,1,0],[102,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[117,0,0,0,1],[123,0,0,1,0],[124,0,0,2,0],[132,0,0,1,0],[137,0,0,0,2],[146,0,0,4,0]],"filetree":[[2,0,0,1,0],[11,0,1,0,2],[142,0,0,1,0],[143,0,0,1,0]],"folder":[[2,0,0,1,0],[11,0,0,0,2],[65,0,0,1,0],[83,0,0,2,0],[84,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[91,0,0,2,0]],"prompt":[[2,0,0,1,0],[9,0,1,4,4],[87,0,0,1,1],[142,0,0,2,0],[143,0,0,2,0],[153,0,0,1,1]],"section":[[2,0,0,1,0],[3,0,0,1,0],[20,0,0,1,0],[24,0,0,1,0],[71,0,0,1,0],[95,0,0,1,0],[106,0,0,1,0],[107,0,0,3,0],[108,0,0,1,0],[110,0,0,1,0],[120,0,0,1,0],[142,0,0,1,0],[149,0,0,1,0]],"selector":[[2,0,0,1,0]],"step":[[2,0,0,1,0],[6,0,0,1,4],[30,0,0,1,0],[39,0,0,1,0],[72,0,0,1,0],[132,0,0,2,0]],"steps":[[2,0,0,1,0],[6,0,1,0,2],[60,0,0,0,1],[76,0,0,1,0],[142,0,0,1,0]],"topicswitcher":[[2,0,0,1,0],[13,0,1,0,1],[22,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0]],"uses":[[2,0,0,1,0],[33,0,0,1,0],[60,0,0,0,2],[71,0,0,1,0],[106,0,0,1,0],[110,0,0,1,0]],"different":[[2,0,0,1,0],[34,0,0,1,0],[43,0,0,1,0],[59,0,0,1,0],[67,0,0,1,0],[70,0,0,2,0],[135,0,0,1,0]],"have":[[2,0,0,1,0],[34,0,0,1,0],[41,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[62,0,0,1,0],[89,0,0,1,0],[152,0,0,1,0]],"options":[[2,0,0,1,0],[90,0,0,0,1],[91,0,0,0,1],[96,0,0,0,1],[146,0,0,1,0],[154,0,0,1,0]],"rename":[[2,0,0,1,0]],"match":[[2,0,0,1,0],[157,0,0,1,0]],"add":[[2,0,0,1,0],[8,0,0,3,1],[15,0,0,1,0],[17,0,0,1,0],[30,0,0,1,0],[33,0,0,1,0],[39,0,0,1,0],[41,0,0,1,0],[50,0,1,1,0],[57,0,0,2,0],[76,0,0,1,0],[84,0,0,3,0],[85,0,0,1,0],[88,0,0,1,0],[92,0,0,1,0],[96,0,0,1,0],[121,0,0,1,0],[132,0,0,1,0],[145,0,0,1,0],[147,0,0,1,0],[157,0,1,1,0]],"custom":[[2,0,0,1,0],[30,0,0,1,0],[96,0,0,1,0],[98,0,0,2,0],[99,0,0,1,0],[116,0,0,3,0],[121,0,1,1,0],[144,0,0,2,0],[147,0,0,1,0]],"plugin":[[2,0,0,1,0],[17,0,0,2,0],[30,0,0,1,0],[39,0,0,2,0],[49,0,0,0,1],[66,0,0,0,1],[79,0,0,1,0],[80,0,0,1,0],[86,0,0,1,0],[98,0,0,1,0],[99,0,0,2,0],[100,0,0,1,0],[104,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,2,0],[145,0,0,1,0],[146,0,0,4,0],[147,0,1,2,0]],"that":[[2,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[25,0,0,1,0],[27,0,0,2,0],[28,0,0,1,0],[33,0,0,1,0],[34,0,0,2,0],[38,0,0,1,0],[40,0,0,1,0],[49,0,0,2,0],[51,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[58,0,0,1,0],[59,0,0,2,0],[61,0,0,1,0],[67,0,0,2,0],[68,0,0,1,0],[70,0,0,2,0],[71,0,0,3,0],[72,0,0,1,0],[74,0,0,1,0],[75,0,0,2,0],[76,0,0,1,0],[79,0,0,3,0],[82,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[93,0,0,1,0],[95,0,0,1,0],[105,0,0,1,0],[106,0,0,1,0],[107,0,0,2,0],[108,0,0,3,0],[110,0,0,1,0],[115,0,0,1,0],[117,0,0,1,0],[121,0,0,1,0],[123,0,0,1,0],[124,0,0,3,0],[125,0,0,0,2],[126,0,0,0,1],[127,0,0,1,0],[136,0,0,2,0],[137,0,0,0,1],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[154,0,0,1,0],[157,0,0,1,0]],"maps":[[2,0,0,1,0]],"back":[[2,0,0,1,0],[44,0,0,1,0],[101,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0]],"above":[[2,0,0,1,0],[14,0,0,1,1],[79,0,0,1,0],[88,0,0,1,0]],"tsx":[[2,0,0,0,1],[4,0,0,0,1],[5,0,0,0,1],[6,0,0,0,1],[7,0,0,0,1],[8,0,0,0,1],[9,0,0,0,1],[10,0,0,0,1],[11,0,0,0,1],[12,0,0,0,1],[13,0,0,0,1],[14,0,0,0,1],[15,0,0,0,3],[16,0,0,0,1]],"import":[[2,0,0,0,1],[15,0,0,0,1],[30,0,0,0,5],[39,0,0,0,2],[40,0,0,0,1],[41,0,0,0,2],[49,0,0,0,2],[50,0,0,0,2],[51,0,0,0,2],[54,0,0,0,2],[95,0,0,0,2],[99,0,0,0,1],[100,0,0,0,1],[104,0,0,0,1],[112,0,0,0,1],[116,0,0,0,1],[121,0,0,0,2],[123,0,0,0,1],[126,0,0,0,3],[127,0,0,0,1],[128,0,0,0,1],[131,0,0,0,2],[136,0,0,0,1],[138,0,0,2,1],[141,0,0,0,1],[142,0,0,1,0],[146,0,0,0,1],[150,0,0,0,1],[151,0,0,0,3],[152,0,0,0,1],[153,0,0,0,1],[154,0,0,0,3],[155,0,0,0,1]],"mdxcomponents":[[2,0,0,0,2],[15,0,0,0,1]],"const":[[2,0,0,0,1],[30,0,0,0,2],[31,0,0,0,2],[39,0,0,0,4],[41,0,0,0,1],[49,0,0,0,2],[50,0,0,0,3],[54,0,0,0,2],[101,0,0,0,1],[116,0,0,0,1],[121,0,0,0,1],[127,0,0,0,1],[129,0,0,0,1],[130,0,0,0,2],[131,0,0,0,1],[138,0,0,0,2],[140,0,0,0,1],[146,0,0,0,1],[151,0,0,0,2],[152,0,0,0,3],[153,0,0,0,1],[154,0,0,0,1],[155,0,0,0,1]],"reference":[[3,0,1,0,0],[4,0,1,0,0],[5,0,1,0,1],[6,0,1,0,0],[7,0,1,0,0],[8,0,1,0,0],[9,0,1,0,0],[10,0,1,0,0],[11,0,1,0,0],[12,0,1,1,1],[13,0,1,0,0],[14,0,1,0,0],[15,0,1,0,0],[16,0,1,0,0],[20,0,0,0,1],[23,0,0,1,0],[28,0,0,0,1],[35,0,0,1,0],[45,0,0,1,0],[52,0,0,1,0],[59,0,0,1,0],[73,0,0,1,0],[96,0,0,1,0],[106,0,0,1,0],[112,0,0,1,0],[125,0,0,0,2],[137,0,0,0,2]],"below":[[3,0,0,1,0],[116,0,0,1,0],[137,0,0,0,1]],"shows":[[3,0,0,1,0],[11,0,0,1,0]],"authored":[[3,0,0,1,0],[16,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[87,0,0,1,0]],"live":[[3,0,0,1,0],[7,0,0,1,0],[38,0,0,1,0],[52,0,0,1,0],[54,0,1,0,0],[111,0,0,1,0],[130,0,0,1,0],[132,0,0,1,0]],"wraps":[[4,0,0,1,0]],"supporting":[[4,0,0,2,0],[12,0,0,1,1],[25,0,0,1,0],[70,0,0,1,0]],"context":[[4,0,0,2,0],[63,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[91,0,0,1,0],[105,0,0,1,0],[106,0,0,2,0],[108,0,0,3,0],[109,0,0,1,0],[124,0,0,1,0],[131,0,0,0,1],[152,0,0,1,0],[153,0,0,2,1]],"warnings":[[4,0,0,2,0],[60,0,0,2,1],[62,0,0,0,1],[96,0,0,3,0],[117,0,0,0,1],[121,0,0,1,0]],"tips":[[4,0,0,2,0]],"variants":[[4,0,0,2,0],[106,0,0,1,0],[110,0,0,1,0],[134,0,0,1,0]],"change":[[4,0,0,2,0]],"identically":[[4,0,0,2,0],[82,0,0,1,0]],"info":[[4,0,0,1,1],[14,0,0,1,1]],"heads":[[4,0,0,1,1]],"up":[[4,0,0,1,1],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0]],"callouts":[[4,0,0,1,0]],"wrap":[[4,0,0,1,0]],"flattens":[[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[71,0,0,2,0],[99,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0]],"them":[[4,0,0,1,0],[12,0,0,1,1],[22,0,0,1,0],[29,0,0,1,0],[33,0,0,1,0],[49,0,0,2,0],[52,0,0,1,0],[64,0,0,1,0],[88,0,0,1,0],[94,0,0,1,0],[104,0,0,1,0],[118,0,0,1,0],[137,0,0,0,1],[150,0,0,1,0]],"blockquotes":[[4,0,0,1,0]],"still":[[4,0,0,1,0],[12,0,0,1,0],[19,0,0,1,0],[23,0,0,1,0],[79,0,0,1,0],[109,0,0,1,0],[115,0,0,1,0],[124,0,0,1,0],[151,0,0,1,0]],"see":[[4,0,0,1,0],[19,0,0,1,0],[23,0,0,1,0],[34,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[43,0,0,1,0],[46,0,0,1,0],[52,0,0,1,0],[59,0,0,1,0],[66,0,0,2,0],[70,0,0,1,0],[71,0,0,1,0],[77,0,0,1,0],[81,0,0,1,0],[85,0,0,1,0],[87,0,0,3,0],[88,0,0,1,0],[93,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[104,0,0,1,0],[115,0,0,1,0],[122,0,0,1,0],[124,0,0,1,0],[132,0,0,1,0],[137,0,0,1,0]],"warning":[[4,0,0,2,0],[60,0,0,1,0],[96,0,0,1,0]],"don":[[4,0,0,1,0],[22,0,0,1,0],[28,0,0,1,0],[34,0,0,2,0],[59,0,0,1,0],[70,0,0,1,0],[74,0,0,1,0],[118,0,0,1,0],[134,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0],[154,0,0,1,0]],"success":[[4,0,0,1,0],[15,0,0,0,1],[92,0,0,1,0]],"error":[[4,0,0,1,0],[23,0,0,2,0],[31,0,0,0,1],[43,0,0,0,1],[59,0,0,1,0],[60,0,0,1,1],[61,0,0,0,1],[63,0,0,0,1],[64,0,0,1,0],[92,0,0,3,0],[94,0,0,1,0],[96,0,0,2,0],[114,0,0,6,0],[115,0,0,3,0],[116,0,0,1,1],[117,0,0,0,2],[121,0,0,1,0],[135,0,0,1,0],[138,0,0,0,1],[157,0,0,1,0]],"tip":[[4,0,0,1,0],[52,0,0,1,0]],"title":[[4,0,0,0,1],[5,0,0,0,1],[6,0,0,0,2],[9,0,0,0,1],[12,0,0,0,1],[14,0,0,1,1],[15,0,0,0,2],[19,0,0,1,1],[21,0,0,0,3],[22,0,0,1,0],[40,0,0,0,2],[50,0,0,1,0],[66,0,0,0,1],[85,0,0,1,1],[94,0,0,0,1],[95,0,0,1,0],[103,0,0,1,0],[118,0,0,2,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,0,1],[131,0,0,0,2]],"variant":[[4,0,0,0,1],[7,0,0,1,0],[14,0,0,1,1],[15,0,0,0,1],[106,0,0,3,0],[108,0,0,2,0]],"body":[[4,0,0,0,1],[9,0,0,1,0],[14,0,0,1,1],[19,0,0,1,0],[41,0,0,0,1],[51,0,0,1,0],[56,0,0,1,0],[66,0,0,0,1],[68,0,0,1,0],[69,0,0,1,0],[71,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0],[143,0,0,1,0],[149,0,0,1,0]],"goes":[[4,0,0,0,1],[51,0,0,1,0],[52,0,0,1,0]],"here":[[4,0,0,0,1],[75,0,0,1,0],[77,0,0,1,0],[89,0,0,1,0]],"grid":[[5,0,0,1,0]],"short":[[5,0,0,1,0],[22,0,0,1,0],[38,0,0,0,1],[40,0,0,0,1],[79,0,1,0,0]],"linked":[[5,0,0,1,0]],"entry":[[5,0,0,1,0],[19,0,0,1,0],[50,0,0,1,2],[55,0,0,1,0],[56,0,0,1,0],[84,0,0,1,0],[98,0,1,1,0],[99,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[135,0,0,1,0],[146,0,0,1,0],[148,0,0,1,0],[154,0,1,0,0]],"points":[[5,0,0,1,0],[23,0,0,1,0],[27,0,0,1,0],[84,0,0,1,0],[98,0,1,1,0],[115,0,0,1,0],[124,0,0,1,0],[125,0,0,0,1],[130,0,0,0,1],[148,0,0,1,0],[154,0,1,0,0]],"bullet":[[5,0,0,1,0],[40,0,0,0,2]],"list":[[5,0,0,1,0],[6,0,0,2,1],[29,0,0,1,0],[32,0,0,1,0],[59,0,0,1,0],[96,0,0,1,0],[137,0,0,0,1],[142,0,0,3,0],[143,0,0,1,0]],"links":[[5,0,0,1,0],[23,0,0,1,0],[41,0,0,2,0],[47,0,0,2,0],[49,0,0,1,0],[50,0,0,1,0],[54,0,0,1,0],[56,0,0,2,0],[57,0,0,1,0],[59,0,0,2,0],[68,0,0,2,0],[70,0,0,1,0],[72,0,0,1,0],[80,0,0,1,0],[96,0,0,1,0],[106,0,0,3,0],[107,0,0,7,0],[108,0,0,3,0],[109,0,0,1,0],[115,0,0,2,0],[123,0,0,1,0],[124,0,0,4,0],[131,0,0,1,1],[137,0,0,1,0],[152,0,0,1,0],[154,0,0,1,0]],"convert":[[5,0,0,1,2],[19,0,0,1,0],[30,0,0,0,1],[36,0,0,1,0],[39,0,0,2,5],[71,0,0,1,0],[72,0,0,1,0],[84,0,0,1,0],[86,0,0,1,0],[91,0,0,1,0],[98,0,0,1,0],[99,1,1,2,1],[100,1,1,2,0],[101,1,1,2,0],[102,1,1,2,0],[103,1,1,1,0],[104,1,1,1,0],[126,0,0,0,1]],"description":[[5,0,0,0,1],[9,0,0,0,1],[14,0,0,1,2],[15,0,0,0,1],[19,0,0,1,1],[22,0,0,1,0],[50,0,0,1,0],[66,0,0,0,1],[67,0,0,1,0],[68,0,0,1,0],[71,0,0,1,0],[85,0,0,0,1],[91,0,0,2,0],[96,0,0,1,0],[100,0,0,1,0],[103,0,0,1,0],[116,0,0,1,0],[118,0,0,1,0],[119,0,0,1,0],[131,0,0,0,2],[136,0,0,1,0]],"turn":[[5,0,0,0,1],[128,0,0,1,0]],"friendly":[[5,0,0,0,1],[70,0,0,1,0]],"href":[[5,0,0,0,1],[13,0,0,0,2],[50,0,0,0,2],[131,0,0,0,2]],"numbered":[[6,0,0,1,0]],"walkthroughs":[[6,0,0,1,0]],"ordered":[[6,0,0,1,0],[142,0,0,1,0]],"titles":[[6,0,0,1,0],[48,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[71,0,0,1,0],[95,0,0,0,1],[149,0,0,1,0]],"author":[[6,0,0,1,1],[22,0,0,1,0],[40,0,0,1,0],[76,0,0,1,0],[85,0,1,0,0],[118,0,0,1,0]],"authoring":[[6,0,0,1,0],[20,0,0,0,2],[106,0,0,1,0]],"affordances":[[6,0,0,1,0]],"run":[[6,0,0,1,1],[8,0,0,2,1],[25,0,0,1,0],[30,0,0,3,0],[32,0,0,1,1],[36,0,0,1,0],[38,0,1,0,0],[39,0,0,0,7],[41,0,0,1,0],[42,0,0,1,0],[43,0,0,1,1],[48,0,0,1,0],[56,0,0,2,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,2],[61,0,0,1,0],[62,0,0,1,0],[63,0,1,2,0],[64,0,0,1,0],[72,0,0,1,0],[74,0,0,0,6],[76,0,0,1,0],[82,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[95,0,0,1,0],[105,0,0,1,0],[111,0,1,0,2],[112,0,0,1,0],[122,0,0,2,0],[125,0,0,0,1],[126,0,0,1,0],[131,0,0,0,2],[137,0,0,0,1],[139,0,0,1,0],[144,0,0,2,0],[153,0,0,0,1]],"generate":[[6,0,0,1,1],[25,0,0,1,0],[26,0,0,0,1],[28,0,1,0,1],[29,0,0,0,1],[30,0,0,1,2],[32,0,0,0,1],[36,0,0,1,0],[37,0,0,0,1],[38,0,0,1,1],[39,0,0,0,2],[43,0,0,1,1],[48,0,1,0,1],[57,0,0,1,0],[58,0,0,1,0],[63,0,1,2,1],[67,0,0,3,0],[72,0,0,2,0],[74,0,0,0,2],[76,0,0,1,0],[86,0,1,1,1],[88,0,0,0,1],[90,0,0,2,0],[91,0,1,1,1],[92,0,1,1,0],[93,0,1,1,1],[94,0,1,1,0],[95,0,1,1,0],[96,0,0,1,0],[97,0,0,1,1],[98,0,0,1,0],[99,0,0,1,0],[122,0,0,1,0],[123,0,0,3,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[150,0,0,1,0]],"writes":[[6,0,0,1,1],[28,0,0,1,0],[38,0,0,1,0],[43,0,0,1,0],[48,0,0,1,0],[67,0,0,2,0],[76,0,0,1,0],[86,0,0,4,0],[88,0,0,1,0],[91,0,0,1,0],[93,0,0,1,0],[127,0,0,1,0],[136,0,0,1,0],[150,0,0,1,0],[155,0,0,1,0]],"flattened":[[6,0,0,1,1],[12,0,0,1,0],[44,0,0,1,0],[66,0,0,2,0],[68,0,0,1,0],[86,0,0,2,0],[87,0,0,1,0],[107,0,0,1,0],[124,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0]],"public":[[6,0,0,1,0],[7,0,0,1,0],[9,0,0,0,2],[11,0,0,0,2],[34,0,0,1,0],[37,0,0,0,1],[38,0,0,0,1],[39,0,0,0,1],[41,0,0,0,2],[43,0,0,0,1],[44,0,0,8,0],[48,0,0,2,2],[49,0,0,1,1],[50,0,0,0,1],[51,0,0,1,2],[54,0,0,0,1],[55,0,0,1,0],[63,0,0,0,1],[67,0,0,2,0],[70,0,0,0,1],[72,0,0,1,0],[74,0,0,0,1],[82,0,0,1,0],[86,0,0,9,1],[87,0,0,2,4],[91,0,0,1,0],[94,0,0,0,10],[95,0,0,0,1],[100,0,0,0,1],[102,0,0,0,1],[108,0,0,1,0],[109,0,0,1,1],[110,0,0,1,0],[117,0,0,1,0],[126,0,0,0,4],[127,0,0,0,4],[129,0,0,1,1],[131,0,0,0,1],[134,0,0,1,0],[150,0,0,0,1],[151,0,0,0,2]],"serve":[[6,0,0,1,0],[7,0,0,1,0],[41,0,0,1,0],[49,0,1,1,0],[52,0,0,1,0],[54,0,1,0,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[76,0,0,1,0]],"both":[[6,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[34,0,0,1,0],[42,0,0,1,0],[49,0,0,1,0],[52,0,0,1,0],[56,0,0,1,0],[63,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[70,0,0,1,0],[86,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[105,0,0,1,0],[108,0,0,1,0],[131,0,0,1,0]],"formats":[[6,0,0,1,0],[71,0,0,1,0],[106,0,0,1,0]],"html":[[6,0,0,1,0],[9,0,0,0,2],[37,0,0,0,2],[41,0,0,4,0],[42,0,0,1,0],[44,0,0,2,0],[46,0,0,1,0],[47,0,0,3,0],[50,0,0,2,1],[51,0,0,1,0],[52,0,0,2,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,2,0],[70,0,0,1,1],[76,0,0,1,0],[87,0,0,0,2],[129,0,0,1,0],[134,0,0,1,0]],"md":[[6,0,0,1,0],[7,0,0,2,0],[9,0,0,2,0],[11,0,0,0,2],[17,0,0,1,0],[20,0,0,1,1],[24,0,0,1,0],[25,0,0,4,0],[26,0,0,2,4],[27,0,1,7,0],[28,0,0,6,4],[29,0,0,2,0],[30,0,0,3,3],[31,0,0,2,0],[32,0,0,6,0],[33,0,0,4,2],[34,0,0,2,0],[35,0,0,2,0],[37,0,0,0,1],[41,0,0,2,0],[44,0,0,3,0],[47,0,0,2,0],[48,0,0,0,3],[49,0,0,0,2],[50,0,0,0,1],[51,0,0,2,0],[52,0,0,2,0],[53,0,0,1,0],[54,0,0,0,2],[56,0,0,1,2],[57,0,0,3,0],[66,0,0,0,8],[67,0,0,4,0],[68,0,0,6,0],[69,0,0,2,0],[70,0,0,5,1],[71,0,0,2,0],[72,0,0,3,0],[74,0,0,2,4],[75,0,0,1,0],[76,0,0,4,0],[77,0,0,1,0],[79,0,0,1,0],[82,0,0,1,0],[86,0,0,2,0],[87,0,0,1,4],[88,0,0,2,0],[91,0,0,5,0],[93,0,0,2,0],[94,0,0,1,1],[100,0,0,1,0],[102,0,0,0,1],[103,0,0,1,0],[105,0,0,1,0],[106,0,0,6,0],[107,0,0,1,0],[108,0,0,2,0],[109,0,0,2,1],[110,0,0,1,0],[111,0,0,2,0],[116,0,0,1,0],[123,0,0,4,0],[124,0,0,3,0],[125,0,0,1,5],[126,0,0,1,0],[127,0,0,2,1],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,1],[132,0,0,4,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,7,0],[137,0,0,2,4],[138,0,0,1,0],[139,0,0,2,0],[140,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0]],"url":[[6,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[27,0,0,1,0],[38,0,0,0,1],[39,0,0,1,0],[41,0,0,1,3],[42,0,0,1,0],[47,0,0,1,0],[48,0,0,0,1],[49,0,0,1,9],[50,0,0,1,0],[51,0,0,1,4],[54,0,0,0,5],[56,0,0,4,0],[57,0,0,1,0],[70,0,0,1,0],[86,0,0,0,1],[91,0,0,3,0],[93,0,0,1,0],[98,0,0,1,0],[115,0,0,1,0],[118,0,0,1,0],[122,0,0,1,0],[129,0,0,1,3],[130,0,0,0,4],[132,0,0,1,0],[136,0,0,2,0],[140,0,1,2,3]],"negotiated":[[6,0,0,1,0]],"accept":[[6,0,0,1,0],[7,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[44,0,0,0,1],[51,0,0,3,0],[55,0,0,1,0],[56,0,0,0,1],[57,0,0,1,0],[70,0,0,1,1],[71,0,0,1,0],[74,0,0,0,1],[79,0,0,1,0],[87,0,0,0,2],[129,0,0,1,0],[132,0,0,2,0],[133,0,0,1,0],[134,0,0,2,0]],"header":[[6,0,0,1,0],[7,0,0,1,0],[10,0,0,0,1],[55,0,0,2,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0]],"group":[[7,0,0,1,0],[18,0,0,1,0],[19,0,0,4,1],[20,0,0,7,4],[21,0,0,2,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,2,0],[31,0,0,0,1],[40,0,0,1,0],[44,0,0,1,0],[48,0,0,1,0],[66,0,0,0,3],[69,0,0,1,0],[71,0,0,3,0],[72,0,0,2,0],[76,0,0,1,0],[85,0,0,1,1],[86,0,0,2,0],[92,0,0,1,0],[93,0,0,1,0],[95,0,1,1,0],[106,0,0,4,0],[107,0,0,10,0],[108,0,0,1,0],[109,0,0,1,0],[118,0,0,1,0],[124,0,0,3,0],[127,0,0,1,0],[136,0,0,2,0],[138,0,0,2,1],[139,0,1,1,0]],"followed":[[7,0,0,1,0],[108,0,0,1,0]],"need":[[7,0,0,1,0],[30,0,0,1,0],[33,0,0,1,0],[49,0,0,1,0],[65,0,0,1,0],[74,0,0,1,0],[79,0,0,1,0],[84,0,0,1,0],[96,0,0,1,0],[98,0,0,1,0],[99,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[127,0,0,1,0],[137,0,0,0,1],[144,0,0,1,0],[152,0,0,1,0]],"jsx":[[7,0,0,1,0],[11,0,0,1,0],[66,0,0,1,0],[142,0,0,1,0],[146,0,0,1,0]],"aware":[[7,0,0,1,0],[8,0,0,1,0],[71,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[149,0,0,1,0]],"renderer":[[7,0,0,1,0]],"read":[[7,0,0,1,0],[10,0,0,0,1],[11,0,0,1,0],[13,0,0,1,0],[17,0,0,1,0],[25,0,0,1,0],[26,0,0,0,1],[27,0,0,1,0],[33,0,0,0,1],[34,0,0,1,0],[40,0,0,1,0],[43,0,0,1,0],[46,0,0,1,0],[51,0,0,0,1],[67,0,0,1,0],[68,0,0,1,0],[70,0,0,1,0],[74,0,0,0,1],[77,0,0,2,0],[105,0,0,1,0],[106,0,0,1,0],[126,0,0,1,0],[137,0,0,0,1],[139,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0],[149,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0]],"every":[[7,0,0,1,0],[12,0,0,1,0],[18,0,0,1,0],[25,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[40,0,0,1,0],[44,0,0,1,0],[55,0,0,1,0],[57,0,0,2,0],[65,0,0,2,0],[66,0,0,1,0],[68,0,0,1,0],[72,0,0,2,0],[74,0,0,1,0],[77,0,0,1,0],[82,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0],[93,0,0,1,0],[95,0,0,1,0],[98,0,0,1,0],[106,0,0,2,0],[107,0,0,1,0],[114,0,0,1,0],[124,0,0,1,0],[125,0,0,0,1],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,2,0],[137,0,0,0,1],[150,0,0,1,0]],"tanstack":[[7,0,0,1,2],[36,0,0,1,0],[51,0,0,1,0],[52,0,0,2,0],[67,0,0,1,0],[74,0,0,1,0],[79,0,0,1,0],[131,0,0,1,1],[154,0,0,1,2],[155,0,0,1,0]],"start":[[7,0,0,1,2],[36,0,0,1,0],[44,0,0,1,0],[47,0,0,1,0],[51,0,0,1,0],[52,0,0,2,0],[56,0,0,1,0],[67,0,0,1,0],[74,0,0,1,0],[79,0,0,1,0],[106,0,0,1,0],[157,0,0,2,0]],"vite":[[7,0,0,2,2],[39,0,0,1,1],[49,0,0,0,1],[67,0,0,1,0],[71,0,0,1,0]],"middleware":[[7,0,0,4,0],[49,0,0,0,2],[51,0,0,2,0],[52,0,0,10,0],[53,0,0,2,0],[71,0,0,2,0]],"dev":[[7,0,0,1,0],[28,0,0,1,0],[38,0,0,0,1],[39,0,0,1,0],[44,0,0,1,0],[48,0,0,0,1],[50,0,0,0,2],[52,0,0,1,0],[56,0,0,1,0],[86,0,0,0,1],[95,0,0,0,1],[126,0,0,0,3],[127,0,0,0,2],[131,0,0,0,2],[135,0,0,1,0],[138,0,0,0,1],[140,0,0,0,1],[150,0,0,0,1]],"preview":[[7,0,0,1,0],[15,0,0,1,1],[49,0,0,1,0],[52,0,0,1,0],[56,0,0,1,0],[130,0,0,1,0]],"nitro":[[7,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0]],"prod":[[7,0,0,1,0],[52,0,0,1,0],[130,0,0,1,0]],"negotiate":[[7,0,0,1,0]],"next":[[7,0,0,1,2],[33,0,0,2,0],[35,0,1,0,0],[36,0,0,1,0],[39,0,0,1,0],[43,0,0,1,0],[45,0,1,0,0],[49,0,0,0,1],[52,0,0,1,0],[67,0,0,1,0],[71,0,0,1,0],[73,0,1,0,0],[74,0,0,1,0],[77,0,1,0,0],[79,0,0,1,0],[82,0,0,1,0],[89,0,1,0,0],[131,0,0,1,0]],"js":[[7,0,0,1,2],[33,0,0,1,0],[36,0,0,1,0],[49,0,0,0,1],[52,0,0,1,0],[67,0,0,1,0],[71,0,0,1,0],[74,0,0,1,0],[79,0,0,1,0],[131,0,0,1,0]],"wire":[[7,0,0,1,0],[9,0,0,0,2],[19,0,0,0,1],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,1,1,0],[40,0,0,1,0],[41,0,0,2,0],[42,0,0,1,0],[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[58,0,0,1,0],[67,0,0,1,0],[87,0,0,1,1],[89,0,0,1,0]],"negotiation":[[7,0,0,1,0],[51,0,0,1,0],[68,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[76,0,0,1,0],[79,0,0,1,0],[129,0,0,1,0]],"ts":[[7,0,0,1,0],[19,0,0,1,0],[20,0,0,2,1],[21,0,0,0,1],[30,0,0,1,2],[39,0,0,0,5],[40,0,0,1,1],[41,0,0,0,1],[49,0,0,0,2],[50,0,0,0,1],[51,0,0,1,1],[52,0,0,5,0],[54,0,0,0,1],[95,0,0,2,1],[99,0,0,0,1],[100,0,0,0,1],[101,0,0,0,1],[102,0,0,0,1],[104,0,0,0,1],[112,0,0,0,1],[116,0,0,0,1],[117,0,0,0,1],[121,0,0,0,1],[123,0,0,0,1],[126,0,0,0,1],[127,0,0,0,2],[128,0,0,0,1],[129,0,0,0,1],[130,0,0,0,1],[131,0,0,0,1],[133,0,0,1,0],[136,0,0,1,1],[138,0,0,0,2],[139,0,0,1,0],[140,0,0,0,1],[141,0,0,0,1],[145,0,0,0,1],[146,0,0,0,2],[150,0,0,0,1],[151,0,0,0,2],[152,0,0,0,1],[153,0,0,0,1],[154,0,0,0,2],[155,0,0,0,1]],"route":[[7,0,0,1,0],[9,0,0,0,2],[23,0,0,1,0],[41,0,0,1,0],[44,0,0,1,0],[51,0,0,2,0],[52,0,0,3,0],[71,0,0,2,0],[79,0,0,1,0],[87,0,0,0,1],[115,0,0,1,0],[129,0,0,1,0]],"handler":[[7,0,0,1,0],[52,0,0,3,0]],"configureserver":[[7,0,0,1,0]],"enough":[[7,0,0,1,0],[68,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[124,0,0,1,0]],"static":[[7,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[49,0,0,2,0],[51,0,0,0,1],[52,0,0,4,0],[53,0,0,2,0],[54,0,0,2,0],[74,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[138,0,0,1,0],[148,0,0,2,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0],[157,0,0,2,0]],"deployments":[[7,0,0,1,0]],"files":[[7,0,0,1,0],[17,0,0,1,0],[25,0,0,2,0],[26,0,0,1,0],[27,0,0,2,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,2,1],[31,0,0,1,0],[32,0,0,3,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,2,0],[37,0,0,0,1],[38,0,0,1,0],[39,0,0,0,1],[41,0,0,4,0],[42,0,0,2,0],[46,0,0,2,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,1,2,0],[52,0,0,1,0],[54,0,0,2,0],[56,0,0,1,0],[62,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,3,0],[72,0,0,2,0],[76,0,0,2,0],[82,0,0,1,0],[86,0,0,2,0],[94,0,0,2,1],[95,0,0,1,0],[100,0,0,1,0],[105,0,0,2,0],[106,0,0,3,0],[107,0,0,1,0],[109,0,0,1,0],[116,0,0,1,0],[123,1,1,1,0],[124,1,1,1,0],[125,1,1,0,0],[126,1,1,0,0],[127,1,1,1,0],[128,1,1,0,0],[129,1,1,0,0],[130,1,1,0,0],[131,1,1,0,0],[132,1,1,0,0],[133,1,1,0,0],[134,1,1,0,0],[135,1,1,0,0],[136,1,1,1,0],[137,1,1,1,0],[138,1,1,2,0],[139,1,1,0,0],[140,1,1,0,0]],"items":[[7,0,0,0,1],[13,0,0,0,1]],"value":[[7,0,0,0,3],[13,0,0,0,2],[24,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0]],"package":[[8,0,0,4,0],[21,0,0,1,2],[25,1,1,2,0],[26,1,1,1,0],[27,1,1,2,0],[28,1,2,3,4],[29,1,2,3,0],[30,1,1,1,4],[31,1,1,1,2],[32,1,1,2,2],[33,1,1,3,3],[34,1,1,2,0],[35,1,1,1,0],[43,0,0,3,4],[67,0,0,1,0],[68,0,0,2,0],[70,0,0,3,0],[72,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[79,0,0,1,0],[84,0,0,1,0],[88,0,0,4,1],[89,0,0,1,0],[91,0,0,3,0],[93,0,0,1,1],[106,0,0,2,0],[136,0,0,1,1],[137,0,0,1,1],[140,0,0,2,0]],"manager":[[8,0,0,5,0],[84,0,0,1,0]],"install":[[8,0,0,3,2],[25,0,0,1,0],[26,0,0,0,4],[28,0,0,1,0],[60,0,0,0,1],[83,0,0,1,0],[84,0,1,2,0],[85,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[125,0,0,0,1],[131,0,0,0,2],[137,0,0,0,1],[139,0,0,1,0],[151,0,0,0,1]],"commands":[[8,0,0,3,1],[90,0,0,1,0],[155,0,0,2,0]],"row":[[8,0,0,1,0],[14,0,0,1,0],[146,0,0,1,0]],"mode":[[8,0,0,3,2],[27,0,0,2,0],[48,0,0,1,0],[60,0,0,1,0],[66,0,0,0,3],[67,0,0,2,0],[68,0,0,7,0],[69,0,0,2,0],[70,0,0,0,2],[72,0,0,2,0],[79,0,0,1,0],[91,0,0,4,0],[93,0,1,0,0],[94,0,0,4,1],[120,0,0,1,0],[124,0,0,1,0]],"command":[[8,0,0,4,2],[38,0,0,1,0],[72,0,0,1,0],[80,0,0,1,0],[84,0,0,1,0],[90,0,0,1,1],[98,0,0,1,0]],"name":[[8,0,0,2,0],[11,0,0,0,3],[22,0,0,1,0],[26,0,0,0,4],[28,0,0,0,1],[29,0,0,0,1],[38,0,0,0,1],[40,0,0,0,1],[48,0,0,0,1],[60,0,0,0,1],[74,0,0,0,1],[91,0,0,4,0],[94,0,0,0,1],[126,0,0,0,2],[131,0,0,0,1],[146,0,0,1,1]],"cli":[[8,0,0,1,0],[22,0,0,1,0],[25,0,0,1,0],[26,0,0,0,3],[28,0,0,0,1],[34,0,0,1,0],[35,0,0,1,0],[37,0,0,0,4],[39,0,0,1,0],[62,0,0,1,0],[73,0,0,1,0],[80,0,0,1,0],[84,0,0,1,0],[86,0,0,1,0],[90,1,1,0,0],[91,1,1,0,0],[92,1,1,1,0],[93,1,1,0,0],[94,1,1,0,0],[95,1,1,1,0],[96,1,1,1,0],[97,1,1,0,0],[98,1,1,2,0],[99,0,0,1,0],[106,0,0,1,0],[112,0,0,3,0],[113,0,0,1,0],[114,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[117,0,0,1,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[125,0,0,0,3],[137,0,0,0,2]],"create":[[8,0,0,1,0],[85,0,0,1,0]],"starter":[[8,0,0,1,0],[151,0,0,0,2]],"prop":[[8,0,0,1,0],[14,0,0,1,0]],"exact":[[8,0,0,1,0],[66,0,0,1,0],[151,0,0,2,0],[157,0,0,2,0]],"overrides":[[8,0,0,1,0],[96,0,0,2,0],[129,0,0,1,0]],"npm":[[8,0,0,3,2],[25,0,0,2,0],[26,0,0,1,2],[27,0,0,2,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[32,0,0,2,1],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[43,0,0,1,1],[67,0,0,1,0],[68,0,0,2,0],[79,0,0,1,0],[82,0,0,1,0],[84,0,0,2,0],[88,0,0,1,0],[93,0,0,1,0],[123,0,0,2,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,2,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0]],"pnpm":[[8,0,0,4,3],[84,0,0,2,0]],"yarn":[[8,0,0,4,0],[84,0,0,2,0]],"bun":[[8,0,0,3,0],[30,0,0,1,0],[39,0,0,0,7],[51,0,0,1,1],[60,0,0,0,2],[84,0,0,2,0],[111,0,0,0,2],[128,0,0,1,0]],"npx":[[8,0,0,1,0],[28,0,0,0,1],[29,0,0,0,1],[30,0,0,0,1],[32,0,0,0,1],[38,0,0,0,1],[43,0,0,0,2],[48,0,0,0,1],[56,0,0,0,1],[60,0,0,0,1],[61,0,0,0,1],[62,0,0,0,1],[63,0,0,0,2],[86,0,0,0,1],[88,0,0,0,1]],"lint":[[8,0,0,4,1],[18,0,0,1,0],[22,0,0,1,0],[23,0,1,2,0],[24,0,0,1,0],[35,0,0,1,0],[40,0,0,1,0],[43,0,0,1,1],[45,0,0,1,0],[58,0,0,2,0],[59,0,0,2,0],[60,0,0,1,3],[61,0,0,1,2],[62,0,0,2,1],[63,0,0,4,1],[64,0,0,1,0],[80,0,0,1,0],[84,0,0,1,0],[90,0,0,2,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[96,0,1,3,1],[97,0,0,1,1],[98,0,0,2,0],[112,1,1,1,1],[113,1,1,0,0],[114,1,1,0,0],[115,1,1,0,0],[116,1,1,0,1],[117,1,1,0,0],[118,1,1,0,0],[119,1,1,0,0],[120,1,1,0,0],[121,1,1,0,1],[122,1,1,3,0],[153,0,0,0,1]],"dlx":[[8,0,0,2,0]],"bunx":[[8,0,0,1,0]],"defaultmanager":[[8,0,0,0,1]],"displays":[[9,0,0,1,0]],"ready":[[9,0,0,1,0],[151,0,0,1,0]],"copy":[[9,0,0,2,1],[16,0,0,1,0],[87,0,0,1,0]],"action":[[9,0,0,1,0]],"preserves":[[9,0,0,1,0],[16,0,0,1,0]],"copied":[[9,0,0,1,0],[47,0,0,1,0]],"instructions":[[9,0,0,1,0],[11,0,0,1,0],[155,0,0,0,1]],"also":[[9,0,0,1,0],[22,0,0,1,0],[27,0,0,1,0],[43,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[82,0,0,1,0],[86,0,0,1,0],[98,0,0,1,0],[129,0,0,1,0]],"survive":[[9,0,0,1,0],[103,0,0,1,0]],"bundled":[[9,0,0,1,0],[25,0,0,1,0],[33,0,0,1,1],[82,0,0,1,0],[123,0,0,2,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,2,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0]],"output":[[9,0,0,1,0],[10,0,0,1,0],[15,0,0,0,1],[17,0,0,1,0],[25,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[52,0,0,1,0],[61,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,1,1,0],[68,0,0,1,0],[69,0,0,1,0],[70,0,0,2,0],[71,0,0,1,0],[72,0,0,4,0],[73,0,0,1,0],[77,0,0,1,0],[83,0,0,1,0],[87,0,1,0,0],[88,0,0,1,0],[90,0,0,1,0],[91,0,0,2,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,1,1,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[98,0,0,2,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,1,0],[102,0,0,1,0],[103,0,0,2,0],[105,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[110,0,0,1,0],[111,0,0,1,0],[123,0,0,1,0],[137,0,1,0,0],[146,0,0,1,0],[147,0,0,2,0]],"coding":[[9,0,0,1,1],[25,0,0,1,0],[27,0,0,1,0],[34,0,0,1,0],[68,0,0,1,0],[70,0,0,1,1],[74,0,0,2,1],[75,0,0,1,0],[76,0,0,2,0],[77,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[106,0,0,1,0],[137,0,0,0,1]],"after":[[9,0,0,1,1],[28,0,0,1,0],[29,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[44,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[64,0,0,1,0],[87,0,0,1,1],[91,0,0,1,0],[92,0,0,1,0],[103,0,0,1,0],[122,0,0,1,0],[144,0,0,1,0],[150,0,0,1,0]],"generating":[[9,0,0,1,1],[87,0,0,1,0]],"artifacts":[[9,0,0,1,1],[28,0,0,1,0],[36,0,0,1,0],[48,0,1,0,0],[49,0,0,2,0],[68,0,1,0,0],[69,0,1,0,0],[78,0,0,1,0],[79,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0],[87,0,0,2,0],[88,0,0,1,0],[89,0,0,1,0],[91,0,0,4,0],[105,0,0,1,0],[108,0,0,1,0],[110,0,0,1,0],[129,0,0,1,0]],"inspect":[[9,0,0,0,2],[15,0,0,0,1],[41,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0],[87,0,1,1,1],[88,0,0,1,0],[89,0,0,1,0]],"readability":[[9,0,0,0,2],[37,0,0,0,1],[38,0,0,1,0],[41,0,0,2,2],[42,0,0,1,0],[44,0,0,1,0],[48,0,0,1,1],[49,0,0,1,2],[50,0,0,0,2],[51,0,0,1,2],[52,0,0,3,0],[53,0,0,1,0],[54,0,0,0,2],[56,0,0,1,1],[57,0,0,1,0],[67,0,0,2,0],[69,0,0,2,0],[72,0,0,2,0],[74,0,0,0,1],[76,0,0,1,0],[82,0,0,1,0],[86,0,0,2,0],[87,0,0,0,3],[91,0,0,1,0],[94,0,0,0,1],[98,0,0,1,0],[124,0,0,1,0],[127,0,0,1,0],[128,0,1,0,1],[129,0,1,1,0],[130,0,1,0,0],[131,0,1,0,2],[132,0,1,0,0],[133,0,1,0,0],[134,0,1,0,0],[135,0,1,1,0]],"json":[[9,0,0,0,2],[23,0,0,1,0],[30,0,0,0,1],[32,0,0,1,0],[37,0,0,0,3],[39,0,0,0,1],[41,0,0,4,1],[42,0,0,2,0],[43,0,0,1,1],[44,0,0,3,0],[46,0,0,1,0],[47,0,0,2,0],[48,0,0,2,1],[49,0,0,2,1],[50,0,1,3,1],[51,0,0,1,1],[52,0,0,1,0],[53,0,0,2,0],[54,0,0,1,1],[55,0,0,1,0],[56,0,0,2,0],[57,0,0,3,0],[59,0,0,1,0],[61,0,0,2,2],[63,0,0,0,1],[66,0,0,0,2],[67,0,0,2,0],[68,0,0,2,0],[69,0,0,2,0],[70,0,0,0,1],[74,0,0,0,1],[86,0,0,3,0],[87,0,0,0,4],[90,0,0,1,0],[91,0,0,3,0],[92,0,0,5,0],[93,0,0,3,0],[94,0,1,3,4],[95,0,0,1,0],[96,0,0,3,0],[97,0,0,1,0],[98,0,0,2,0],[114,0,0,1,0],[116,0,0,2,0],[120,0,1,0,0],[122,0,0,2,0],[123,0,0,1,0],[124,0,0,1,0],[129,0,0,2,0],[131,0,0,1,5],[132,0,0,2,0],[133,0,0,1,0],[135,0,0,1,0],[138,0,0,1,2],[149,0,0,2,0],[150,0,0,0,2],[151,0,0,0,2],[156,0,0,1,0]],"then":[[9,0,0,0,2],[44,0,0,1,0],[56,0,0,2,0],[87,0,0,0,1],[91,0,0,1,0],[106,0,0,1,0],[127,0,0,1,0],[141,0,0,1,0],[149,0,0,1,0],[157,0,0,1,0]],"responses":[[9,0,0,0,2],[41,0,0,1,0],[47,0,0,1,0],[51,0,0,1,0],[56,0,0,1,0],[87,0,0,0,1],[130,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0]],"before":[[9,0,0,0,2],[10,0,0,0,1],[23,0,0,1,0],[32,0,1,0,0],[36,0,0,1,0],[39,0,0,1,0],[41,0,0,3,0],[42,0,0,1,0],[43,0,0,1,0],[44,0,0,2,0],[48,0,0,1,0],[51,0,0,1,0],[52,0,0,4,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,2,0],[63,0,1,1,0],[64,0,0,1,0],[69,0,0,1,0],[87,0,0,0,1],[94,0,0,1,0],[96,0,0,1,0],[101,0,0,1,0],[104,0,0,2,0],[105,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[110,0,0,2,0],[111,0,0,1,0],[112,0,0,2,0],[115,0,0,1,0],[122,0,0,1,0],[127,0,0,1,0],[130,0,0,0,1],[144,0,0,4,0],[145,0,0,2,0],[156,0,0,1,0]],"splits":[[10,0,0,1,0]],"guidance":[[10,0,0,1,0],[122,0,1,0,0]],"forking":[[10,0,0,1,0]],"page":[[10,0,0,1,0],[18,0,0,2,0],[19,0,0,1,0],[20,0,0,2,3],[21,0,0,1,0],[22,0,0,3,0],[23,0,0,1,0],[24,0,0,1,0],[41,0,0,1,0],[44,0,0,1,0],[47,0,0,4,0],[48,0,0,1,0],[50,0,0,4,4],[52,0,0,1,0],[53,0,0,1,0],[57,0,0,2,0],[59,0,0,1,0],[65,0,0,1,0],[66,0,0,0,1],[68,0,0,3,0],[69,0,0,1,0],[71,0,0,2,0],[72,0,0,1,0],[75,0,0,1,0],[85,0,1,1,0],[86,0,0,1,0],[93,0,0,1,0],[95,0,0,1,0],[103,0,0,1,0],[106,0,0,4,0],[107,0,0,2,0],[108,0,0,1,0],[109,0,0,2,0],[112,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[124,0,0,2,0],[129,0,0,1,0],[131,0,0,2,0],[149,0,0,2,0],[152,0,0,1,0],[157,0,0,1,0]],"human":[[10,0,0,1,1],[37,0,0,0,2],[47,0,0,1,0],[70,0,0,0,2],[142,0,0,1,0]],"renders":[[10,0,0,1,0],[16,0,0,1,0],[19,0,0,1,0],[70,0,0,1,0],[82,0,0,1,0],[115,0,0,1,0]],"omitted":[[10,0,0,1,0],[19,0,0,1,0],[130,0,0,1,0]],"hidden":[[10,0,0,1,0]],"included":[[10,0,0,1,0],[145,0,0,1,0]],"generated":[[10,0,0,2,1],[19,0,0,1,0],[37,0,0,0,1],[38,0,0,1,0],[41,0,0,1,0],[44,0,0,1,0],[46,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[54,0,0,1,0],[56,0,0,1,0],[62,0,0,1,0],[71,0,0,1,0],[77,0,0,1,0],[79,0,0,1,0],[82,0,0,1,0],[86,0,0,1,0],[94,0,0,1,0],[105,0,0,1,0],[107,0,0,1,0],[123,0,0,1,0],[124,0,1,1,0],[132,0,0,2,0],[138,0,0,1,2]],"sentence":[[10,0,0,1,0],[48,0,0,0,1],[85,0,0,0,1]],"appears":[[10,0,0,1,0]],"target":[[10,0,0,0,2],[41,0,0,0,2],[51,0,0,0,2],[129,0,0,0,2],[142,0,0,2,0]],"click":[[10,0,0,0,1]],"robot":[[10,0,0,0,1]],"icon":[[10,0,0,0,1],[22,0,0,2,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0]],"editing":[[10,0,0,0,1],[41,0,0,1,0]],"routes":[[10,0,0,0,1],[41,0,0,1,0],[42,0,0,1,0],[44,0,0,2,0],[59,0,0,1,0],[109,0,0,1,0],[127,0,0,1,0]],"project":[[11,0,0,1,0],[33,0,0,1,1],[70,0,0,1,0],[76,0,0,1,0],[106,0,0,1,0]],"structure":[[11,0,0,1,0],[69,0,0,1,0],[95,0,0,1,0],[100,0,0,1,0],[136,0,0,1,0]],"guides":[[11,0,0,1,0],[40,0,0,0,2],[139,0,0,1,0],[152,0,0,0,1]],"release":[[11,0,0,1,0],[119,0,0,1,0]],"emits":[[11,0,0,1,0],[12,0,0,2,0],[27,0,0,1,0],[76,0,0,1,0],[91,0,0,1,0],[123,0,0,2,0],[124,0,0,1,0],[146,0,0,1,0]],"tree":[[11,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,1,2,1],[21,0,1,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[38,0,0,1,0],[40,0,0,1,0],[66,0,0,0,1],[69,0,0,1,0],[71,0,0,1,0],[76,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0],[100,0,0,1,0],[136,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0]],"hierarchy":[[11,0,0,1,0]],"root":[[11,0,0,0,1],[19,0,0,1,0],[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,6],[31,0,0,1,5],[32,0,0,1,0],[33,0,0,2,0],[34,0,0,1,0],[35,0,0,1,0],[41,0,0,1,0],[44,0,0,1,0],[49,0,1,1,0],[54,0,0,1,0],[56,0,0,2,0],[57,0,0,1,0],[67,0,0,1,0],[68,0,0,2,0],[69,0,0,1,0],[72,0,0,2,0],[76,0,0,1,0],[80,0,0,1,0],[82,0,0,1,0],[86,0,0,1,0],[91,0,0,4,0],[92,0,0,2,0],[94,0,0,1,0],[96,0,0,1,0],[100,0,0,1,0],[106,0,0,3,0],[107,0,0,6,0],[108,0,0,2,0],[116,0,0,1,0],[120,0,0,1,0],[123,0,0,2,0],[124,0,0,1,0],[127,0,0,1,0],[129,0,0,1,0],[136,0,0,3,0],[139,0,0,1,0],[146,0,0,1,0]],"index":[[11,0,0,0,2],[16,0,0,0,1],[28,0,0,1,1],[36,0,0,1,0],[38,0,0,1,0],[43,0,0,1,0],[44,0,0,3,0],[48,0,0,0,1],[66,0,0,0,1],[67,0,0,1,0],[68,0,0,5,0],[69,0,0,1,0],[70,0,0,0,1],[71,0,0,1,0],[72,0,0,1,0],[74,0,0,1,0],[76,0,0,1,0],[78,0,0,1,0],[80,0,0,1,0],[85,0,0,1,0],[86,0,0,4,0],[87,0,0,2,3],[88,0,0,2,0],[91,0,0,2,0],[93,0,0,2,0],[94,0,0,0,2],[107,0,0,1,0],[110,0,0,1,0],[123,0,0,1,0],[124,0,0,2,0],[125,0,0,0,1],[148,0,0,2,0],[149,0,0,6,0],[150,0,0,2,1],[151,0,0,1,2],[152,0,0,2,3],[153,0,0,1,1],[154,0,0,1,1],[155,0,0,1,1],[156,0,0,1,0],[157,0,0,3,0]],"get":[[11,0,0,0,1],[40,0,0,0,2],[43,0,0,1,0],[44,0,0,1,0],[70,0,0,1,0],[76,0,1,2,0],[85,0,0,0,1],[94,0,0,0,2],[101,0,0,1,0],[106,0,0,1,0],[125,0,0,0,1],[137,0,0,0,1],[141,0,0,2,0]],"started":[[11,0,0,0,1],[40,0,0,0,2],[85,0,0,0,1],[94,0,0,0,2],[106,0,0,1,0],[125,0,0,0,1],[137,0,0,0,1],[151,0,0,0,1]],"collapsible":[[12,0,0,1,0]],"secondary":[[12,0,0,1,0]],"ignores":[[12,0,0,2,0]],"open":[[12,0,0,2,0],[46,0,0,1,0],[87,0,0,2,0],[110,0,1,0,0],[137,0,0,0,1],[142,0,0,1,0]],"closed":[[12,0,0,3,0],[142,0,0,1,0]],"state":[[12,0,0,2,0],[103,0,0,1,0],[142,0,0,1,0]],"item":[[12,0,0,1,0]],"accordions":[[12,0,0,3,1]],"place":[[12,0,0,2,0],[27,0,0,1,0],[74,0,0,1,0],[76,0,0,1,0],[85,0,0,1,0],[104,0,0,1,0],[145,0,0,1,0]],"hide":[[12,0,0,2,0]],"should":[[12,0,0,1,1],[29,0,0,1,0],[32,0,0,1,0],[34,0,0,1,0],[43,0,0,1,0],[44,0,0,2,0],[156,0,0,1,0]],"troubleshooting":[[12,0,0,1,0]],"notes":[[12,0,0,1,0],[103,0,1,0,0]],"optional":[[12,0,0,1,1],[14,0,0,2,0],[19,0,0,2,0],[22,0,1,10,0],[39,0,0,1,0],[49,0,0,1,0],[67,0,0,2,0],[68,0,0,3,0],[69,0,0,3,0],[71,0,0,5,0],[79,0,0,2,0],[80,0,0,1,0],[107,0,0,1,0],[129,0,0,1,0],[130,0,0,1,2],[131,0,0,0,1],[133,0,0,1,0],[145,0,1,0,0],[146,0,1,0,0]],"material":[[12,0,0,1,1]],"good":[[12,0,0,1,0],[47,0,1,0,0]],"no":[[12,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[27,0,0,1,0],[54,0,0,1,0],[71,0,0,1,0],[88,0,0,2,0],[96,0,0,1,0],[103,0,0,1,0],[106,0,0,1,0],[118,0,0,12,0],[119,0,0,7,0],[120,0,0,7,0],[124,0,0,1,0],[130,0,0,1,0],[146,0,0,2,0],[151,0,0,1,0]],"everything":[[12,0,0,1,0]],"inside":[[12,0,0,1,0],[25,0,0,1,0],[26,0,0,1,0],[27,0,0,3,0],[28,0,0,2,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[32,0,0,1,0],[33,0,0,2,0],[34,0,0,1,0],[35,0,0,1,0],[43,0,0,1,0],[68,0,0,2,0],[70,0,0,1,0],[79,0,0,1,0],[88,0,0,1,0],[123,0,0,1,0],[136,0,0,1,0],[137,0,0,0,1]],"navigation":[[13,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,1],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[31,0,0,0,3],[36,0,0,1,0],[38,0,0,1,0],[40,0,0,1,0],[48,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[66,0,0,0,1],[69,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[76,0,0,2,0],[78,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[109,0,0,1,0],[112,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[117,0,0,1,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[124,0,0,1,0],[127,0,0,1,2],[138,0,0,1,4],[139,0,0,1,0]],"across":[[13,0,0,1,0],[20,0,0,1,0],[82,0,0,3,0],[95,0,0,1,0],[106,0,0,1,0]],"topics":[[13,0,0,1,0]],"frameworks":[[13,0,0,1,2],[29,0,0,0,1],[74,0,0,1,0],[82,0,0,1,0]],"sdks":[[13,0,0,1,0]],"runtimes":[[13,0,0,1,0],[51,0,0,1,0]],"deployment":[[13,0,0,1,0],[51,0,0,0,1],[81,0,0,1,0],[140,0,0,1,0]],"targets":[[13,0,0,1,0]],"product":[[13,0,0,1,0],[31,0,0,0,2],[38,0,0,0,1],[40,0,1,0,2],[48,0,0,0,2],[49,0,0,1,0],[69,0,0,1,0],[86,0,0,1,0],[91,0,0,2,0],[94,0,0,1,1],[95,0,0,0,2],[124,0,0,2,0],[126,0,0,0,4],[127,0,0,0,4],[136,0,0,2,2],[151,0,0,1,0]],"areas":[[13,0,0,1,0]],"reader":[[13,0,0,1,0],[52,0,0,1,0]],"facing":[[13,0,0,1,0],[44,0,0,1,0],[74,0,0,1,0],[105,0,0,1,0],[123,0,0,1,0],[147,0,0,1,0]],"automatically":[[13,0,0,1,0],[22,0,0,1,0],[51,0,0,1,0]],"llm":[[13,0,0,1,0],[30,0,0,0,1],[35,0,0,1,0],[39,0,0,0,3],[41,0,0,1,1],[49,0,0,0,1],[50,0,0,0,1],[51,0,0,0,1],[54,0,0,0,1],[84,0,0,1,0],[86,0,0,1,0],[87,0,0,0,1],[95,0,0,1,1],[98,0,0,2,0],[106,0,0,1,0],[123,1,1,1,1],[124,1,1,0,0],[125,1,1,0,0],[126,1,1,0,1],[127,1,1,0,1],[128,1,1,0,1],[129,1,1,0,0],[130,1,1,0,0],[131,1,1,0,1],[132,1,1,0,0],[133,1,1,0,0],[134,1,1,0,0],[135,1,1,0,0],[136,1,1,0,1],[137,1,1,0,0],[138,1,1,2,0],[139,1,1,0,0],[140,1,1,0,0],[147,0,0,1,0]],"topic":[[13,0,0,1,0],[25,0,0,2,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[70,0,0,1,0],[72,0,0,1,0],[76,0,0,1,0],[79,0,0,1,0],[106,0,0,1,0],[123,0,0,1,0],[137,0,0,0,1]],"config":[[13,0,0,1,0],[19,0,0,1,0],[20,0,0,2,1],[21,0,0,1,0],[30,0,0,0,2],[31,0,0,0,1],[40,0,0,2,0],[44,0,0,1,0],[64,0,0,1,0],[95,0,0,2,1],[136,0,0,1,0],[139,0,0,1,0],[151,0,0,1,0],[157,0,0,1,0]],"framework":[[13,0,0,1,1],[22,0,0,2,0],[23,0,0,4,0],[24,0,0,1,0],[36,0,0,1,0],[41,0,0,2,0],[49,0,0,0,1],[50,0,0,2,0],[51,0,0,2,0],[52,0,0,2,0],[59,0,0,5,0],[64,0,0,1,0],[71,0,0,1,0],[74,0,0,1,0],[78,0,0,1,0],[79,0,0,5,0],[82,0,0,1,0],[115,0,0,4,0],[117,0,0,0,1],[118,0,0,1,0],[128,0,0,2,0],[131,0,0,1,0],[132,0,0,1,0],[142,0,0,1,0]],"react":[[13,0,0,2,4],[29,0,0,0,3],[79,0,0,2,0]],"integration":[[13,0,0,3,0],[132,0,0,1,0]],"vue":[[13,0,0,2,3]],"svelte":[[13,0,0,2,0]],"label":[[13,0,0,0,3],[120,0,0,1,0]],"activevalue":[[13,0,0,0,1]],"explicit":[[14,0,0,1,0],[29,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[154,0,0,1,0]],"type":[[14,0,0,3,2],[22,0,0,1,0],[23,0,0,1,0],[39,0,0,0,1],[41,0,0,1,0],[44,0,0,1,0],[50,0,0,0,1],[51,0,0,1,0],[56,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[71,0,0,1,0],[87,0,0,0,1],[114,0,0,1,0],[117,0,0,0,1],[118,0,0,1,0],[119,0,0,2,0],[120,0,0,1,0],[125,0,0,0,1],[129,0,0,1,0],[131,0,0,0,1],[132,0,0,2,0],[146,0,0,2,0],[151,0,0,0,2]],"rows":[[14,0,0,1,0]],"already":[[14,0,0,1,0],[46,0,0,1,0],[152,0,0,1,0]],"know":[[14,0,0,1,0]],"reads":[[14,0,0,1,0],[18,0,0,1,0],[39,0,0,0,1],[58,0,0,1,0],[86,0,0,1,0],[146,0,0,2,0],[150,0,0,1,0]],"typescript":[[14,0,0,1,0],[39,0,0,0,1],[98,0,0,1,0],[146,0,0,2,0]],"extracts":[[14,0,0,1,0]],"named":[[14,0,0,1,0],[141,0,0,1,0],[146,0,0,1,0],[152,0,0,1,0]],"keep":[[14,0,0,1,0],[17,0,0,2,0],[41,0,0,1,0],[49,0,0,1,0],[52,0,0,1,0],[57,0,0,1,0],[62,0,0,1,0],[110,0,0,1,0],[121,0,0,1,0],[151,0,0,1,0],[157,0,0,1,0]],"its":[[14,0,0,1,0],[43,0,0,1,0],[47,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[82,0,0,1,0],[131,0,0,1,0],[147,0,0,1,0]],"path":[[14,0,0,1,0],[25,0,0,1,0],[28,0,0,1,0],[36,0,0,1,0],[51,0,0,1,0],[68,0,0,3,0],[75,0,1,0,0],[94,0,0,0,12],[98,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[125,0,0,0,1],[129,0,0,1,0],[132,0,0,1,0],[136,0,0,2,0],[146,0,0,2,1],[156,0,0,1,0]],"stable":[[14,0,0,1,0],[17,0,0,1,0],[22,0,0,1,0]],"property":[[14,0,0,1,0],[22,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[71,0,0,1,0],[131,0,0,0,2],[146,0,0,1,0]],"default":[[14,0,0,1,1],[22,0,0,2,0],[23,0,0,1,0],[40,0,0,0,1],[46,0,0,1,0],[54,0,0,0,1],[55,0,0,2,0],[67,0,0,2,0],[68,0,0,1,0],[71,0,0,1,0],[72,0,0,2,0],[86,0,0,1,0],[91,0,0,2,0],[96,0,0,2,0],[104,0,0,1,0],[109,0,1,1,0],[110,0,0,1,0],[114,0,0,1,0],[115,0,0,1,0],[116,0,0,2,0],[118,0,1,0,0],[119,0,1,0,0],[120,0,1,0,0],[123,0,0,1,0],[124,0,0,2,0],[125,0,0,0,1],[129,0,0,1,0],[131,0,0,0,1],[134,0,0,1,0],[136,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,1,1,0],[143,0,1,1,0],[144,0,0,1,0],[145,0,0,2,0],[146,0,0,2,0],[147,0,0,1,0]],"required":[[14,0,0,2,1],[18,0,0,1,0],[19,0,0,2,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,2,0],[23,0,0,2,0],[24,0,0,1,0],[64,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[71,0,0,1,0],[114,0,0,1,0],[116,0,0,1,0],[117,0,0,2,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0]],"string":[[14,0,0,1,1],[19,0,0,1,0],[22,0,0,3,0],[50,0,0,1,0],[71,0,0,1,0],[117,0,0,0,3],[118,0,0,7,0],[119,0,0,7,0],[120,0,0,5,0],[121,0,0,0,1],[130,0,0,1,0],[132,0,0,1,0],[136,0,0,1,0]],"heading":[[14,0,0,1,1],[19,0,0,1,0],[71,0,0,1,0],[142,0,0,1,0],[149,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0]],"rendered":[[14,0,0,1,1],[50,0,0,1,0],[103,0,0,1,0],[146,0,0,1,0]],"calloutvariant":[[14,0,0,1,1]],"visual":[[14,0,0,1,1],[81,0,0,1,0]],"treatment":[[14,0,0,1,1]],"deprecated":[[14,0,0,3,0],[22,0,0,3,0],[118,0,0,1,0]],"boolean":[[14,0,0,1,0],[22,0,0,6,0],[118,0,0,6,0],[119,0,0,2,0],[120,0,0,2,0]],"marks":[[14,0,0,1,0],[22,0,0,2,0]],"false":[[14,0,0,1,0],[101,0,0,0,1]],"properties":[[14,0,0,0,1]],"true":[[14,0,0,0,1],[30,0,0,0,3],[39,0,0,0,1],[100,0,0,1,1],[138,0,0,0,1]],"data":[[15,0,0,2,0],[36,0,0,1,0],[44,0,0,1,0],[69,0,0,1,0],[86,0,0,1,0],[123,0,0,1,0]],"driven":[[15,0,0,1,0]],"examples":[[15,0,0,1,0]],"host":[[15,0,0,1,1],[69,0,0,1,0],[94,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[127,0,0,1,0]],"receives":[[15,0,0,1,0]],"code":[[15,0,0,1,1],[26,0,0,0,1],[27,0,0,1,0],[43,0,0,1,0],[51,0,0,1,0],[67,0,0,1,0],[68,0,0,2,0],[69,0,0,1,0],[70,0,0,0,1],[71,0,0,1,0],[74,0,0,0,1],[82,0,0,1,0],[88,0,0,1,0],[93,0,0,1,0],[136,0,0,1,0],[143,0,0,1,0],[149,0,0,1,0],[155,0,0,1,0]],"loaders":[[15,0,0,1,0]],"dynamic":[[15,0,0,1,0]],"imports":[[15,0,0,1,0],[66,0,0,0,1],[95,0,0,1,0],[141,0,0,1,0],[144,0,0,1,0]],"outside":[[15,0,0,1,0],[116,0,0,1,0]],"needs":[[15,0,0,1,0],[29,0,0,1,0],[78,0,0,1,0],[85,0,0,1,0],[146,0,0,1,0]],"specific":[[15,0,0,1,0],[29,0,1,0,0],[140,0,0,1,0],[148,0,0,1,0],[151,0,0,1,0]],"behavior":[[15,0,0,1,0],[19,0,0,1,0],[103,0,1,0,0],[105,0,0,1,0]],"filename":[[15,0,0,0,1]],"language":[[15,0,0,0,1]],"while":[[15,0,0,0,1],[56,0,0,1,0],[150,0,0,1,0]],"diagrams":[[16,0,0,1,0]],"plain":[[16,0,0,1,0],[51,0,0,1,0],[54,0,0,2,0],[138,0,0,1,0],[154,0,0,1,0]],"client":[[16,0,0,1,0],[79,0,0,1,0],[146,0,0,1,0]],"side":[[16,0,0,1,0],[79,0,0,1,0],[146,0,0,1,0]],"svg":[[16,0,0,1,0]],"tools":[[16,0,0,1,0],[25,0,0,1,0],[27,0,0,1,0],[34,0,0,1,0],[70,0,0,1,0],[77,0,0,1,0],[155,0,0,1,1]],"chart":[[16,0,0,0,1]],"graph":[[16,0,0,0,2]],"lr":[[16,0,0,0,2],[20,0,0,0,1],[26,0,0,0,1],[37,0,0,0,1],[70,0,0,0,1],[74,0,0,0,1]],"api":[[16,0,0,0,1],[50,0,0,1,0],[96,0,0,1,0],[98,0,0,1,0],[112,0,0,2,0],[113,0,0,1,0],[114,0,0,1,0],[115,0,0,1,0],[116,0,1,1,0],[117,0,1,1,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[128,0,0,1,0],[151,0,0,1,0],[157,0,0,1,0]],"guidelines":[[17,0,1,0,0]],"stays":[[17,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[78,0,0,1,0],[103,0,0,1,0],[150,0,0,1,0]],"out":[[17,0,0,1,0],[26,0,0,0,1],[28,0,0,0,1],[29,0,0,0,1],[30,0,0,0,1],[32,0,0,0,1],[38,0,0,0,1],[43,0,0,0,1],[48,0,0,0,1],[55,0,0,1,0],[63,0,0,0,1],[67,0,0,2,0],[68,0,0,3,0],[69,0,0,4,0],[70,0,0,0,6],[74,0,0,0,8],[78,0,0,1,0],[86,0,0,0,1],[88,0,0,0,1],[91,0,0,5,0],[93,0,0,2,1],[124,0,0,7,0],[142,0,0,0,2]],"renaming":[[17,0,0,1,0]],"breaks":[[17,0,0,1,0]],"until":[[17,0,0,1,0]],"remap":[[17,0,0,1,0]],"quality":[[17,0,0,1,0]],"converted":[[17,0,0,1,0],[44,0,0,1,0],[70,0,0,1,0],[72,0,0,1,0],[146,0,0,1,0],[147,0,0,1,0]],"first":[[17,0,0,1,0],[33,0,0,0,1],[43,0,0,1,0],[63,0,0,1,0],[64,0,1,0,0],[68,0,0,1,0],[77,0,0,1,0],[87,0,0,0,1],[107,0,0,1,0],[109,0,0,1,0],[122,0,0,1,0],[126,0,0,1,0],[141,0,0,1,0],[147,0,0,1,0]],"edit":[[17,0,0,1,0]],"order":[[17,0,0,1,0],[30,0,0,1,0],[39,0,0,2,0],[64,0,0,1,0],[72,0,0,1,0],[95,0,0,1,1],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[104,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[144,0,1,0,0]],"actually":[[17,0,0,1,0],[105,0,0,1,0]],"looks":[[17,0,0,1,0],[27,0,0,1,0],[41,0,0,1,0],[47,0,1,0,0],[87,0,0,1,0],[147,0,0,1,0]],"wrong":[[17,0,0,1,0],[23,0,0,1,0],[27,0,0,1,0],[59,0,0,1,0],[64,0,0,1,0],[114,0,0,1,0],[135,0,0,1,0],[147,0,0,1,0]],"frontmatter":[[18,1,1,1,0],[19,1,1,0,0],[20,1,1,0,0],[21,1,1,0,0],[22,1,1,0,0],[23,1,1,1,0],[24,1,1,1,0],[40,0,0,2,0],[41,0,0,2,0],[43,0,0,1,0],[47,0,0,1,0],[51,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,4,0],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,2,0],[66,0,0,0,2],[71,0,0,1,0],[72,0,0,2,0],[73,0,0,1,0],[76,0,0,1,0],[80,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0],[92,0,0,1,0],[96,0,0,2,0],[98,0,0,1,0],[101,0,0,1,1],[103,0,0,3,0],[106,0,0,1,0],[114,0,1,1,0],[116,0,0,3,0],[117,0,0,0,1],[118,0,1,0,0],[119,0,1,0,0],[121,0,0,0,1],[129,0,0,1,0]],"fields":[[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,1,1,0],[23,0,0,1,0],[24,0,0,1,0],[59,0,0,2,0],[64,0,0,1,0],[94,0,0,1,0],[96,0,0,2,0],[116,0,0,1,0],[117,0,0,1,0]],"semantics":[[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0]],"yaml":[[18,0,0,1,0],[60,0,0,0,1],[103,0,0,1,0],[114,0,0,1,0]],"things":[[18,0,0,1,0],[86,0,0,1,0]],"lives":[[18,0,0,1,0],[43,0,0,2,0]],"nav":[[18,0,0,1,0],[19,0,0,1,0],[20,0,1,1,2],[21,0,1,0,0],[22,0,0,1,0],[37,0,0,0,1],[66,0,0,0,3],[69,0,0,2,0],[85,0,0,1,0],[86,0,0,1,0],[120,0,0,3,0],[138,0,0,1,1]],"minimum":[[19,0,1,0,0],[85,0,0,1,0]],"non":[[19,0,0,1,0],[21,0,0,1,0],[44,0,0,2,0],[58,0,0,1,0],[71,0,0,1,0],[96,0,0,1,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[127,0,0,1,0],[130,0,0,0,1]],"empty":[[19,0,0,1,0],[44,0,0,1,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[131,0,0,1,0]],"sidebar":[[19,0,0,1,0],[22,0,0,1,0],[24,0,0,1,0],[69,0,0,1,0],[71,0,0,1,0],[120,0,0,1,0],[138,0,0,3,0]],"recommended":[[19,0,0,1,0],[49,0,0,1,0]],"routing":[[19,0,0,1,0],[36,0,0,1,0],[37,0,0,0,1],[44,0,0,1,0],[46,0,0,1,0],[78,0,0,1,0],[81,0,0,1,0],[86,0,0,1,0],[124,0,0,2,0],[136,0,0,1,0],[139,0,0,2,0]],"hint":[[19,0,0,1,0],[22,0,0,1,0]],"converter":[[19,0,0,1,0],[43,0,0,1,0],[115,0,0,1,0],[118,0,0,1,0]],"synthesizes":[[19,0,0,1,0]],"during":[[19,0,0,1,0],[28,0,0,1,0],[39,0,0,1,0]],"slug":[[19,0,0,1,0],[20,0,0,3,0],[21,0,0,0,3],[31,0,0,0,2],[40,0,0,0,2],[52,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[94,0,0,0,1],[136,0,0,1,0],[138,0,0,0,2]],"declared":[[19,0,0,1,0],[20,0,0,1,0]],"pages":[[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,2,0],[29,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[47,0,0,1,0],[49,0,0,2,2],[50,0,1,0,1],[51,0,0,1,0],[52,0,0,2,0],[56,0,0,2,0],[57,0,0,1,0],[62,0,0,1,0],[69,0,0,2,0],[71,0,0,1,0],[76,0,0,1,0],[86,0,0,1,0],[94,0,0,1,0],[106,0,0,2,0],[107,0,0,2,0],[120,0,0,1,0],[124,0,0,2,0],[127,0,0,2,3],[129,0,0,1,0],[130,0,0,0,3],[132,0,0,1,0],[139,0,0,1,0]],"excluded":[[19,0,0,1,0]],"grouped":[[19,0,0,1,0],[106,0,0,2,0],[110,0,0,1,0],[113,0,0,1,0]],"indexes":[[19,0,0,1,0],[107,0,0,2,0],[108,0,0,1,0]],"appear":[[19,0,0,1,0]],"fallback":[[19,0,0,1,0],[44,0,0,1,0],[68,0,0,1,0],[80,0,0,1,0],[86,0,0,1,0],[91,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[139,0,0,1,0],[140,0,0,2,0]],"connect":[[19,0,0,0,1],[21,0,0,0,2],[34,0,0,1,0],[36,1,1,0,0],[37,1,1,0,0],[38,1,1,0,0],[39,1,1,0,0],[40,1,1,0,0],[41,1,1,0,0],[42,1,1,0,0],[43,1,2,0,0],[44,1,1,0,0],[45,1,1,0,0],[106,0,0,1,0]],"site":[[19,0,0,0,1],[21,0,0,0,2],[34,0,0,1,0],[36,1,1,2,0],[37,1,1,0,0],[38,1,1,1,0],[39,1,1,0,0],[40,1,1,0,0],[41,1,2,0,0],[42,1,2,0,0],[43,1,1,1,0],[44,1,1,0,0],[45,1,1,0,0],[46,0,0,2,0],[47,0,0,2,0],[48,0,0,2,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,2,0],[57,0,0,1,0],[66,0,0,0,3],[67,0,0,1,0],[68,0,0,3,0],[69,0,0,1,0],[70,0,0,2,5],[72,0,0,2,0],[74,0,0,0,8],[75,0,0,1,0],[78,0,0,1,0],[79,0,0,1,0],[86,0,0,1,0],[87,0,0,1,1],[89,0,0,1,0],[91,0,0,2,0],[94,0,0,2,1],[106,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0]],"build":[[19,0,0,0,2],[20,0,0,1,3],[21,0,0,1,2],[23,0,0,1,0],[24,0,0,1,0],[30,0,0,3,1],[36,0,0,3,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,1,1,4],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[43,0,0,2,1],[44,0,0,2,0],[45,0,0,1,0],[48,0,0,2,0],[52,0,0,2,0],[53,0,0,1,0],[67,0,0,1,0],[69,0,0,1,0],[75,0,0,1,0],[86,0,0,1,0],[98,0,0,1,0],[106,0,0,1,0],[112,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,3,0],[148,0,0,1,0],[150,0,1,0,0],[154,0,0,1,0]],"groups":[[20,0,1,1,1],[21,0,2,2,0],[30,0,0,0,1],[31,0,0,0,5],[40,0,1,0,1],[43,0,0,1,0],[63,0,0,1,0],[66,0,0,0,5],[71,0,0,1,0],[72,0,0,1,0],[86,0,0,2,0],[94,0,0,0,1],[95,0,0,3,2],[106,0,0,1,0],[109,0,0,1,0],[126,0,0,0,6],[127,0,0,0,2],[136,0,0,1,2],[138,0,0,0,2],[139,0,0,3,0]],"become":[[20,0,1,0,0],[21,0,1,0,0],[95,0,0,1,0]],"may":[[20,0,0,1,0],[27,0,0,1,0],[49,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[110,0,0,1,0],[129,0,0,1,0]],"declare":[[20,0,0,1,0],[21,0,0,1,0],[40,0,0,1,0]],"more":[[20,0,0,1,0],[108,0,0,1,0],[110,0,0,1,0]],"slugs":[[20,0,0,1,0]],"shared":[[20,0,0,1,0],[29,0,0,2,1],[82,0,0,1,0],[96,0,0,3,0],[116,0,0,2,0],[147,0,0,1,0],[156,0,0,1,0]],"multiple":[[20,0,0,1,0],[43,0,0,1,0]],"once":[[20,0,0,1,0],[24,0,0,1,0],[40,0,0,1,0],[76,0,0,1,0],[87,0,0,1,0],[121,0,0,1,0]],"intersection":[[20,0,0,1,0]],"produces":[[20,0,0,1,0],[65,0,0,1,0],[74,0,0,1,0],[77,0,0,1,0],[78,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[123,0,0,1,0]],"metadata":[[20,0,0,1,0],[24,0,0,1,0],[47,0,0,2,0],[50,0,0,1,0],[71,0,0,1,0],[80,0,0,1,0],[91,0,0,1,0],[109,0,0,1,0],[124,0,0,2,0],[131,0,0,3,1],[132,0,0,1,0],[139,0,0,1,0],[154,0,0,1,0]],"grouping":[[20,0,0,1,0],[24,0,0,1,0],[71,0,0,1,0]],"declares":[[20,0,0,1,0],[31,0,0,0,1],[40,0,0,1,0],[138,0,0,0,1]],"isn":[[20,0,0,1,0],[23,0,0,1,0]],"fails":[[20,0,0,1,0],[43,0,0,1,0],[63,0,0,2,0],[64,0,0,1,0],[72,0,0,1,0],[135,0,0,1,0]],"unknown":[[20,0,0,1,0],[23,0,0,2,0],[30,0,0,0,1],[31,0,0,0,4],[43,0,0,0,1],[59,0,0,1,0],[60,0,0,2,1],[61,0,0,0,1],[63,0,0,1,1],[64,0,0,1,0],[72,0,0,1,0],[92,0,0,1,0],[96,0,0,4,0],[114,0,0,3,0],[117,0,0,0,1],[121,0,0,2,0],[138,0,0,0,3]],"truth":[[20,0,0,1,0],[24,0,0,1,0]],"drift":[[20,0,0,1,0],[122,0,0,1,0]],"flowchart":[[20,0,0,0,1],[26,0,0,0,1],[37,0,0,0,1],[66,0,0,0,1],[70,0,0,0,1],[74,0,0,0,1],[142,0,0,0,1]],"cfg":[[20,0,0,0,2]],"page1":[[20,0,0,0,2]],"page2":[[20,0,0,0,2]],"page3":[[20,0,0,0,2]],"resolver":[[20,0,0,0,9],[66,0,0,0,1]],"sections":[[20,0,0,0,2],[40,0,0,1,0],[69,0,0,1,0],[109,0,0,1,0],[124,0,0,1,0],[142,0,0,1,0]],"nested":[[21,0,1,1,0],[27,0,0,1,0]],"children":[[21,0,0,2,1],[71,0,0,1,0]],"deeper":[[21,0,0,1,0]],"trees":[[21,0,0,1,0],[100,0,0,1,0]],"sets":[[21,0,0,1,0],[55,0,0,2,0],[129,0,0,1,0],[134,0,0,1,0],[155,0,0,1,0]],"bundle":[[21,0,0,1,2],[25,1,1,1,0],[26,1,1,0,4],[27,1,1,1,0],[28,1,1,1,1],[29,1,1,1,1],[30,1,1,0,1],[31,1,1,0,0],[32,1,1,0,1],[33,1,2,0,0],[34,1,1,0,0],[35,1,1,0,0],[43,0,0,1,0],[66,0,0,0,1],[67,0,0,2,0],[68,0,0,4,0],[69,0,0,1,0],[70,0,0,1,3],[72,0,0,2,0],[74,0,0,1,7],[76,0,0,1,0],[88,0,1,2,1],[89,0,0,1,0],[91,0,0,6,0],[93,0,1,1,1],[94,0,0,2,0],[106,0,0,3,0],[107,0,0,4,0],[108,0,0,2,0],[123,0,0,1,0],[137,0,0,1,0]],"lands":[[21,0,0,1,0]],"slot":[[21,0,0,1,0]],"leaf":[[21,0,0,2,0],[71,0,0,2,0]],"directly":[[21,0,0,1,0],[30,0,0,1,0],[68,0,0,2,0],[69,0,0,1,0],[71,0,0,1,0],[95,0,0,1,0],[99,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[123,0,0,1,0],[128,0,0,1,0]],"contain":[[21,0,0,1,0],[56,0,0,1,0],[71,0,0,1,0]],"schema":[[22,0,0,1,0],[23,0,0,4,0],[50,0,0,1,0],[58,0,0,1,0],[59,0,0,3,0],[63,0,0,1,0],[64,0,0,2,0],[96,0,0,2,0],[112,0,0,2,0],[113,0,0,1,0],[114,0,0,3,0],[115,0,0,1,0],[116,0,0,6,0],[117,0,0,2,1],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,4,0],[122,0,0,1,0],[131,0,0,0,1],[132,0,0,1,0]],"accepts":[[22,0,0,1,0],[62,0,0,1,0],[133,0,0,1,0]],"resolved":[[22,0,0,1,0],[43,0,0,1,0],[69,0,0,1,0],[141,0,0,1,0]],"deprecatedreason":[[22,0,0,1,0],[118,0,0,1,0]],"message":[[22,0,0,1,0],[117,0,0,0,1],[153,0,0,1,0]],"paired":[[22,0,0,1,0]],"experimental":[[22,0,0,2,0],[106,0,0,1,0],[118,0,0,1,0]],"canary":[[22,0,0,1,0],[118,0,0,1,0],[119,0,0,1,0]],"hides":[[22,0,0,1,0]],"channels":[[22,0,0,1,0]],"new":[[22,0,0,1,0],[41,0,0,0,2],[49,0,0,0,1],[51,0,0,0,1],[54,0,0,0,1],[77,0,0,1,0],[118,0,0,1,0],[129,0,0,0,1],[130,0,0,0,2]],"highlights":[[22,0,0,1,0]],"recently":[[22,0,0,1,0]],"added":[[22,0,0,1,0]],"draft":[[22,0,0,1,0],[118,0,0,1,0],[119,0,0,1,0]],"excludes":[[22,0,0,1,0]],"generation":[[22,0,0,1,0],[30,0,0,1,0],[41,0,0,1,0],[96,0,0,1,0],[112,0,0,1,0],[150,0,0,1,0]],"entirely":[[22,0,0,1,0],[55,0,0,1,0]],"tags":[[22,0,0,2,0],[118,0,0,1,0],[119,0,0,1,0],[145,0,0,1,0]],"free":[[22,0,0,1,0],[128,0,0,1,0],[151,0,0,1,0]],"form":[[22,0,0,1,0]],"facets":[[22,0,0,1,0]],"availablein":[[22,0,0,1,0],[118,0,0,1,0],[122,0,0,1,0]],"array":[[22,0,0,1,0],[100,0,0,1,0],[117,0,0,0,1],[118,0,0,3,0],[119,0,0,2,0],[120,0,0,1,0]],"cross":[[22,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[59,0,0,2,0],[64,0,0,1,0],[115,0,0,1,0],[117,0,0,0,1],[134,0,0,1,0]],"availability":[[22,0,0,1,0]],"map":[[22,0,0,1,0],[132,0,0,1,0],[151,0,0,1,0]],"layout":[[22,0,0,1,0],[50,0,0,1,0],[78,0,0,1,0]],"uis":[[22,0,0,1,0]],"support":[[22,0,0,1,0]],"width":[[22,0,0,1,0]],"lastmodified":[[22,0,0,1,0],[92,0,0,1,0],[100,0,0,1,0],[118,0,0,1,0]],"lastauthor":[[22,0,0,1,0],[92,0,0,1,0],[100,0,0,1,0],[118,0,0,1,0]],"filled":[[22,0,0,1,0]],"pass":[[22,0,0,1,0],[39,0,0,1,1],[49,0,0,1,0],[55,0,0,1,0],[86,0,0,1,0],[96,0,0,2,0],[108,0,0,1,0],[121,0,0,1,0],[134,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[146,0,0,1,0],[151,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0]],"enrich":[[22,0,0,1,0],[92,0,0,1,0],[118,0,0,1,0]],"git":[[22,0,0,1,0],[43,0,0,0,1],[92,0,0,2,0],[100,0,0,1,0],[118,0,0,1,0]],"hand":[[22,0,0,1,0],[41,0,0,1,0]],"rules":[[23,0,1,2,0],[40,0,0,1,0],[58,0,0,1,0],[80,0,0,1,0],[112,1,1,1,0],[113,1,2,0,0],[114,1,3,0,0],[115,1,3,0,0],[116,1,1,0,0],[117,1,1,0,0],[118,1,1,0,0],[119,1,1,0,0],[120,1,1,0,0],[121,1,1,0,0],[122,1,1,0,0],[147,0,1,0,0]],"enforces":[[23,0,0,1,0]],"violations":[[23,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[64,0,0,1,0],[117,0,0,1,1]],"surface":[[23,0,0,1,0],[154,0,0,1,0]],"ci":[[23,0,0,1,0],[35,0,0,1,0],[43,0,0,1,0],[45,0,0,1,0],[58,1,1,2,0],[59,1,1,1,0],[60,1,1,1,0],[61,1,2,2,0],[62,1,1,2,0],[63,1,1,1,0],[64,1,1,2,0],[112,0,0,1,0],[121,0,0,1,0],[122,0,0,2,0],[140,0,0,1,0]],"they":[[23,0,0,1,0],[33,0,0,0,1],[34,0,0,1,0],[54,0,0,2,0],[62,0,0,1,0],[70,0,0,1,0],[109,0,0,1,0],[112,0,0,1,0],[113,0,0,1,0],[122,0,0,1,0],[157,0,0,1,0]],"reach":[[23,0,0,1,0],[27,0,0,1,0],[62,0,0,1,0],[112,0,0,1,0]],"relevant":[[23,0,0,1,0]],"field":[[23,0,0,3,0],[24,0,0,1,0],[49,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[64,0,0,2,0],[71,0,0,1,0],[114,0,0,4,0],[117,0,0,1,2],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0]],"missing":[[23,0,0,1,0],[32,0,0,2,0],[41,0,0,1,0],[43,0,0,1,0],[51,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[59,0,0,1,0],[64,0,0,1,0],[92,0,0,1,0],[114,0,0,1,0],[117,0,0,1,0],[122,0,0,1,0],[132,0,0,1,0]],"top":[[23,0,0,1,0],[48,0,0,1,0],[59,0,0,1,0],[103,0,0,1,0],[114,0,0,1,0],[124,0,0,1,0],[148,0,0,1,0],[157,0,0,1,0]],"level":[[23,0,0,1,0],[44,0,0,1,0],[48,0,0,1,0],[57,0,0,1,0],[59,0,0,1,0],[68,0,0,1,0],[106,0,0,3,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[114,0,0,1,0],[123,0,0,1,0],[124,0,0,2,0],[127,0,0,1,0],[132,0,1,0,0],[133,0,1,0,0]],"warn":[[23,0,0,1,0],[96,0,0,1,0],[114,0,0,1,0],[116,0,0,2,0],[117,0,0,0,1]],"fail":[[23,0,0,1,0],[30,0,0,0,1],[31,0,0,0,1],[58,0,0,2,0],[59,0,0,1,0],[60,0,0,2,0],[61,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[112,0,0,1,0],[122,0,0,1,0]],"parse":[[23,0,0,2,0],[59,0,0,2,0],[64,0,0,1,0],[72,0,0,1,0],[114,0,0,3,0],[117,0,0,0,1],[156,0,0,1,0]],"meta":[[23,0,0,1,0],[59,0,0,1,0],[96,0,0,2,0],[114,0,0,1,0],[116,0,0,3,0],[117,0,0,0,1],[120,0,1,0,0],[122,0,0,1,0],[131,0,0,1,2]],"doesn":[[23,0,0,2,0],[59,0,0,1,0],[61,0,0,1,0],[115,0,0,1,0],[157,0,0,1,0]],"invalid":[[23,0,0,1,0],[59,0,0,1,0],[64,0,0,1,0],[115,0,0,1,0],[117,0,0,1,1]],"link":[[23,0,0,3,0],[24,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[50,0,0,0,2],[51,0,0,1,0],[58,0,0,2,0],[59,0,0,3,0],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,4,0],[68,0,0,1,0],[93,0,0,1,0],[106,0,0,1,0],[112,0,0,2,0],[113,0,0,1,0],[114,0,0,1,0],[115,0,1,5,0],[116,0,0,1,0],[117,0,0,1,2],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0],[136,0,0,2,0],[142,0,0,2,0],[143,0,0,1,0]],"exist":[[23,0,0,1,0],[59,0,0,1,0],[115,0,0,1,0]],"unresolved":[[23,0,0,2,0],[59,0,0,2,0],[64,0,0,1,0],[115,0,0,1,0],[117,0,0,0,1],[122,0,0,1,0]],"placeholder":[[23,0,0,2,0],[59,0,0,1,0],[64,0,0,1,0],[115,0,0,1,0],[117,0,0,0,1],[122,0,0,1,0],[144,0,0,2,0]],"doc":[[23,0,0,1,0]],"contains":[[23,0,0,1,0],[48,0,0,1,0],[56,0,0,1,0],[94,0,0,1,0],[106,0,0,1,0],[107,0,0,3,0],[115,0,0,1,0],[127,0,0,1,0]],"scoped":[[23,0,0,1,0],[41,0,0,1,0],[44,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[56,0,0,2,0],[57,0,0,1,0],[59,0,0,1,0],[69,0,0,1,0],[79,0,0,1,0],[86,0,0,1,0],[91,0,0,1,0],[94,0,0,1,0],[115,0,0,1,0],[123,0,0,1,0],[124,0,0,3,0],[127,0,0,1,0],[130,0,0,0,1]],"another":[[23,0,0,1,0],[40,0,0,0,1],[101,0,0,1,0],[115,0,0,1,0]],"extend":[[23,0,0,1,0],[59,0,0,1,0],[64,0,0,1,0],[96,0,0,1,0],[121,0,0,1,0]],"gives":[[24,0,1,0,0],[50,0,0,1,0],[79,0,0,1,0],[128,0,0,1,0]],"consistent":[[24,0,0,1,0]],"rest":[[24,0,0,1,0],[65,0,0,1,0],[95,0,0,1,0]],"configuration":[[24,0,0,1,0]],"drives":[[24,0,0,1,0],[71,0,0,1,0],[86,0,0,1,0],[124,0,0,1,0]],"position":[[24,0,0,1,0],[71,0,0,1,0]],"filtering":[[24,0,0,1,0],[39,0,0,1,0]],"checks":[[24,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[106,0,0,2,0],[112,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[115,0,0,2,0],[116,0,0,1,0],[117,0,0,1,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0]],"tarball":[[25,0,0,1,0],[26,0,0,1,0],[27,0,0,2,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,1,1,0],[31,0,1,1,0],[32,0,0,1,0],[33,0,0,2,0],[34,0,0,1,0],[35,0,0,1,0],[43,0,0,1,0],[68,0,0,1,0],[70,0,0,1,0],[106,0,0,1,0]],"plus":[[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[76,0,0,2,0],[80,0,0,1,0],[84,0,0,1,0],[86,0,0,1,0],[88,0,0,1,0],[93,0,0,1,0],[101,0,0,1,0],[107,0,0,1,0],[143,0,0,1,0],[153,0,0,1,0]],"publish":[[25,0,0,1,0],[26,0,0,0,4],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[87,0,0,1,0]],"library":[[25,0,0,1,0],[27,0,0,1,0],[30,0,0,1,0],[33,0,0,0,2],[81,0,0,1,0],[85,0,0,0,2],[96,0,0,1,0],[98,0,1,1,0],[112,0,0,2,0],[113,0,0,1,0],[114,0,0,1,0],[115,0,0,1,0],[116,0,1,1,0],[117,0,1,1,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[125,0,0,0,2],[126,0,0,0,3],[137,0,0,0,2],[153,0,0,0,1],[154,0,0,0,1]],"want":[[25,0,0,1,0],[36,0,0,1,0],[39,0,0,1,0],[46,0,0,1,0],[54,0,0,1,0],[77,0,0,1,0],[79,0,0,1,0],[82,0,0,2,0],[101,0,0,1,0],[144,0,0,1,0],[147,0,0,2,0],[155,0,0,1,0]],"ides":[[25,0,0,1,0]],"hitting":[[25,0,0,1,0]],"network":[[25,0,0,1,0],[70,0,0,1,0],[155,0,0,1,0]],"prepack":[[25,0,0,1,0],[30,0,0,1,0]],"include":[[25,0,0,1,0],[29,0,0,2,2],[30,0,1,0,0],[31,0,1,0,0],[32,0,0,1,0],[39,0,0,1,0],[44,0,0,1,0],[47,0,0,2,0],[57,0,0,1,0],[91,0,0,3,0],[92,0,0,2,0],[94,0,0,0,1],[142,0,0,1,0],[145,0,0,1,0],[151,0,0,1,0]],"published":[[25,0,0,1,0],[30,0,1,0,0],[31,0,1,0,0],[33,0,0,1,0],[67,0,0,1,0],[93,0,0,1,0],[109,0,0,1,0]],"ships":[[25,0,0,1,0],[84,0,0,1,0],[146,0,0,1,0]],"auto":[[25,0,0,1,0],[27,0,0,1,0],[33,0,0,1,0],[68,0,0,1,0],[70,0,0,1,1],[76,0,0,1,0],[88,0,0,1,0],[136,0,0,1,0]],"discover":[[25,0,0,1,0],[68,0,0,1,0],[70,0,0,1,0],[76,0,0,1,0],[106,0,0,1,0]],"website":[[25,0,0,1,0],[27,0,0,2,0],[28,0,0,1,0],[34,0,0,1,0],[66,0,0,0,2],[67,0,0,2,0],[70,0,0,1,0],[72,0,0,1,0],[74,0,0,4,0],[75,0,0,1,0],[76,0,0,2,0],[77,0,0,1,0],[78,0,0,1,0],[79,0,0,1,0],[82,0,0,1,0],[88,0,0,2,0],[91,0,0,1,0],[93,0,0,1,0],[109,0,0,1,0],[123,0,0,1,0],[127,0,0,1,0],[136,0,0,1,0]],"everyone":[[25,0,0,1,0]],"else":[[25,0,0,1,0],[64,0,0,1,0],[151,0,0,1,0]],"flow":[[26,0,1,0,0],[37,0,1,0,0],[88,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0]],"src":[[26,0,0,0,2],[28,0,0,0,1],[29,0,0,0,1],[30,0,0,0,1],[32,0,0,0,1],[37,0,0,0,3],[38,0,0,0,1],[43,0,0,0,4],[48,0,0,0,1],[63,0,0,0,1],[66,0,0,0,2],[74,0,0,0,3],[86,0,0,0,1],[88,0,0,0,1],[91,0,0,2,0],[93,0,0,0,1],[96,0,0,2,0],[138,0,0,1,2],[142,0,0,0,2],[146,0,0,0,1]],"repo":[[26,0,0,0,1],[27,0,0,1,0],[30,0,0,0,2],[31,0,0,0,3],[33,0,0,1,0],[37,0,0,0,1],[38,0,0,1,0],[43,0,0,1,0],[46,0,0,1,0],[82,0,0,2,0],[85,0,0,1,0],[91,0,0,1,0],[94,0,0,0,3],[105,0,0,1,0],[136,0,0,1,0]],"packages":[[26,0,0,0,2],[28,0,0,1,2],[29,0,0,1,1],[32,0,0,0,2],[67,0,0,1,0],[74,0,0,0,1],[82,0,0,1,0],[88,0,0,2,1],[93,0,0,1,1],[136,0,0,0,1]],"lt":[[26,0,0,0,4],[70,0,0,0,1],[74,0,0,0,2]],"gt":[[26,0,0,0,4],[70,0,0,0,1],[74,0,0,0,2]],"consume":[[26,0,0,0,2],[87,0,0,1,0]],"node":[[26,0,0,0,1],[27,0,0,2,0],[28,0,0,1,0],[30,0,0,0,1],[33,0,0,1,1],[51,0,0,1,1],[68,0,0,1,0],[70,0,0,1,1],[74,0,0,1,1],[76,0,0,2,0],[88,0,0,1,0],[96,0,0,2,0],[98,0,0,1,0],[106,0,0,1,0],[116,0,0,1,0],[123,0,0,1,0],[128,0,0,1,0],[136,0,0,1,0],[138,0,0,0,1],[150,0,0,0,1],[151,0,0,1,0]],"modules":[[26,0,0,0,1],[27,0,0,2,0],[28,0,0,1,0],[33,0,0,1,1],[68,0,0,1,0],[70,0,0,1,1],[74,0,0,1,1],[76,0,0,2,0],[88,0,0,1,0],[96,0,0,2,0],[106,0,0,1,0],[116,0,0,1,0],[123,0,0,1,0],[136,0,0,1,0],[144,0,0,1,0]],"claude":[[26,0,0,0,1],[27,0,0,1,0],[68,0,0,1,0],[70,0,0,0,1],[74,0,0,0,1],[88,0,0,1,0],[108,0,0,2,0],[129,0,0,1,0],[136,0,0,1,0]],"codex":[[26,0,0,0,1],[27,0,0,1,0],[68,0,0,1,0],[70,0,0,0,1],[74,0,0,0,1],[88,0,0,1,0],[136,0,0,1,0]],"cursor":[[26,0,0,0,1],[27,0,0,1,0],[68,0,0,1,0],[70,0,0,0,1],[74,0,0,0,1],[88,0,0,1,0],[136,0,0,1,0]],"copilot":[[26,0,0,0,1],[27,0,0,1,0],[68,0,0,1,0],[70,0,0,0,1],[74,0,0,0,1],[88,0,0,1,0],[136,0,0,1,0]],"convention":[[27,0,0,2,0],[123,0,0,1,0]],"absolute":[[27,0,0,1,0],[49,0,0,1,0],[54,0,0,2,0],[70,0,0,0,1],[136,0,0,1,0]],"urls":[[27,0,0,1,0],[41,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0],[56,0,0,3,0],[57,0,0,1,0],[59,0,0,1,0],[70,0,0,0,1],[87,0,0,0,1],[91,0,0,1,0],[115,0,0,1,0],[124,0,0,1,0],[127,0,0,1,0],[132,0,0,1,0],[142,0,0,1,0],[144,0,0,1,0],[151,0,0,1,0]],"fetches":[[27,0,0,1,0]],"over":[[27,0,0,1,0],[30,0,0,1,0],[39,0,0,1,0],[68,0,0,2,0],[70,0,0,1,0],[148,0,0,1,0],[155,0,0,1,0]],"http":[[27,0,0,2,0],[44,0,0,0,4],[56,0,0,0,8],[68,0,0,2,0],[70,0,0,1,3],[74,0,0,2,3],[75,0,0,1,0],[76,0,0,2,0],[77,0,0,1,0],[87,0,0,1,1]],"shape":[[27,0,0,1,0],[43,0,0,1,0],[46,0,0,1,0],[52,0,0,1,0],[65,0,0,1,0],[74,0,0,1,0],[94,0,1,1,0],[108,0,0,1,0],[117,0,1,0,0],[131,0,0,1,0],[136,0,0,2,0]],"hosted":[[27,0,0,1,0],[70,0,0,1,0],[79,0,0,2,0],[98,0,0,1,0],[106,0,0,3,0],[108,0,0,1,0],[123,0,0,2,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,0],[127,0,0,2,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0]],"able":[[27,0,0,1,0]],"major":[[27,0,0,1,0]],"pkg":[[27,0,0,1,0],[70,0,0,0,1],[74,0,0,0,1],[76,0,0,1,0],[123,0,0,1,0],[136,0,0,1,0]],"anyway":[[27,0,0,1,0]],"filesystem":[[27,0,0,2,0],[136,0,0,1,0],[152,0,0,1,0],[155,0,0,2,0]],"solves":[[27,0,0,1,0]],"openai":[[27,0,0,1,0],[154,0,0,0,1]],"github":[[27,0,0,1,0],[43,0,0,1,2],[60,0,1,1,1],[61,0,0,1,0],[96,0,0,1,0],[122,0,0,2,0]],"aider":[[27,0,0,1,0]],"devin":[[27,0,0,1,0]],"others":[[27,0,0,1,0],[76,0,0,1,0]],"working":[[27,0,0,1,0],[33,0,0,2,1],[70,0,0,1,0],[76,0,0,1,0],[140,0,0,1,0]],"supported":[[27,0,0,1,0]],"closest":[[27,0,0,1,0]],"wins":[[27,0,0,1,0]],"natural":[[27,0,0,1,0],[108,0,0,1,0]],"tell":[[27,0,0,1,0],[33,0,1,0,0],[47,0,0,1,0]],"about":[[27,0,0,1,0],[48,0,0,0,1]],"discoverable":[[27,0,0,2,0],[93,0,0,1,0]],"offline":[[27,0,0,1,0],[28,0,0,1,0],[68,0,0,1,0],[70,0,0,0,2],[74,0,0,1,2],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[88,0,1,1,0],[91,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,2,0],[137,0,0,1,1],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0]],"relative":[[28,0,0,1,0],[39,0,0,0,1],[49,0,0,1,0],[54,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[70,0,0,1,0],[72,0,0,1,0],[91,0,0,3,0],[92,0,0,2,0],[93,0,0,1,0],[116,0,0,1,0],[123,0,0,2,0],[124,0,0,1,0],[136,0,0,2,0],[137,0,0,0,1],[146,0,0,1,0]],"quickstart":[[28,0,0,1,1],[40,0,0,0,1],[48,0,0,0,1],[50,0,0,0,3],[51,0,0,1,0],[56,0,0,0,3],[73,0,0,1,0],[77,0,0,1,0],[83,1,1,0,0],[84,1,1,0,0],[85,1,1,0,0],[86,1,1,0,0],[87,1,1,0,1],[88,1,1,0,0],[89,1,1,0,0],[101,0,0,0,1],[102,0,0,0,2],[106,0,0,1,0],[125,0,0,0,4],[131,0,0,0,5],[137,0,0,0,2],[151,0,0,0,1],[152,0,0,0,1]],"meaningful":[[28,0,0,1,0]],"my":[[28,0,0,2,4],[32,0,0,0,2],[33,0,0,0,1],[38,0,0,0,1],[40,0,0,0,1],[48,0,0,0,1],[85,0,0,0,2],[88,0,0,2,1],[93,0,0,0,1],[125,0,0,0,1],[126,0,0,0,2],[136,0,0,0,1],[137,0,0,0,1],[153,0,0,0,1],[154,0,0,0,1]],"local":[[28,0,0,1,0],[56,0,0,2,0],[62,0,1,0,0],[106,0,0,1,0],[140,0,0,1,0],[146,0,0,1,0],[151,0,0,1,0],[157,0,0,1,0]],"skips":[[28,0,0,1,0],[67,0,0,1,0],[68,0,0,2,0],[69,0,0,1,0],[91,0,0,1,0],[93,0,0,1,0]],"those":[[28,0,0,1,0],[46,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[67,0,0,1,0],[72,0,0,1,0],[81,0,0,1,0],[88,0,0,1,0],[93,0,0,1,0],[106,0,0,1,0],[139,0,0,1,0]],"make":[[28,0,0,1,0],[41,0,1,0,0],[42,0,1,0,0],[52,0,0,1,0],[53,0,0,1,0],[65,0,0,1,0],[134,0,0,1,0],[157,0,0,1,0]],"sense":[[28,0,0,1,0],[65,0,0,1,0]],"bash":[[28,0,0,0,1],[29,0,0,0,1],[32,0,0,0,1],[38,0,0,0,1],[43,0,0,0,1],[44,0,0,0,1],[48,0,0,0,1],[56,0,0,0,2],[61,0,0,0,1],[62,0,0,0,1],[63,0,0,0,1],[86,0,0,0,1],[88,0,0,0,1],[90,0,0,0,1],[91,0,0,0,1],[93,0,0,0,1],[96,0,0,0,1],[97,0,0,0,1],[111,0,0,0,1],[155,0,1,0,1]],"summary":[[28,0,0,0,1],[38,0,0,0,2],[40,0,0,0,2],[46,0,0,1,0],[48,0,0,0,1],[61,0,0,1,0],[71,0,0,1,0],[91,0,0,2,0],[94,0,0,0,1],[117,0,0,0,1],[124,0,0,1,0],[126,0,0,0,1],[136,0,0,1,0]],"filter":[[29,0,1,0,0],[39,0,0,0,1],[146,0,0,0,1]],"monorepo":[[29,0,0,1,0]],"many":[[29,0,0,1,0],[62,0,0,1,0],[82,0,0,1,0]],"slice":[[29,0,0,1,0],[71,0,0,1,0],[149,0,0,1,0]],"repeatable":[[29,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[96,0,0,1,0]],"exclude":[[29,0,0,2,1],[32,0,0,1,0],[91,0,0,2,0],[92,0,0,2,0],[94,0,0,0,1]],"filters":[[29,0,0,1,0],[32,0,0,1,0],[94,0,0,0,1]],"overview":[[29,0,0,1,0]],"too":[[29,0,0,1,0],[49,0,0,1,0],[54,0,0,1,0]],"applied":[[29,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0]],"c15t":[[29,0,0,0,1]],"internal":[[29,0,0,0,1],[59,0,0,1,0],[80,0,0,1,0],[96,0,0,1,0]],"control":[[30,0,0,1,0],[39,0,0,1,0],[51,0,0,1,0],[55,0,1,1,0],[95,0,0,1,0],[99,0,0,1,0],[123,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0],[134,0,1,1,0]],"validation":[[30,0,0,1,0],[74,0,0,1,0],[82,0,0,1,0]],"apis":[[30,0,0,1,0],[79,0,0,1,0],[99,0,0,2,0],[100,0,0,1,0],[101,0,0,1,0],[102,0,0,1,0],[103,0,0,1,0],[104,0,0,1,0],[123,0,0,2,0],[125,0,0,0,1],[131,0,0,0,1],[132,0,0,1,0],[139,0,0,1,0],[151,0,0,1,0]],"script":[[30,0,0,2,0],[39,0,0,2,0],[50,0,0,0,1],[56,0,0,1,0],[69,0,0,1,0],[95,0,0,3,0],[131,0,0,0,3],[132,0,0,1,0]],"point":[[30,0,0,1,0],[33,0,0,2,0],[56,0,0,2,0],[99,0,0,1,0],[123,0,0,1,0],[135,0,0,1,0],[146,0,0,1,0]],"tsup":[[30,0,0,1,1]],"scripts":[[30,0,0,1,2],[39,0,0,2,5],[98,0,0,1,0]],"dist":[[30,0,0,0,1],[33,0,0,1,0]],"readme":[[30,0,0,0,1],[33,0,0,1,0],[111,0,0,1,0]],"rm":[[30,0,0,0,3],[142,0,0,0,2]],"fs":[[30,0,0,0,1],[128,0,0,1,0],[138,0,0,0,1]],"promises":[[30,0,0,0,1],[138,0,0,0,1]],"convertallmdx":[[30,0,0,0,2],[39,0,0,0,2],[98,0,0,1,0],[99,0,0,1,1],[100,0,1,0,1],[104,0,0,1,0],[126,0,0,0,2],[137,0,0,1,0]],"generateagentsmd":[[30,0,0,0,1],[31,0,0,0,1],[98,0,0,1,0],[123,0,0,2,1],[136,0,1,0,2],[137,0,1,0,0]],"resolvedocsnavigation":[[30,0,0,0,1],[31,0,0,0,1],[69,0,0,1,0],[98,0,0,1,0],[123,0,0,0,1],[138,0,1,0,1]],"defaultremarkplugins":[[30,0,0,0,2],[31,0,0,0,1],[39,0,0,0,2],[98,0,0,1,0],[100,0,0,1,2],[101,0,0,0,1],[102,0,0,0,1],[104,0,0,0,2],[126,0,0,0,2],[141,0,0,0,1],[142,0,0,1,0],[145,0,0,0,1],[146,0,0,0,2],[147,0,0,1,0]],"docsconfig":[[30,0,0,0,1],[31,0,0,0,3],[95,0,0,0,3],[126,0,0,0,4],[127,0,0,0,3],[136,0,0,0,2],[138,0,0,0,1]],"process":[[30,0,0,0,2],[31,0,0,0,2],[39,0,0,0,1],[95,0,0,0,1],[100,0,0,1,0],[138,0,0,0,2],[140,0,0,0,3],[146,0,0,0,1]],"cwd":[[30,0,0,0,2],[39,0,0,0,1],[95,0,0,0,1],[146,0,0,0,1]],"await":[[30,0,0,0,3],[31,0,0,0,2],[39,0,0,0,1],[51,0,0,0,1],[95,0,0,0,1],[100,0,0,0,1],[101,0,0,0,1],[102,0,0,0,1],[116,0,0,0,1],[121,0,0,0,1],[126,0,0,0,4],[127,0,0,0,4],[129,0,0,0,2],[136,0,0,0,1],[138,0,0,0,3],[150,0,0,0,1],[155,0,0,0,1]],"recursive":[[30,0,0,0,1],[138,0,0,0,1]],"force":[[30,0,0,0,2]],"srcdir":[[30,0,0,0,1],[31,0,0,0,3],[39,0,0,0,2],[94,0,0,0,1],[95,0,0,0,1],[96,0,0,2,1],[100,0,0,2,1],[116,0,0,3,1],[121,0,0,0,1],[126,0,0,0,2],[136,0,0,1,1],[138,0,0,0,1]],"outdir":[[30,0,0,0,1],[31,0,0,0,2],[39,0,0,0,2],[94,0,0,0,1],[95,0,0,0,1],[100,0,0,1,1],[126,0,0,1,4],[127,0,0,1,1],[136,0,0,4,1],[150,0,0,1,3]],"remarkplugins":[[30,0,0,0,1],[31,0,0,0,1],[39,0,0,0,2],[100,0,0,1,1],[102,0,0,0,1],[104,0,0,0,1],[126,0,0,0,1],[145,0,0,0,1],[146,0,0,0,1]],"fast":[[30,0,0,0,1],[31,0,0,0,1],[58,0,0,1,0],[122,0,0,1,0],[157,0,0,1,0]],"bad":[[30,0,0,0,1],[31,0,0,0,1]],"length":[[31,0,0,0,1],[138,0,0,0,1]],"urlpath":[[31,0,0,0,2],[40,0,0,0,2],[41,0,0,0,1],[50,0,0,0,1],[51,0,0,0,1],[129,0,0,0,1],[131,0,0,0,1],[138,0,0,0,2]],"stderr":[[31,0,0,0,1],[94,0,0,1,0],[138,0,0,0,1]],"write":[[31,0,0,0,1],[72,0,0,2,0],[74,0,0,1,0],[76,0,0,1,0],[86,0,0,1,0],[102,0,0,1,0],[138,0,0,1,1],[139,0,0,1,0]],"exit":[[31,0,0,0,1],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,2,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,3,0],[97,0,0,1,0],[98,0,0,1,0],[138,0,0,0,1]],"verify":[[32,0,1,0,0],[44,0,1,0,0],[56,0,1,0,0],[87,0,0,0,1]],"publishing":[[32,0,1,0,0],[79,0,0,2,0]],"pack":[[32,0,0,1,1]],"dry":[[32,0,0,1,1]],"check":[[32,0,0,2,0],[40,0,0,1,0],[44,0,0,1,0],[56,0,0,2,0],[105,0,0,1,0],[108,0,0,1,0],[114,0,0,1,0]],"cd":[[32,0,0,0,1],[111,0,0,0,1]],"consuming":[[33,0,1,0,0]],"projects":[[33,0,1,0,0],[110,0,0,1,0]],"discovered":[[33,0,0,1,0],[88,0,0,1,0]],"depends":[[33,0,0,1,0],[70,0,0,1,0],[72,0,0,1,0],[76,0,0,1,0]],"directory":[[33,0,0,1,0],[67,0,0,1,0],[72,0,0,1,0],[91,0,0,1,0],[100,0,0,2,0]],"consumer":[[33,0,0,1,0]],"yours":[[33,0,0,1,0],[75,0,0,1,0]],"recommend":[[33,0,0,1,0]],"snippet":[[33,0,0,1,0]],"consumers":[[33,0,0,1,0]],"their":[[33,0,0,1,0]],"own":[[33,0,0,1,0],[74,0,0,1,0],[79,0,0,1,0],[81,0,1,0,0],[127,0,0,1,0],[131,0,0,1,0]],"pattern":[[33,0,0,1,0],[106,0,0,2,0]],"re":[[33,0,0,0,1],[96,0,0,1,0],[142,0,0,0,2],[157,0,0,1,0]],"version":[[33,0,0,0,1],[79,0,1,0,0],[119,0,0,1,0],[135,0,1,2,0]],"matched":[[33,0,0,0,1]],"installed":[[33,0,0,0,1],[34,0,0,1,0],[68,0,0,1,0]],"stay":[[33,0,0,0,1],[151,0,0,1,0]],"accurate":[[33,0,0,0,1]],"updates":[[33,0,0,0,1],[122,0,0,1,0]],"understand":[[34,0,0,1,0],[89,0,0,1,0]],"dependency":[[34,0,0,1,0],[79,0,0,1,0],[151,0,0,1,0]],"itself":[[34,0,0,1,0]],"web":[[34,0,0,1,0],[51,0,0,1,0],[106,0,0,1,0],[128,0,0,2,0],[129,0,0,1,0]],"access":[[34,0,0,1,0]],"ide":[[34,0,0,1,0]],"assistants":[[34,0,0,1,0]],"air":[[34,0,0,1,0]],"gapped":[[34,0,0,1,0]],"environments":[[34,0,0,1,0],[49,0,0,1,0]],"goal":[[34,0,0,1,0]],"emit":[[34,0,0,1,0],[67,0,0,1,0]],"shapes":[[34,0,0,1,0],[67,0,0,1,0]],"runs":[[36,0,0,1,0],[52,0,0,2,0],[53,0,0,1,0],[58,0,0,1,0],[60,0,0,0,1],[72,0,1,1,0],[80,0,0,1,0],[86,0,0,1,0],[90,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[142,0,0,1,0]],"produce":[[36,0,0,1,0],[40,0,0,1,0],[91,0,0,1,0],[132,0,0,1,0],[137,0,0,1,0]],"astro":[[36,0,0,1,0],[39,0,0,1,0],[49,0,0,0,1],[52,0,0,2,0],[67,0,0,1,0],[71,0,0,1,0],[74,0,0,1,0],[79,0,0,2,0],[131,0,0,1,0]],"anything":[[36,0,0,1,0],[43,0,0,1,0],[74,0,0,1,0]],"handles":[[36,0,0,1,0],[46,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[82,0,0,1,0],[125,0,0,0,1]],"pub":[[37,0,0,0,3]],"sitemap":[[37,0,0,0,1],[41,0,0,3,0],[42,0,0,1,0],[44,0,0,4,2],[47,0,0,2,0],[48,0,0,0,2],[49,0,0,3,4],[52,0,0,3,0],[53,0,0,2,0],[54,0,1,2,5],[56,0,0,1,3],[57,0,0,5,0],[66,0,0,0,1],[67,0,0,3,0],[69,0,0,3,0],[72,0,0,1,0],[74,0,0,0,1],[86,0,0,2,0],[87,0,0,0,2],[91,0,0,2,0],[94,0,0,4,2],[123,0,0,2,0],[124,0,0,4,0],[127,0,0,2,2],[129,0,0,1,0],[130,0,0,2,4],[132,0,0,1,0],[133,0,0,1,0]],"xml":[[37,0,0,0,1],[41,0,0,1,0],[44,0,0,2,2],[47,0,0,1,0],[48,0,0,0,1],[49,0,0,3,2],[52,0,0,1,0],[53,0,0,1,0],[54,0,1,1,3],[56,0,0,0,2],[57,0,0,2,0],[67,0,0,1,0],[69,0,0,1,0],[86,0,0,1,0],[87,0,0,0,1],[91,0,0,1,0],[94,0,0,1,1],[123,0,0,1,0],[124,0,0,2,0],[127,0,0,1,1],[130,0,0,0,2]],"gen":[[37,0,0,0,4]],"discovery":[[37,0,0,0,1],[38,0,0,1,0],[41,0,0,2,0],[44,0,0,1,0],[47,0,0,1,0],[49,0,1,0,0],[69,0,0,1,0],[70,0,0,0,1],[72,0,0,1,0],[76,0,0,1,0],[127,0,0,1,0],[129,0,0,1,0],[136,0,0,1,0]],"off":[[38,0,1,0,0],[91,0,0,1,0],[92,0,0,1,0],[96,0,0,1,0]],"single":[[38,0,0,2,0],[74,0,0,1,0],[75,0,0,2,0],[76,0,0,1,0],[77,0,0,1,0],[92,0,0,1,0],[94,0,0,1,0]],"together":[[38,0,0,1,0],[40,0,0,1,0],[122,0,0,1,0]],"generates":[[38,0,0,1,0],[76,0,0,1,0]],"builds":[[38,0,0,1,0],[39,0,0,1,0],[76,0,0,1,0],[140,0,0,1,0],[148,0,0,1,0]],"resolves":[[38,0,0,1,0],[76,0,0,1,0]],"paths":[[38,0,0,1,0],[39,0,0,0,1],[48,0,0,1,0],[53,0,0,1,0],[60,0,0,0,1],[62,0,0,1,0],[67,0,0,1,0],[96,0,0,1,0],[98,0,0,1,0],[123,0,0,1,0],[133,0,0,1,0],[137,0,0,0,1],[151,0,0,1,0],[157,0,0,1,0]],"listed":[[38,0,0,1,0]],"inspected":[[38,0,0,1,0]],"detail":[[38,0,0,1,0]],"under":[[38,0,0,1,0],[41,0,0,1,0],[48,0,0,1,0],[62,0,0,1,0],[72,0,0,1,0],[91,0,0,1,0],[96,0,0,1,0],[106,0,0,2,0],[116,0,0,1,0],[127,0,0,1,0],[136,0,0,1,0],[150,0,0,1,0]],"base":[[38,0,0,0,1],[39,0,0,1,0],[48,0,0,0,1],[56,0,0,2,0],[86,0,0,0,1],[91,0,0,2,0],[98,0,0,1,0],[140,0,1,2,2]],"https":[[38,0,0,0,1],[43,0,0,0,1],[48,0,0,0,1],[50,0,0,0,2],[86,0,0,0,1],[95,0,0,0,1],[126,0,0,0,3],[127,0,0,0,2],[131,0,0,0,3],[138,0,0,0,1],[140,0,0,0,1],[150,0,0,0,1]],"simplest":[[39,0,0,1,0]],"setup":[[39,0,0,1,0],[41,0,0,1,0],[49,0,0,1,0],[60,0,0,0,1],[140,0,0,1,0]],"stage":[[39,0,0,1,0],[40,0,0,1,0],[72,0,0,1,0],[101,0,0,1,0]],"rerun":[[39,0,0,1,0]],"independently":[[39,0,0,1,0],[71,0,0,1,0]],"splitting":[[39,0,0,1,0],[150,0,0,1,0]],"separate":[[39,0,0,1,0],[86,0,0,1,0],[149,0,0,1,0]],"canonical":[[39,0,0,1,0],[41,0,0,2,0],[47,0,0,2,0],[50,0,0,2,1],[51,0,0,2,0],[52,0,0,1,0],[56,0,0,1,0],[57,0,0,2,0],[91,0,0,1,0],[124,0,0,1,0],[129,0,0,3,0],[131,0,0,1,1],[132,0,0,3,0]],"remarkinclude":[[39,0,0,1,2],[100,0,0,1,2],[104,0,0,2,2],[126,0,0,0,2],[141,0,0,0,1],[145,0,1,0,1],[147,0,0,1,0]],"enables":[[39,0,0,1,0]],"foo":[[39,0,0,1,0],[67,0,0,1,0],[71,0,0,1,0],[132,0,0,3,0]],"style":[[39,0,0,1,0],[153,0,0,1,0]],"partial":[[39,0,0,1,0],[145,0,0,1,0]],"expansion":[[39,0,0,1,0]],"basepath":[[39,0,0,1,2],[146,0,1,1,1]],"swap":[[39,0,0,1,0]],"remarktypetabletomarkdown":[[39,0,0,1,3],[141,0,0,0,1],[142,0,0,1,1],[146,0,1,0,3]],"needed":[[39,0,0,1,0],[54,0,0,1,0],[130,0,0,1,0],[146,0,0,1,0]],"plugins":[[39,0,0,1,0],[66,0,0,1,0],[71,0,0,1,0],[98,0,0,1,0],[104,0,1,1,0],[141,1,1,0,0],[142,1,1,0,0],[143,1,1,0,0],[144,1,1,0,0],[145,1,2,0,0],[146,1,2,0,0],[147,1,1,1,0]],"mdxtomarkdownoptions":[[39,0,0,0,2]],"reporoot":[[39,0,0,0,4]],"resolve":[[39,0,0,0,1],[56,0,0,1,0],[72,0,0,1,0],[86,0,0,1,0],[137,0,0,1,0],[146,0,0,1,0]],"typetableplugin":[[39,0,0,0,2]],"nonnullable":[[39,0,0,0,1]],"number":[[39,0,0,0,1],[117,0,0,0,3]],"enrichfrontmatterfromgit":[[39,0,0,0,1],[100,0,0,1,1],[101,0,0,0,1]],"configure":[[40,0,1,0,0]],"let":[[40,0,0,1,0],[74,0,0,1,0]],"manifest":[[40,0,0,1,0],[41,0,0,0,2],[48,0,0,1,0],[49,0,0,0,6],[50,0,0,3,0],[51,0,0,0,2],[54,0,0,1,5],[66,0,0,0,2],[69,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[127,0,0,2,3],[128,0,0,1,0],[129,0,0,0,1],[130,0,0,1,3],[131,0,0,2,2],[132,0,0,1,0],[133,0,0,1,0],[135,0,1,1,0],[138,0,0,2,0]],"catches":[[40,0,0,1,0],[59,0,1,0,0],[114,0,0,1,0],[115,0,0,1,0]],"typos":[[40,0,0,1,0]],"resolution":[[40,0,0,1,0],[138,0,0,1,0],[144,0,0,2,0]],"definedocsconfig":[[40,0,0,0,2]],"export":[[40,0,0,0,1],[51,0,0,0,1],[54,0,0,0,1],[142,0,0,1,0]],"bullets":[[40,0,0,0,1]],"beststartingpoints":[[40,0,0,0,1]],"pieces":[[41,0,0,1,0]],"robots":[[41,0,0,2,0],[42,0,0,1,0],[44,0,0,1,0],[46,0,0,1,0],[47,0,0,2,0],[48,0,0,1,1],[49,0,0,1,1],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,3,0],[53,0,0,2,0],[54,0,1,2,2],[55,0,0,1,0],[56,0,0,2,0],[57,0,0,4,0],[66,0,0,0,1],[67,0,0,2,0],[69,0,0,2,0],[72,0,0,1,0],[86,0,0,1,0],[87,0,0,0,1],[91,0,0,2,0],[94,0,0,3,1],[123,0,0,1,0],[124,0,0,1,0],[127,0,0,1,1],[129,0,0,1,0],[130,0,0,1,2],[132,0,0,1,0],[133,0,0,1,0]],"available":[[41,0,0,1,0],[98,0,0,1,0]],"ld":[[41,0,0,2,0],[46,0,0,1,0],[47,0,0,2,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,1,3,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,2,0],[57,0,0,2,0],[98,0,0,1,0],[131,0,0,1,4],[132,0,0,2,0]],"alternate":[[41,0,0,1,0],[47,0,0,1,0],[50,0,0,1,1],[57,0,0,1,0],[98,0,0,1,0],[131,0,0,1,1],[132,0,0,1,0]],"return":[[41,0,0,1,2],[49,0,0,0,4],[51,0,1,0,2],[52,0,1,0,0],[53,0,1,0,0],[54,0,1,0,5],[55,0,1,0,0],[56,0,0,1,0],[57,0,0,2,0],[87,0,0,0,1],[128,0,0,1,0],[129,0,0,0,2],[132,0,0,2,0]],"known":[[41,0,0,1,0],[51,0,0,1,0],[72,0,0,1,0],[87,0,0,0,1],[132,0,0,1,0],[133,0,0,1,0]],"ai":[[41,0,0,1,0],[51,0,0,1,0],[55,0,0,1,0],[57,0,0,1,0],[70,0,0,0,1],[71,0,0,1,0],[74,0,0,0,1],[79,0,0,1,0],[87,0,0,0,1],[124,0,0,1,0],[129,0,0,3,0],[132,0,0,2,0],[133,0,0,1,0],[134,0,0,1,0],[154,0,0,1,5],[155,0,0,1,0]],"user":[[41,0,0,1,0],[51,0,0,2,0],[55,0,0,2,0],[56,0,0,0,2],[57,0,0,1,0],[71,0,0,1,0],[87,0,0,0,1],[129,0,0,3,0],[132,0,0,2,0],[133,0,0,1,0],[134,0,0,2,0]],"direct":[[41,0,0,1,0],[51,0,0,1,0],[87,0,0,0,1],[132,0,0,1,0]],"preserve":[[41,0,0,1,0],[87,0,0,0,1]],"last":[[41,0,0,1,0],[47,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[64,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0],[144,0,0,1,0]],"updated":[[41,0,0,1,0],[47,0,0,1,0],[51,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0]],"provides":[[41,0,0,1,0],[81,0,0,1,0]],"roll":[[41,0,0,1,0]],"request":[[41,0,0,3,4],[42,0,0,2,0],[49,0,0,1,1],[51,0,0,2,6],[54,0,0,1,3],[56,0,0,1,0],[60,0,0,0,1],[71,0,0,1,0],[98,0,0,1,0],[128,0,0,1,0],[129,0,0,1,4],[130,0,0,1,2],[156,0,0,1,0]],"detection":[[41,0,0,1,0]],"aliases":[[41,0,0,1,0],[51,0,0,1,0],[132,0,0,1,0]],"escaping":[[41,0,0,1,0]],"guide":[[41,0,0,1,0],[46,0,0,1,0],[132,0,0,1,0]],"optimize":[[41,0,0,1,0],[45,0,0,1,0],[46,1,1,0,0],[47,1,1,0,0],[48,1,1,0,0],[49,1,1,0,0],[50,1,1,0,0],[51,1,1,0,0],[52,1,1,0,0],[53,1,1,0,0],[54,1,1,0,0],[55,1,1,0,0],[56,1,1,0,0],[57,1,1,0,0],[89,0,0,1,0],[132,0,0,1,0]],"core":[[41,0,0,1,0],[89,0,0,1,0]],"hook":[[41,0,0,2,0],[42,0,0,1,0],[44,0,0,1,0],[62,0,1,1,0]],"any":[[41,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[79,0,0,1,0],[96,0,0,1,0],[122,0,0,1,0],[125,0,0,0,1],[128,0,0,1,0],[145,0,0,1,0],[147,0,0,1,0],[153,0,0,1,0]],"put":[[41,0,0,1,0],[51,0,0,1,0]],"normal":[[41,0,0,1,0],[42,0,0,1,0],[87,0,0,0,1]],"browsers":[[41,0,0,1,0],[134,0,0,1,0]],"continue":[[41,0,0,1,0]],"receive":[[41,0,0,2,0],[47,0,0,1,0]],"oriented":[[41,0,0,1,0],[51,0,0,1,0],[56,0,0,1,0],[129,0,0,2,0]],"requests":[[41,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[56,0,0,1,0],[71,0,0,1,0],[87,0,0,0,1],[129,0,0,1,0]],"charset":[[41,0,0,1,0],[44,0,0,1,0],[51,0,0,1,0],[56,0,0,1,0],[87,0,0,0,1],[129,0,0,1,0]],"utf":[[41,0,0,1,0],[44,0,0,1,0],[51,0,0,1,0],[56,0,0,1,0],[87,0,0,0,1],[129,0,0,1,0]],"implementing":[[41,0,0,1,0]],"codebase":[[41,0,0,1,0]],"response":[[41,0,0,1,6],[44,0,0,2,0],[51,0,0,1,1],[52,0,0,1,0],[54,0,0,0,1],[98,0,0,1,0],[128,0,0,2,0],[129,0,0,1,3],[132,0,0,2,0],[154,0,0,3,1]],"must":[[41,0,0,2,0],[42,0,0,2,0],[51,0,0,1,0],[55,0,0,2,0],[129,0,0,1,0],[134,0,0,1,0],[144,0,0,2,0]],"intercept":[[41,0,0,1,0],[42,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0]],"createagentmarkdownresponse":[[41,0,0,0,2],[51,0,0,1,2],[55,0,0,1,0],[87,0,0,0,1],[128,0,0,0,1],[129,0,1,0,1],[132,0,0,1,0]],"method":[[41,0,0,0,2],[51,0,0,0,2],[129,0,0,0,2]],"headers":[[41,0,0,0,4],[51,0,0,1,2],[55,0,0,1,0],[57,0,0,1,0],[129,0,0,1,2],[132,0,0,2,0],[156,0,0,1,0]],"object":[[41,0,0,0,1],[51,0,0,0,1],[92,0,0,1,0],[94,0,0,1,0],[121,0,0,0,1],[129,0,0,0,1],[132,0,0,1,0],[138,0,0,1,0]],"fromentries":[[41,0,0,0,1],[51,0,0,0,1],[129,0,0,0,1]],"requestorigin":[[41,0,0,0,1],[49,0,0,0,5],[51,0,0,0,1],[54,0,0,1,5],[129,0,0,0,1],[130,0,0,1,2]],"origin":[[41,0,0,0,1],[49,0,0,0,1],[51,0,0,0,1],[52,0,0,1,0],[53,0,0,1,0],[54,0,1,1,1],[56,0,0,1,0],[129,0,0,0,1],[130,0,0,1,2],[132,0,0,1,0]],"readmarkdownfile":[[41,0,0,0,1],[51,0,0,1,1],[129,0,0,1,1]],"readgeneratedfile":[[41,0,0,0,1],[51,0,0,0,1],[129,0,0,0,1]],"filepath":[[41,0,0,0,1],[51,0,0,0,1],[129,0,0,0,1]],"status":[[41,0,0,0,2]],"sponse":[[42,0,0,1,0]],"wiring":[[42,0,0,1,0],[122,0,0,1,0]],"test":[[42,0,0,1,0],[106,0,0,2,0]],"remote":[[43,0,1,0,0]],"malformed":[[43,0,0,1,0]],"format":[[43,0,0,1,1],[60,0,0,1,1],[61,0,0,2,1],[92,0,0,2,0],[96,0,0,2,0],[108,0,0,1,0],[122,0,0,2,0],[149,0,0,1,0]],"inline":[[43,0,0,1,0],[60,0,0,1,0],[90,0,0,1,0]],"annotations":[[43,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0]],"pr":[[43,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0]],"automation":[[43,0,0,1,0]],"stats":[[43,0,0,1,0],[94,0,0,0,1]],"we":[[43,0,0,1,0],[106,0,1,0,0],[107,0,1,0,0],[108,0,1,0,0]],"expect":[[43,0,0,1,0]],"orgs":[[43,0,0,1,0]],"hosting":[[43,0,0,1,0],[81,0,0,1,0]],"repos":[[43,0,0,1,0],[82,0,0,1,0]],"documents":[[43,0,0,1,0],[82,0,0,1,0]],"pulls":[[43,0,0,1,0]],"clone":[[43,0,0,0,1]],"depth":[[43,0,0,0,1]],"com":[[43,0,0,0,1]],"acme":[[43,0,0,0,1]],"clean":[[44,0,0,1,0],[99,0,0,1,0],[103,0,0,1,0],[142,0,0,0,1],[144,0,0,1,0]],"home":[[44,0,0,1,0]],"mention":[[44,0,0,1,0]],"merge":[[44,0,0,1,0],[69,0,0,1,0],[86,0,0,1,0],[94,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[127,0,0,1,0],[130,0,0,0,1]],"serving":[[44,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[69,0,0,1,0],[94,0,0,1,0],[127,0,0,1,0]],"server":[[44,0,0,1,0],[51,0,0,1,0],[52,0,0,3,0],[71,0,0,1,0]],"running":[[44,0,0,1,0],[62,0,0,1,0],[75,0,0,1,0]],"curl":[[44,0,0,0,4],[56,0,0,0,7],[87,0,0,0,1]],"localhost":[[44,0,0,0,4],[56,0,0,1,8],[87,0,0,0,1]],"evals":[[45,0,0,1,0],[46,0,0,2,0],[105,1,1,0,0],[106,1,1,0,0],[107,1,1,0,0],[108,1,1,0,0],[109,1,1,0,0],[110,1,1,0,0],[111,1,2,1,3],[124,0,0,1,0]],"set":[[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[84,0,0,1,0],[109,0,0,1,0],[118,0,0,1,0],[134,0,0,1,0]],"mirrors":[[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,2,0],[80,0,0,1,0],[100,0,0,1,0],[106,0,0,1,0]],"sitemaps":[[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,2,0],[57,0,0,1,0]],"audit":[[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,5,1],[57,0,0,1,0]],"find":[[46,0,0,1,0],[50,0,0,0,1],[88,0,0,1,0],[155,0,0,1,0]],"fetch":[[46,0,0,1,0],[51,0,0,0,2],[52,0,0,1,0],[68,0,0,1,0],[70,0,0,1,1],[76,0,0,1,0]],"attribute":[[46,0,0,1,0]],"cite":[[46,0,0,1,0],[153,0,0,1,0]],"wires":[[46,0,0,1,0]],"based":[[46,0,0,1,0]],"benchmark":[[46,0,0,1,0],[106,0,1,2,0],[107,0,1,0,0],[108,0,0,1,0],[110,0,0,1,0],[124,0,0,1,0]],"question":[[46,0,0,1,0],[110,0,1,0,0]],"around":[[46,0,0,1,0],[154,0,0,1,0]],"larger":[[46,0,0,1,0],[110,0,0,2,0]],"corpus":[[46,0,0,1,0],[106,0,0,1,0],[110,0,0,2,0]],"scaling":[[46,0,0,1,0]],"four":[[47,0,0,1,0],[106,0,0,1,0],[123,0,0,1,0]],"layers":[[47,0,0,1,0],[148,0,0,1,0]],"exists":[[47,0,0,1,0]],"retrieval":[[47,0,0,1,0]],"mirror":[[47,0,0,1,0],[48,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[127,0,0,1,0]],"instead":[[47,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[155,0,0,1,0]],"structured":[[47,0,0,1,0],[69,0,0,1,0],[124,0,0,1,0]],"extract":[[47,0,0,1,0]],"identity":[[47,0,0,1,0]],"guessing":[[47,0,0,1,0]],"dom":[[47,0,0,1,0]],"attribution":[[47,0,0,1,0]],"keeps":[[47,0,0,1,0],[49,0,0,1,0],[82,0,0,1,0],[109,0,0,1,0],[140,0,0,1,0],[150,0,0,1,0]],"freshness":[[47,0,0,1,0],[48,0,0,1,0],[127,0,0,1,0]],"bridge":[[48,0,0,1,0]],"between":[[48,0,0,1,0],[147,0,0,1,0]],"descriptions":[[48,0,0,1,0],[124,0,0,1,0],[139,0,0,2,0]],"dates":[[48,0,0,1,0],[124,0,0,1,0],[127,0,0,1,0]],"regenerators":[[49,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0]],"rather":[[49,0,0,1,0]],"than":[[49,0,0,1,0]],"few":[[49,0,0,1,0],[71,0,0,1,0]],"staging":[[49,0,0,1,0],[54,0,0,1,0],[130,0,0,1,0]],"honest":[[49,0,0,1,0]],"rebuilding":[[49,0,0,1,0]],"marketing":[[49,0,0,1,0],[69,0,0,1,0],[86,0,0,1,0],[94,0,0,1,0],[124,0,0,1,0]],"blog":[[49,0,0,1,0],[69,0,0,1,0],[86,0,0,1,0],[94,0,0,1,0],[124,0,0,1,0]],"changelog":[[49,0,0,1,0],[69,0,0,1,0],[86,0,0,1,0],[94,0,0,1,0],[96,0,0,2,0],[116,0,0,2,0],[117,0,0,0,1],[119,0,1,0,0],[124,0,0,1,0]],"through":[[49,0,0,1,0],[72,0,0,1,0],[86,0,0,1,0],[115,0,0,1,0],[129,0,0,1,0],[151,0,0,1,0]],"regenerator":[[49,0,0,1,0]],"merges":[[49,0,0,1,0]],"rebased":[[49,0,0,1,0],[132,0,0,1,0]],"straight":[[49,0,0,1,0]],"versions":[[49,0,0,1,0]],"etc":[[49,0,0,1,1],[88,0,0,1,0],[94,0,0,1,0],[131,0,0,1,0],[136,0,0,1,0]],"audits":[[49,0,0,1,0]],"especially":[[49,0,0,1,0]],"audited":[[49,0,0,1,0]],"endpoint":[[49,0,0,0,1],[52,0,0,1,0]],"cloudflare":[[49,0,0,0,1],[51,0,0,1,1],[52,0,0,1,0],[71,0,0,1,0],[128,0,0,1,0],[151,0,0,1,0],[154,0,0,1,2],[156,0,0,1,0]],"worker":[[49,0,0,0,1],[52,0,0,1,0]],"createrobotstxtresponse":[[49,0,0,0,2],[54,0,0,0,3],[128,0,0,0,1],[130,0,1,0,1],[132,0,0,1,0]],"createsitemapmarkdownresponse":[[49,0,0,0,2],[54,0,0,0,2],[128,0,0,0,1],[130,0,1,0,0],[132,0,0,1,0]],"createsitemapxmlresponse":[[49,0,0,0,3],[54,0,0,0,2],[128,0,0,0,1],[130,0,1,0,1],[132,0,0,1,0]],"pathname":[[49,0,0,0,5],[54,0,0,0,1]],"marketingpages":[[49,0,0,0,1],[130,0,0,0,1]],"blogpages":[[49,0,0,0,1]],"current":[[50,0,0,1,0],[56,0,0,1,0],[109,0,1,0,0],[110,0,0,1,0]],"org":[[50,0,0,1,0],[131,0,0,0,1],[132,0,0,1,0],[140,0,0,1,0]],"head":[[50,0,0,1,0],[131,0,0,1,3],[132,0,0,1,0]],"renderjsonld":[[50,0,0,1,2],[128,0,0,0,1],[132,0,0,1,0]],"typed":[[50,0,0,1,0],[59,0,0,1,0],[64,0,0,1,0],[131,0,0,0,1]],"renderjsonldscript":[[50,0,0,1,2],[128,0,0,0,1],[132,0,0,1,0]],"expects":[[50,0,0,1,0],[56,0,0,1,0]],"modified":[[50,0,0,1,0]],"date":[[50,0,0,1,0],[119,0,0,2,0]],"breadcrumbs":[[50,0,0,1,0]],"scraping":[[50,0,0,1,0]],"agentmanifest":[[50,0,0,0,4]],"jsonld":[[50,0,0,0,1]],"rel":[[50,0,0,0,2],[51,0,0,1,0],[129,0,0,1,0],[131,0,0,0,2]],"handlers":[[51,0,0,1,0],[71,0,0,1,0],[79,0,0,1,0]],"returns":[[51,0,0,1,0],[71,0,0,1,0],[87,0,0,0,1],[129,0,0,2,0],[131,0,0,1,0],[136,0,0,1,0],[138,0,0,1,0]],"null":[[51,0,0,1,1],[54,0,0,0,2],[55,0,0,1,0],[129,0,0,3,0],[134,0,0,1,0],[138,0,0,0,1]],"values":[[51,0,0,1,0],[95,0,0,1,0]],"respected":[[51,0,0,1,0]],"gptbot":[[51,0,0,1,0],[129,0,0,1,0]],"claudebot":[[51,0,0,1,0],[129,0,0,1,0]],"bingbot":[[51,0,0,1,0],[129,0,0,1,0]],"amazonbot":[[51,0,0,1,0],[129,0,0,1,0]],"metaexternalagent":[[51,0,0,1,0],[129,0,0,1,0]],"perplexitybot":[[51,0,0,1,0],[129,0,0,1,0]],"mistralbot":[[51,0,0,1,0],[129,0,0,1,0]],"applebot":[[51,0,0,1,0],[129,0,0,1,0]],"bytespider":[[51,0,0,1,0],[129,0,0,1,0]],"youbot":[[51,0,0,1,0],[129,0,0,1,0]],"such":[[51,0,0,1,0]],"injected":[[51,0,0,1,0]],"discard":[[51,0,0,1,0]],"vary":[[51,0,0,1,0],[55,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0],[134,0,0,1,0]],"cache":[[51,0,0,1,0],[55,0,1,2,0],[129,0,0,1,0],[132,0,0,1,0],[134,0,1,2,0]],"max":[[51,0,0,1,0],[55,0,0,1,0],[60,0,0,1,1],[62,0,0,0,1],[96,0,0,1,0],[129,0,0,1,0],[134,0,0,1,0]],"age":[[51,0,0,1,0],[55,0,0,1,0],[129,0,0,1,0],[134,0,0,1,0]],"revalidate":[[51,0,0,1,0],[55,0,0,1,0],[129,0,0,1,0],[134,0,0,1,0]],"sync":[[51,0,0,1,0],[129,0,0,1,0]],"async":[[51,0,0,1,2],[129,0,0,1,1]],"vercel":[[51,0,0,1,1],[56,0,0,1,1],[127,0,0,1,0],[128,0,0,1,0],[151,0,0,1,0],[154,0,0,0,2],[155,0,0,1,0],[156,0,0,1,0]],"edge":[[51,0,0,2,1],[52,0,0,1,0],[80,0,0,1,0],[128,0,0,2,0],[148,0,0,1,0],[151,0,0,1,0],[157,0,0,1,0]],"workers":[[51,0,0,1,0],[52,0,0,1,0],[71,0,0,1,0],[128,0,0,1,0],[154,0,0,0,1]],"logic":[[51,0,0,1,0],[71,0,0,1,0],[138,0,0,1,0]],"wherever":[[51,0,0,1,0],[71,0,0,1,0]],"usually":[[51,0,0,1,0],[52,0,0,1,0],[64,0,0,1,0],[84,0,0,1,0],[100,0,0,1,0],[122,0,0,1,0],[147,0,0,1,0]],"h3":[[51,0,0,1,0],[52,0,0,2,0]],"function":[[51,0,0,0,1],[54,0,0,0,1],[100,0,0,1,0],[149,0,0,1,0]],"handlerequest":[[51,0,0,0,1]],"promise":[[51,0,0,0,1]],"disk":[[51,0,0,0,1],[68,0,0,1,0],[69,0,0,1,0],[101,0,0,1,0],[105,0,0,1,0]],"kv":[[51,0,0,0,1],[52,0,0,1,0],[156,0,0,2,0]],"r2":[[51,0,0,0,1],[52,0,0,1,0]],"asset":[[51,0,0,0,2],[52,0,0,2,0],[53,0,0,1,0]],"binding":[[51,0,0,0,1],[52,0,0,1,0],[154,0,0,1,0]],"apps":[[52,0,0,1,0],[69,0,0,1,0],[124,0,0,1,0],[127,0,0,1,0],[156,0,0,1,0]],"nuxt":[[52,0,0,1,0]],"catch":[[52,0,0,1,0],[62,0,0,1,0],[113,0,0,1,0]],"express":[[52,0,0,1,0]],"hono":[[52,0,0,1,0]],"fastify":[[52,0,0,1,0]],"rebase":[[52,0,0,1,0]],"either":[[52,0,0,1,0],[53,0,0,1,0],[64,0,0,1,0],[91,0,0,1,0]],"delete":[[52,0,0,1,0],[53,0,0,1,0],[64,0,0,1,0]],"always":[[52,0,0,1,0],[53,0,0,1,0],[108,0,0,1,0],[126,0,0,1,0]],"sure":[[52,0,0,1,0],[53,0,0,1,0],[134,0,0,1,0]],"registered":[[52,0,0,1,0],[53,0,0,1,0]],"ahead":[[52,0,0,1,0],[53,0,0,1,0]],"rewrite":[[53,0,0,1,0]],"helper":[[53,0,0,1,0],[55,0,0,1,0],[69,0,0,1,0],[125,0,0,0,1],[132,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[156,0,0,1,0]],"leaves":[[53,0,0,1,0],[71,0,0,1,0],[129,0,0,1,0]],"artifact":[[53,0,0,1,0],[61,0,0,1,0],[66,0,0,1,0],[77,0,0,1,0],[93,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[133,0,0,1,0]],"alone":[[53,0,0,1,0],[129,0,0,1,0]],"loc":[[54,0,0,1,0],[130,0,0,1,0]],"requires":[[54,0,0,1,0]],"directive":[[54,0,0,1,0],[55,0,0,1,0],[129,0,0,1,0],[134,0,0,1,0]],"conventionally":[[54,0,0,1,0]],"cannot":[[54,0,0,1,0]],"assets":[[54,0,0,2,0]],"previews":[[54,0,0,1,0]],"advertise":[[54,0,0,1,0]],"right":[[54,0,0,1,0],[106,0,0,1,0],[108,0,0,1,0],[149,0,0,2,0],[152,0,0,1,0]],"rebuild":[[54,0,0,1,0]],"served":[[54,0,0,1,0],[68,0,0,1,0]],"rewriting":[[54,0,0,1,0],[133,0,0,1,0]],"handleagentartifact":[[54,0,0,0,1]],"switch":[[54,0,0,0,1]],"case":[[54,0,0,0,6]],"sitemapurlpath":[[54,0,0,0,1],[130,0,0,0,1]],"cdn":[[55,0,1,2,0],[134,0,1,2,0]],"adds":[[55,0,0,1,0],[100,0,0,1,0],[108,0,0,1,0]],"pair":[[55,0,0,1,0],[82,0,0,1,0],[104,0,0,1,0],[137,0,0,1,0]],"detected":[[55,0,0,1,0],[129,0,0,1,0]],"shard":[[55,0,0,1,0]],"entries":[[55,0,0,1,0],[132,0,0,1,0]],"will":[[55,0,0,1,0],[71,0,0,1,0],[87,0,0,1,0]],"cached":[[55,0,0,1,0],[134,0,0,1,0]],"vice":[[55,0,0,1,0]],"versa":[[55,0,0,1,0]],"override":[[55,0,0,1,0],[129,0,0,1,0],[131,0,0,0,1],[133,0,0,1,0],[134,0,0,1,0],[140,0,0,1,0],[146,0,0,1,0]],"cachecontrol":[[55,0,0,2,0],[129,0,0,2,0],[134,0,0,2,0]],"omit":[[55,0,0,1,0],[129,0,0,1,0],[134,0,0,1,0],[147,0,0,1,0]],"useful":[[55,0,0,1,0],[138,0,0,1,0]],"caching":[[55,0,0,1,0],[134,0,0,1,0]],"band":[[55,0,0,1,0]],"locally":[[56,0,1,0,0]],"expected":[[56,0,0,1,0]],"results":[[56,0,0,1,0],[149,0,0,1,0],[151,0,0,1,2]],"existing":[[56,0,0,1,0],[147,0,0,1,0]],"application":[[56,0,0,1,0],[132,0,0,1,0]],"against":[[56,0,0,2,0],[83,0,0,1,0],[84,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[96,0,0,1,0],[105,0,0,1,0],[116,0,0,1,0]],"reports":[[56,0,0,1,0],[86,0,0,1,0]],"broken":[[56,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[72,0,0,1,0]],"whether":[[56,0,0,1,0],[106,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0]],"production":[[56,0,0,1,0],[156,0,0,1,0]],"matches":[[56,0,0,1,0],[72,0,0,1,0],[75,0,0,1,0],[151,0,0,2,0],[157,0,0,1,0]],"chatgpt":[[56,0,0,0,1],[129,0,0,1,0]],"minimal":[[57,0,1,0,0]],"checklist":[[57,0,1,0,0]],"bodies":[[57,0,0,1,0],[156,0,0,1,0]],"requested":[[57,0,0,1,0],[132,0,0,1,0]],"validate":[[58,1,1,0,0],[59,1,1,0,0],[60,1,1,0,0],[61,1,1,0,0],[62,1,1,0,0],[63,1,1,0,0],[64,1,1,1,0],[72,0,0,1,0],[96,0,0,1,0],[101,0,0,1,0],[122,0,0,1,0]],"issues":[[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,2,0],[63,0,0,1,0],[64,0,0,1,0],[112,0,0,1,0]],"prs":[[58,0,0,2,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[112,0,0,1,0]],"exits":[[58,0,0,1,0]],"zero":[[58,0,0,1,0],[75,0,0,1,0],[96,0,0,1,0]],"errors":[[58,0,0,1,0],[60,0,0,1,0],[94,0,0,1,0],[96,0,0,3,0],[117,0,0,0,1],[122,0,0,1,0]],"would":[[58,0,0,1,0],[136,0,0,1,0]],"otherwise":[[58,0,0,1,0],[135,0,0,1,0]],"blow":[[58,0,0,1,0]],"later":[[58,0,0,1,0]],"rule":[[59,0,0,2,0],[96,0,0,1,0],[114,0,0,1,0],[115,0,0,1,0],[117,0,0,1,1]],"pointing":[[59,0,0,1,0],[136,0,0,1,0]],"placeholders":[[59,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[144,0,0,1,0]],"left":[[59,0,0,1,0]],"actions":[[60,0,1,0,1],[122,0,0,1,0]],"upgrades":[[60,0,0,1,0],[114,0,0,1,0]],"strict":[[60,0,0,1,0],[121,0,0,1,0]],"makes":[[60,0,0,1,0]],"remaining":[[60,0,0,1,0]],"job":[[60,0,0,1,0],[63,0,0,1,0],[79,0,0,1,0]],"pull":[[60,0,0,0,1]],"jobs":[[60,0,0,0,1]],"ubuntu":[[60,0,0,0,1]],"latest":[[60,0,0,0,1]],"checkout":[[60,0,0,0,1]],"v4":[[60,0,0,0,1]],"oven":[[60,0,0,0,1]],"sh":[[60,0,0,0,1],[62,0,0,0,1]],"v2":[[60,0,0,0,1]],"providers":[[61,0,1,0,0]],"speak":[[61,0,0,1,0]],"includes":[[61,0,0,1,0],[63,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0]],"counts":[[61,0,0,1,0]],"pipe":[[61,0,0,1,0],[121,0,0,0,1]],"provider":[[61,0,0,1,0],[148,0,0,1,0],[154,0,1,1,0]],"reporter":[[61,0,0,1,0]],"post":[[61,0,0,1,0]],"comment":[[61,0,0,1,0]],"upload":[[61,0,0,1,0]],"report":[[61,0,0,0,1],[96,0,0,2,0]],"pre":[[62,0,1,1,0],[155,0,0,1,0]],"push":[[62,0,1,1,0]],"husky":[[62,0,0,1,0]],"second":[[62,0,0,1,0]],"limiting":[[62,0,0,1,0]],"scan":[[62,0,0,1,0]],"changed":[[62,0,0,1,0]],"repeated":[[62,0,0,1,0]],"ignore":[[62,0,0,1,0],[96,0,0,3,0],[116,0,0,2,0]],"globs":[[62,0,0,1,0]],"skip":[[62,0,0,1,0],[72,0,0,1,0],[96,0,0,1,0],[147,0,0,1,0]],"stale":[[62,0,0,1,0],[64,0,0,1,0],[122,0,0,1,0],[135,0,0,1,0]],"usr":[[62,0,0,0,1]],"bin":[[62,0,0,0,1]],"env":[[62,0,0,0,1],[140,0,0,1,3],[154,0,0,1,0]],"noisily":[[63,0,0,1,0]],"specifically":[[63,0,0,1,0]],"problems":[[63,0,0,1,0]],"line":[[63,0,0,1,0]],"much":[[63,0,0,1,0]],"easier":[[63,0,0,1,0]],"debug":[[63,0,0,1,0]],"fix":[[64,0,1,1,0],[147,0,0,1,0]],"lot":[[64,0,0,1,0]],"bug":[[64,0,0,2,0],[72,0,0,1,0],[122,0,0,1,0]],"move":[[64,0,0,1,0],[122,0,0,1,0]],"mental":[[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[77,0,0,1,0],[125,0,0,0,2],[137,0,0,0,1]],"model":[[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[77,0,0,1,0],[108,0,0,3,0],[111,0,0,0,1],[125,0,0,0,2],[137,0,0,0,1],[153,0,0,2,0],[154,0,0,1,1]],"modes":[[65,0,0,1,0],[66,0,0,1,0],[67,0,1,2,0],[68,0,0,2,0],[69,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0]],"takes":[[65,0,0,1,0],[75,0,0,1,0]],"input":[[65,0,0,1,0]],"take":[[65,0,0,1,0],[74,0,0,1,0]],"piece":[[65,0,0,1,0]],"turns":[[66,0,0,1,0],[141,0,0,1,0],[153,0,0,1,0]],"gets":[[66,0,0,1,0],[103,0,0,1,0],[124,0,1,0,0]],"sequence":[[66,0,0,1,0],[126,0,1,0,0]],"consumes":[[66,0,0,1,0]],"tb":[[66,0,0,0,1],[142,0,0,0,1]],"fm":[[66,0,0,0,4]],"parser":[[66,0,0,0,1]],"strip":[[66,0,0,0,1],[142,0,0,2,0]],"idx":[[66,0,0,0,3]],"serves":[[67,0,0,1,0]],"beneath":[[67,0,0,1,0]],"designed":[[67,0,0,1,0]],"tarballs":[[67,0,0,1,0],[79,0,0,1,0]],"alongside":[[67,0,0,1,0],[82,0,0,1,0],[93,0,0,1,0]],"via":[[68,0,0,1,0],[74,0,0,0,1],[76,0,0,1,0],[79,0,0,3,0],[80,0,0,1,0],[96,0,0,1,0],[99,0,0,1,0],[148,0,0,1,0],[154,0,1,0,0]],"follow":[[68,0,0,1,0],[70,0,0,1,0]],"broad":[[68,0,0,1,0],[109,0,0,1,0],[139,0,0,1,0]],"useless":[[68,0,0,1,0]],"bm25":[[68,0,0,1,0],[72,0,0,1,0],[86,0,0,1,0],[149,0,0,1,0]],"ranked":[[68,0,0,1,0]],"inverted":[[68,0,0,1,0]],"stored":[[68,0,0,1,0],[69,0,0,1,0]],"separately":[[68,0,0,1,0],[69,0,0,1,0],[154,0,0,2,0]],"grep":[[68,0,0,1,0],[69,0,0,1,0],[155,0,0,1,0]],"ngs":[[69,0,0,1,0]],"mapping":[[69,0,0,1,0]],"locations":[[69,0,0,1,0]],"built":[[69,0,0,1,0],[79,0,0,1,0],[151,0,0,1,0]],"agree":[[69,0,0,1,0]],"being":[[70,0,0,1,0]],"told":[[70,0,0,1,0]],"there":[[70,0,0,1,0],[103,0,0,1,0]],"flows":[[70,0,0,2,0]],"complement":[[70,0,0,1,0]],"wants":[[70,0,0,1,0]],"publishes":[[70,0,0,1,0]],"pick":[[70,0,0,1,0],[75,0,0,1,0]],"answers":[[70,0,0,0,1],[74,0,0,0,1],[149,0,0,1,0],[153,0,1,0,0]],"vocabulary":[[71,0,1,0,0],[149,0,1,0,0],[151,0,0,1,0],[157,0,0,1,0]],"terms":[[71,0,0,1,0],[151,0,0,1,0]],"throughout":[[71,0,0,1,0]],"verb":[[71,0,0,1,0]],"declaring":[[71,0,0,1,0]],"which":[[71,0,0,1,0],[86,0,0,1,0],[105,0,0,1,0],[139,0,0,1,0]],"belongs":[[71,0,0,1,0]],"noun":[[71,0,0,3,0]],"chunk":[[71,0,0,1,0],[149,0,0,4,0],[152,0,0,0,1]],"scores":[[71,0,0,1,0]],"weigh":[[71,0,0,1,0],[149,0,0,1,0]],"advertises":[[71,0,0,1,0]],"asks":[[71,0,0,1,0]],"implement":[[71,0,0,1,0]],"intercepts":[[71,0,0,1,0]],"endpoints":[[71,0,0,1,0]],"fixed":[[72,0,0,1,0]],"previous":[[72,0,0,1,0]],"finds":[[72,0,0,1,0],[146,0,0,1,0]],"design":[[72,0,0,1,0],[82,0,0,1,0],[139,0,1,0,0]],"problem":[[72,0,0,1,0]],"fronted":[[74,0,0,1,0]],"bring":[[74,0,0,1,0]],"handle":[[74,0,0,1,0]],"outputs":[[74,0,0,1,0],[82,0,0,1,0]],"choose":[[75,0,1,0,0],[79,0,0,1,0],[106,0,0,1,0],[108,0,0,1,0]],"most":[[75,0,0,1,0],[104,0,0,1,0],[108,0,0,1,0],[140,0,0,1,0]],"teams":[[75,0,0,1,0]],"arrive":[[75,0,0,1,0]],"reasons":[[75,0,0,1,0]],"journey":[[75,0,0,1,0]],"familiar":[[76,0,0,1,0]],"five":[[77,0,0,1,0],[83,0,0,1,0],[86,0,0,1,0],[125,0,0,0,1]],"minutes":[[77,0,0,1,0],[83,0,0,1,0]],"comparing":[[77,0,0,1,0]],"methodology":[[77,0,0,1,0],[78,1,1,0,0],[79,1,1,0,0],[80,1,1,0,0],[81,1,1,0,0],[82,1,1,0,0]],"differs":[[77,0,0,1,0],[78,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,1,0],[82,0,0,1,0]],"fumadocs":[[77,0,0,1,0],[78,0,0,1,0],[79,0,0,2,0],[80,0,0,1,0],[81,0,0,1,0],[82,0,0,2,0]],"starlight":[[77,0,0,1,0],[78,0,0,1,0],[79,0,0,3,0],[80,0,0,1,0],[81,0,0,1,0],[82,0,0,2,0]],"mintlify":[[77,0,0,1,0],[78,0,0,1,0],[79,0,0,3,0],[80,0,0,1,0],[81,0,0,1,0],[82,0,0,1,0]],"theming":[[78,0,0,1,0],[81,0,0,1,0]],"tool":[[79,0,0,1,0],[155,0,1,1,0]],"router":[[79,0,0,1,0],[106,0,0,1,0],[107,0,0,2,0],[108,0,0,1,0],[131,0,0,1,1]],"waku":[[79,0,0,1,0]],"supports":[[79,0,0,1,0]],"community":[[79,0,0,1,0]],"pagefind":[[79,0,0,1,0]],"saas":[[79,0,0,1,0]],"headless":[[79,0,0,1,0]],"calls":[[79,0,0,1,0],[99,0,0,1,0],[123,0,0,2,0]],"assistant":[[79,0,0,1,0]],"layer":[[79,0,0,1,0],[127,0,0,1,0],[134,0,0,1,0],[157,0,0,1,0]],"behind":[[79,0,0,1,0],[124,0,0,1,0]],"main":[[79,0,0,1,0],[97,0,0,0,1]],"polished":[[79,0,0,1,0]],"quickly":[[79,0,0,1,0]],"consider":[[79,0,0,1,0]],"platform":[[79,0,0,1,0]],"managed":[[79,0,0,1,0]],"analytics":[[79,0,0,1,0],[81,0,0,1,0]],"features":[[79,0,0,1,0]],"service":[[79,0,0,1,0]],"opt":[[79,0,0,1,0]],"agnostic":[[79,0,0,1,0]],"bundles":[[79,0,0,2,0],[106,0,0,1,0]],"safe":[[80,0,0,1,0],[125,0,0,0,1],[128,0,0,1,0],[148,0,0,1,0],[151,0,0,1,0],[157,0,0,1,0]],"grounded":[[80,0,0,1,0],[148,0,0,2,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,1,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0],[157,0,0,1,0]],"answer":[[80,0,0,1,0],[105,0,0,1,0],[108,0,0,1,0],[148,0,0,2,0],[149,0,0,1,0],[150,0,0,2,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,2,0],[154,0,0,2,0],[155,0,0,1,0],[156,0,0,1,0],[157,0,0,1,0]],"streaming":[[80,0,0,1,0],[148,0,0,2,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,1,1,0],[155,0,0,1,0],[156,0,0,1,0],[157,0,0,1,0]],"orchestration":[[80,0,0,1,0]],"whole":[[80,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0]],"prebuilt":[[81,0,0,1,0]],"combination":[[82,0,1,0,0]],"shines":[[82,0,1,0,0]],"experience":[[82,0,0,1,0]],"private":[[82,0,0,1,0]],"templated":[[82,0,0,1,0]],"system":[[82,0,0,1,0],[153,0,0,2,1]],"complete":[[83,0,0,1,0],[106,0,0,1,0],[132,0,0,1,0]],"executable":[[84,0,0,1,0]],"focused":[[84,0,0,1,0]],"welcome":[[85,0,0,0,1],[139,0,0,1,0]],"walks":[[86,0,0,1,0]],"store":[[86,0,0,1,0],[149,0,0,1,0],[156,0,0,1,0]],"excerpts":[[86,0,0,1,0],[149,0,0,1,0]],"found":[[86,0,0,1,0],[129,0,0,1,0]],"integrating":[[87,0,0,0,1]],"using":[[87,0,0,0,1]],"changes":[[87,0,0,0,1]],"now":[[89,0,0,1,0],[138,0,0,1,0]],"primitives":[[89,0,0,1,0]],"flags":[[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[98,0,0,1,0],[112,0,0,1,0],[125,0,0,0,1]],"codes":[[90,0,0,1,0],[91,0,0,1,0],[92,0,0,2,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,2,0],[97,0,0,1,0],[98,0,0,1,0]],"validates":[[90,0,0,1,0],[112,0,0,1,0]],"help":[[90,0,0,1,0],[92,0,0,1,0],[96,0,0,1,0],[97,0,1,0,3]],"usage":[[90,0,0,1,0],[92,0,0,2,0],[96,0,0,2,0],[97,0,0,1,1]],"flag":[[91,0,0,1,0],[96,0,0,1,0],[125,0,0,0,1],[137,0,0,0,1]],"dir":[[91,0,0,4,0],[92,0,0,1,0],[96,0,0,2,0]],"containing":[[91,0,0,1,0],[123,0,0,1,0],[136,0,0,1,0]],"ignored":[[91,0,0,1,0],[96,0,0,1,0],[136,0,0,1,0],[142,0,0,1,0]],"written":[[91,0,0,2,0],[136,0,0,3,0]],"glob":[[91,0,0,4,0],[92,0,0,3,0],[96,0,0,2,0],[116,0,0,1,0]],"none":[[91,0,0,2,0],[92,0,0,2,0]],"lob":[[92,0,0,1,0]],"history":[[92,0,0,1,0],[100,0,0,1,0]],"fmt":[[92,0,0,1,0],[96,0,0,1,0]],"prints":[[92,0,0,1,0],[94,0,0,1,0]],"result":[[92,0,0,1,0],[101,0,0,0,3],[116,0,0,0,1],[117,0,1,0,0],[127,0,0,1,4],[138,0,0,1,0],[150,0,0,1,0],[152,0,0,1,0]],"stdout":[[92,0,0,1,0]],"alias":[[92,0,0,1,0]],"print":[[92,0,0,1,0],[94,0,0,1,0],[96,0,0,1,0]],"subdirs":[[93,0,0,1,0]],"preserved":[[93,0,0,1,0],[103,0,0,1,0]],"anchored":[[93,0,0,1,0]],"describing":[[94,0,0,1,0]],"was":[[94,0,0,1,0],[108,0,0,1,0]],"varies":[[94,0,0,1,0]],"agentsmd":[[94,0,0,1,0]],"llmstxt":[[94,0,0,1,1]],"absent":[[94,0,0,1,0]],"abs":[[94,0,0,0,12]],"docsdir":[[94,0,0,0,1]],"docsllmstxt":[[94,0,0,0,1]],"llmsfulltxt":[[94,0,0,0,1]],"searchindex":[[94,0,0,0,1]],"searchcontent":[[94,0,0,0,1]],"docssitemapxml":[[94,0,0,0,1]],"docssitemapmd":[[94,0,0,0,1]],"docsrobotstxt":[[94,0,0,0,1]],"agentreadabilitymanifest":[[94,0,0,0,1]],"inference":[[95,0,1,0,0]],"loaded":[[95,0,0,1,0]],"explicitly":[[95,0,0,1,0],[124,0,0,1,0],[140,0,0,1,0]],"importing":[[95,0,0,1,0]],"inferred":[[95,0,0,2,0],[103,0,0,1,0]],"union":[[95,0,0,1,0]],"generatellmstxt":[[95,0,0,0,2],[98,0,0,1,0],[123,0,0,2,1],[126,0,0,0,2],[136,0,0,3,0]],"baseurl":[[95,0,0,0,1],[126,0,0,0,3],[127,0,0,0,2],[130,0,0,1,0],[138,0,0,0,1],[140,0,0,1,1],[150,0,0,0,1]],"honored":[[95,0,0,0,1]],"positional":[[96,0,0,1,0]],"subdirectory":[[96,0,0,1,0],[116,0,0,1,0],[136,0,0,1,0]],"validated":[[96,0,0,1,0],[116,0,0,1,0]],"pretty":[[96,0,0,2,0]],"annotation":[[96,0,0,1,0]],"defaults":[[96,0,0,3,0],[104,0,0,1,0],[105,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[110,0,0,1,0],[111,0,0,1,0],[116,0,0,1,0],[121,0,0,1,0],[129,0,0,1,0]],"passing":[[96,0,0,1,0]],"unlimited":[[96,0,0,1,0]],"count":[[96,0,0,1,0]],"exceeds":[[96,0,0,1,0]],"within":[[96,0,0,1,0]],"budget":[[96,0,0,2,0]],"exceeded":[[96,0,0,1,0]],"partials":[[96,0,0,1,0],[104,0,0,1,0],[116,0,0,1,0]],"plug":[[96,0,0,1,0]],"valibot":[[96,0,0,1,0],[116,0,0,3,0],[121,0,0,1,1]],"schemas":[[96,0,0,1,0],[112,0,0,1,0],[116,0,0,3,0],[118,0,1,0,0],[119,0,1,0,0],[120,0,1,0,0],[121,0,1,0,1]],"show":[[97,0,0,1,0]],"thin":[[98,0,0,1,0],[154,0,0,1,0]],"wrapper":[[98,0,0,1,0]],"convertmdxtomarkdown":[[98,0,0,1,0],[99,0,0,0,1],[101,0,1,0,1]],"writemdxfileasmarkdown":[[98,0,0,1,0],[99,0,0,0,1],[102,0,1,0,1]],"generatellmfullcontextfiles":[[98,0,0,1,0],[123,0,0,1,1],[126,0,0,1,2]],"generateagentreadabilityartifacts":[[98,0,0,1,0],[123,0,0,1,1],[126,0,0,1,2],[127,0,1,0,2],[128,0,0,1,0]],"helpers":[[98,0,0,1,0],[128,0,1,1,0],[129,0,1,0,0],[130,0,1,1,0],[131,0,1,0,0],[132,0,2,0,0],[133,0,2,0,0],[134,0,1,0,0],[135,0,1,0,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0],[157,0,0,1,0]],"sites":[[98,0,0,1,0],[127,0,0,1,0]],"generatedocssearchfiles":[[98,0,0,1,0],[150,0,0,0,2]],"lintdocs":[[98,0,0,1,0],[112,0,0,0,1],[116,0,0,0,2],[121,0,0,0,2]],"individual":[[98,0,0,1,0],[147,0,0,1,0]],"happy":[[98,0,0,1,0],[125,0,0,0,1]],"precedence":[[98,0,0,1,0],[140,0,1,0,0]],"internally":[[99,0,0,1,0]],"memory":[[99,0,0,1,0],[101,0,0,1,0],[156,0,0,1,0],[157,0,0,1,0]],"batch":[[100,0,0,1,0]],"option":[[100,0,0,1,0],[116,0,0,1,0],[136,0,0,1,0]],"destination":[[100,0,0,1,0]],"matters":[[100,0,0,1,0],[108,0,0,1,0],[141,0,0,1,0],[144,0,1,0,0]],"concurrent":[[100,0,0,1,0],[103,0,0,1,0]],"large":[[100,0,0,1,0]],"parallel":[[100,0,0,1,0]],"parsed":[[101,0,0,1,0]],"yourself":[[101,0,0,1,0]],"writing":[[101,0,0,1,0]],"feed":[[101,0,0,1,0],[144,0,0,1,0]],"touching":[[101,0,0,1,0],[148,0,0,1,0]],"console":[[101,0,0,0,2]],"log":[[101,0,0,0,2]],"srcpath":[[102,0,0,0,1]],"outpath":[[102,0,0,0,1]],"blocks":[[103,0,0,2,0],[114,0,0,1,0],[142,0,0,1,0]],"synthesized":[[103,0,0,1,0]],"sometimes":[[103,0,0,1,0]],"tables":[[103,0,0,1,0]],"compacted":[[103,0,0,1,0]],"global":[[103,0,0,1,0]],"pairing":[[104,0,1,0,0]],"setups":[[104,0,0,1,0]],"expand":[[104,0,0,1,0],[151,0,0,1,0]],"ast":[[104,0,0,1,0]],"sees":[[104,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0]],"rationale":[[104,0,0,1,0]],"benchmarks":[[105,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[110,0,0,2,0],[111,0,0,1,0]],"changing":[[105,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[110,0,0,1,0],[111,0,0,1,0]],"treats":[[105,0,0,1,0]],"eval":[[105,0,0,1,0],[110,0,0,1,0]],"harnesses":[[105,0,0,1,0]],"real":[[105,0,0,1,0]],"models":[[105,0,0,1,0]],"final":[[105,0,0,1,0],[115,0,0,1,0],[140,0,0,1,0],[144,0,0,1,0]],"installs":[[106,0,0,1,0]],"packed":[[106,0,0,1,0]],"sandbox":[[106,0,0,1,0]],"task":[[106,0,0,1,0]],"simulates":[[106,0,0,1,0]],"depending":[[106,0,0,1,0]],"nine":[[106,0,0,1,0]],"split":[[106,0,0,1,0]],"lists":[[106,0,0,1,0],[124,0,0,1,0]],"part":[[106,0,0,1,0]],"intended":[[106,0,0,1,0],[107,0,0,1,0],[108,0,0,2,0]],"monolith":[[107,0,0,1,0],[108,0,0,1,0]],"learned":[[108,0,1,0,0]],"monolithic":[[108,0,0,1,0],[110,0,0,1,0]],"tested":[[108,0,0,2,0]],"passed":[[108,0,0,1,0]],"six":[[108,0,0,1,0]],"fixtures":[[108,0,0,1,0]],"opus":[[108,0,0,2,0]],"gpt":[[108,0,0,2,0],[111,0,0,0,1],[154,0,0,0,1]],"readout":[[108,0,0,1,0]],"reliable":[[108,0,0,1,0]],"cheap":[[108,0,0,1,0],[150,0,0,1,0],[157,0,0,1,0]],"synthesis":[[108,0,0,1,0]],"tasks":[[108,0,0,1,0]],"promising":[[108,0,0,2,0]],"dependent":[[108,0,0,1,0]],"often":[[108,0,0,1,0]],"answered":[[108,0,0,2,0]],"correctly":[[108,0,0,3,0]],"following":[[108,0,0,1,0]],"stricter":[[108,0,0,1,0]],"selection":[[108,0,0,1,0],[147,0,1,0,0]],"summaries":[[108,0,0,1,0]],"prior":[[108,0,0,1,0]],"knowledge":[[108,0,0,1,0]],"prove":[[108,0,0,1,0]],"proposed":[[108,0,0,1,0]],"made":[[108,0,0,1,0]],"organize":[[109,0,0,1,0],[139,0,0,1,0]],"suffer":[[110,0,0,1,0]],"because":[[110,0,0,1,0],[144,0,0,2,0]],"token":[[110,0,0,1,0],[151,0,0,1,0]],"cost":[[110,0,0,1,0],[147,0,0,1,0]],"truncation":[[110,0,0,1,0]],"harness":[[110,0,0,1,0],[111,0,0,1,0]],"revisit":[[110,0,0,1,0]],"tradeoff":[[110,0,0,1,0]],"adding":[[110,0,0,1,0]],"detailed":[[111,0,0,1,0]],"repository":[[111,0,0,1,0]],"documented":[[112,0,0,1,0]],"covers":[[112,0,0,1,0],[140,0,0,1,0]],"severity":[[114,0,0,1,0],[115,0,0,1,0],[117,0,0,0,1]],"active":[[114,0,0,1,0]],"won":[[114,0,0,1,0]],"treat":[[114,0,0,1,0],[122,0,0,1,0]],"highest":[[114,0,0,1,0],[151,0,0,1,0]],"priority":[[114,0,0,1,0]],"similar":[[115,0,0,1,0],[142,0,0,1,0]],"linting":[[115,0,0,1,0]],"walking":[[115,0,0,1,0]],"performs":[[115,0,0,1,0]],"changelogdir":[[116,0,0,1,0]],"patterns":[[116,0,0,2,0]],"shown":[[116,0,0,1,0]],"unknownfieldseverity":[[116,0,0,1,1]],"changelogfrontmatter":[[116,0,0,1,0]],"failures":[[117,0,0,1,0]],"reported":[[117,0,0,1,0]],"lintresult":[[117,0,0,0,1]],"kind":[[117,0,0,0,1]],"filesscanned":[[117,0,0,0,1]],"yes":[[118,0,0,1,0],[119,0,0,3,0],[120,0,0,1,0]],"produced":[[118,0,0,1,0]],"semver":[[119,0,0,1,0]],"iso":[[119,0,0,1,0]],"parseable":[[119,0,0,1,0]],"improvement":[[119,0,0,1,0]],"retired":[[119,0,0,1,0]],"deprecation":[[119,0,0,1,0]],"authors":[[119,0,0,1,0]],"defaultopen":[[120,0,0,1,0]],"combined":[[120,0,0,1,0]],"replace":[[121,0,0,1,0],[130,0,0,1,0],[142,0,0,1,0]],"provide":[[121,0,0,1,0]],"apply":[[121,0,0,1,0]],"customfrontmatter":[[121,0,0,0,2]],"minlength":[[121,0,0,0,1]],"picklist":[[121,0,0,0,1]],"beginner":[[121,0,0,0,1]],"advanced":[[121,0,0,0,1]],"practical":[[122,0,1,0,0]],"template":[[122,0,0,1,0],[144,0,0,1,0]],"pipelines":[[122,0,0,1,0]],"websites":[[123,0,0,2,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0]],"flavors":[[123,0,0,1,0]],"derived":[[123,0,0,1,0]],"pairs":[[123,0,0,1,0],[134,0,0,1,0]],"finer":[[123,0,0,1,0]],"renderrobotstxt":[[123,0,0,0,1],[127,0,0,0,2]],"rendersitemapmarkdown":[[123,0,0,0,1],[127,0,0,0,2]],"rendersitemapxml":[[123,0,0,0,1],[127,0,0,0,2]],"purpose":[[124,0,0,1,0],[156,0,0,1,0]],"best":[[124,0,0,1,0],[125,0,0,0,1]],"starting":[[124,0,0,1,0],[125,0,0,0,1]],"lastmod":[[124,0,0,1,0]],"mergeable":[[124,0,0,1,0]],"crawl":[[124,0,0,1,0]],"policy":[[124,0,0,1,0]],"allows":[[124,0,0,1,0]],"common":[[124,0,0,1,0],[156,0,0,1,0]],"crawlers":[[124,0,0,1,0]],"longer":[[124,0,0,1,0]],"thing":[[125,0,0,0,1],[126,0,0,0,1],[137,0,0,0,1]],"well":[[125,0,0,0,1],[126,0,0,0,1],[137,0,0,0,1]],"boring":[[125,0,0,0,1]],"parts":[[125,0,0,0,1]],"documentation":[[125,0,0,0,1]],"minute":[[125,0,0,0,1]],"typical":[[126,0,1,0,0]],"letting":[[127,0,0,1,0]],"returned":[[127,0,0,1,0]],"writefile":[[127,0,0,0,3],[138,0,0,0,2]],"objects":[[128,0,0,1,0],[156,0,0,1,0]],"module":[[128,0,0,1,0]],"acceptsmarkdownheader":[[128,0,0,0,1],[132,0,0,1,0],[133,0,0,1,0]],"createdocshead":[[128,0,0,0,1],[131,0,1,0,2],[132,0,0,1,0]],"createmarkdownresponseheaders":[[128,0,0,0,1],[132,0,0,1,0]],"enrichmarkdownfrontmatter":[[128,0,0,0,1],[132,0,0,1,0]],"isagentreadabilityartifactpath":[[128,0,0,0,1],[133,0,0,1,0]],"isagentuseragent":[[128,0,0,0,1],[132,0,0,1,0],[133,0,0,1,0]],"rendermissingmarkdown":[[128,0,0,0,1],[132,0,0,1,0]],"resolvemarkdownmirrortarget":[[128,0,0,0,1],[132,0,0,1,0]],"fall":[[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0]],"ua":[[129,0,0,1,0]],"enriches":[[129,0,0,1,0]],"useragentpattern":[[129,0,0,1,0]],"regex":[[129,0,0,1,0],[133,0,0,1,0]],"cover":[[129,0,0,1,0]],"oai":[[129,0,0,1,0]],"searchbot":[[129,0,0,1,0]],"anthropic":[[129,0,0,1,0]],"ccbot":[[129,0,0,1,0]],"google":[[129,0,0,1,0]],"extended":[[129,0,0,1,0]],"directives":[[130,0,0,1,0]],"reflect":[[130,0,0,1,0]],"hacks":[[130,0,0,1,0]],"rebasing":[[130,0,0,0,1]],"og":[[131,0,0,1,2],[132,0,0,1,0]],"neutral":[[131,0,0,1,0]],"arrays":[[131,0,0,1,0]],"caller":[[131,0,0,1,0]],"key":[[131,0,0,0,1]],"ldjson":[[131,0,0,0,1]],"jsonldmetakey":[[131,0,0,0,1]],"lower":[[132,0,1,0,0],[133,0,1,0,0]],"escaped":[[132,0,0,1,0]],"crlf":[[132,0,0,1,0]],"tolerant":[[132,0,0,1,0],[151,0,0,1,0]],"used":[[132,0,0,1,0],[136,0,0,1,0]],"detect":[[132,0,0,2,0],[133,0,0,2,0]],"asking":[[132,0,0,1,0],[133,0,0,1,0]],"crawler":[[132,0,0,1,0],[133,0,0,1,0]],"avoid":[[133,0,0,1,0]],"uas":[[134,0,0,1,0]],"shards":[[134,0,0,1,0]],"pollinate":[[134,0,0,1,0]],"asserts":[[135,0,0,1,0]],"throws":[[135,0,0,1,0]],"clear":[[135,0,0,1,0]],"loudly":[[135,0,0,1,0]],"silently":[[135,0,0,1,0]],"producing":[[135,0,0,1,0]],"rely":[[136,0,0,1,0]],"singular":[[136,0,0,1,0]],"segment":[[136,0,0,1,0]],"productinfo":[[136,0,0,1,0]],"agentguidance":[[136,0,0,1,0]],"intentionally":[[136,0,0,1,0],[147,0,0,1,0]],"mislead":[[136,0,0,1,0]],"docssubdir":[[136,0,0,1,0]],"holds":[[136,0,0,1,0]],"prefix":[[136,0,0,1,0],[151,0,0,1,0]],"outputpath":[[136,0,0,1,0]],"driving":[[138,0,0,1,0]],"mkdir":[[138,0,0,0,2]],"stringify":[[138,0,0,0,1]],"come":[[139,0,0,1,0]],"principles":[[139,0,0,1,0]],"sharding":[[139,0,0,1,0]],"remains":[[139,0,0,1,0]],"flavor":[[139,0,0,1,0]],"decide":[[139,0,0,1,0]],"load":[[139,0,0,1,0],[150,0,0,2,0]],"beats":[[139,0,0,1,0]],"our":[[139,0,0,1,0]],"environment":[[140,0,0,1,0]],"variables":[[140,0,0,1,0]],"layered":[[140,0,0,1,0]],"lets":[[140,0,0,1,0]],"wide":[[140,0,0,1,0]],"platforms":[[140,0,0,1,0]],"hardcoded":[[140,0,0,1,0]],"portless":[[140,0,0,0,1]],"stripped":[[141,0,0,1,0]],"remarkremoveimports":[[142,0,0,1,1]],"statements":[[142,0,0,1,0]],"remarkremovejsxcomments":[[142,0,0,1,1]],"comments":[[142,0,0,1,0]],"remarkresolvedocplaceholders":[[142,0,0,1,1],[144,0,0,1,0]],"remarkaudiencetomarkdown":[[142,0,0,1,1]],"remove":[[142,0,0,1,0]],"remarksectiontomarkdown":[[142,0,0,1,1]],"containers":[[142,0,0,1,0]],"remarkcallouttomarkdown":[[142,0,0,1,1]],"remarkcardstomarkdown":[[142,0,0,1,1]],"bulleted":[[142,0,0,1,0]],"remarkdetailstomarkdown":[[142,0,0,1,1]],"remarkmermaidtomarkdown":[[142,0,0,1,1]],"remarkcommandtabstomarkdown":[[142,0,0,1,1]],"remarkstepstomarkdown":[[142,0,0,1,1]],"remarktabstomarkdown":[[142,0,0,1,1]],"remarkaccordiontomarkdown":[[142,0,0,1,1]],"remarktopicswitchertomarkdown":[[142,0,0,1,1]],"labeled":[[142,0,0,1,0],[143,0,0,1,0]],"remarkfiletreetomarkdown":[[142,0,0,1,1],[143,0,0,1,0]],"remarkprompttomarkdown":[[142,0,0,1,1],[143,0,0,1,0]],"mdast":[[142,0,0,0,1]],"ri":[[142,0,0,0,2]],"rj":[[142,0,0,0,2]],"rd":[[142,0,0,0,2]],"rau":[[142,0,0,0,2]],"rs":[[142,0,0,0,2]],"rc":[[142,0,0,0,2]],"rcd":[[142,0,0,0,2]],"rdt":[[142,0,0,0,2]],"rct":[[142,0,0,0,2]],"rst":[[142,0,0,0,2]],"rt":[[142,0,0,0,2]],"rtt":[[142,0,0,0,2]],"ra":[[142,0,0,0,2]],"rts":[[142,0,0,0,2]],"rft":[[142,0,0,0,2]],"rp":[[142,0,0,0,2]],"remarkexampletomarkdown":[[142,0,0,0,1],[143,0,0,1,0]],"go":[[144,0,0,2,0]],"some":[[144,0,0,1,0]],"imported":[[144,0,0,1,0]],"flatteners":[[144,0,0,3,0]],"assume":[[144,0,0,1,0]],"strings":[[144,0,0,1,0]],"literals":[[144,0,0,1,0]],"reorder":[[144,0,0,1,0]],"casually":[[144,0,0,1,0]],"flattener":[[144,0,0,2,0],[145,0,0,1,0],[147,0,0,1,0]],"transform":[[144,0,0,1,0]],"contracted":[[144,0,0,1,0]],"insert":[[144,0,0,1,0]],"composition":[[145,0,0,1,0]],"expands":[[145,0,0,1,0]],"pipelineexampleoptions":[[146,0,0,0,1]],"types":[[146,0,0,0,1]],"composed":[[147,0,0,1,0]],"fragments":[[147,0,0,1,0]],"processing":[[147,0,0,1,0]],"almost":[[147,0,0,1,0]],"never":[[147,0,0,1,0]],"reordering":[[147,0,0,1,0]],"ones":[[147,0,0,1,0]],"exposes":[[148,0,0,1,0],[155,0,0,1,0]],"queries":[[148,0,0,1,0]],"database":[[148,0,0,1,0]],"document":[[149,0,0,2,0]],"jump":[[149,0,0,1,0]],"ranking":[[149,0,0,1,0]],"tunable":[[149,0,0,1,0]],"generator":[[149,0,0,1,0],[150,0,0,1,0]],"compact":[[149,0,0,1,0]],"tuple":[[149,0,0,1,0]],"term":[[149,0,0,1,0]],"postings":[[149,0,0,1,0]],"refs":[[149,0,0,2,0]],"actual":[[149,0,0,1,0]],"separated":[[149,0,0,1,0]],"loading":[[149,0,0,1,0]],"lazily":[[149,0,0,1,0]],"indexing":[[150,0,1,0,0]],"hover":[[150,0,0,1,0]],"anywhere":[[151,0,0,1,0]],"hash":[[151,0,0,1,0]],"snippets":[[151,0,0,1,0]],"query":[[151,0,0,1,0],[153,0,0,1,0],[154,0,0,0,1],[156,0,0,1,0]],"lightweight":[[151,0,0,1,0]],"stemming":[[151,0,0,1,0]],"typo":[[151,0,0,1,0]],"fallbacks":[[151,0,0,1,0]],"synonym":[[151,0,0,1,0]],"weight":[[151,0,0,1,0]],"keys":[[151,0,0,1,0],[157,0,0,1,0]],"precise":[[151,0,0,1,0]],"synonyms":[[151,0,0,1,1]],"searchdocs":[[151,0,0,0,3]],"docssearchindex":[[151,0,0,0,2]],"docssearchcontentstore":[[151,0,0,0,2]],"indexjson":[[151,0,0,0,2]],"contentjson":[[151,0,0,0,2]],"getting":[[151,0,0,0,1]],"doubles":[[152,0,0,1,0]],"virtual":[[152,0,0,1,0],[155,0,0,1,0]],"readers":[[152,0,0,1,0]],"picked":[[152,0,0,1,0]],"readdocscontentfile":[[152,0,0,1,2]],"entire":[[152,0,0,1,0]],"readdocscontentchunk":[[152,0,0,1,2]],"listdocscontentfiles":[[152,0,0,0,2]],"allfiles":[[152,0,0,0,1]],"wholepage":[[152,0,0,0,1]],"onechunk":[[152,0,0,0,1]],"createanswercontext":[[153,0,0,1,2],[154,0,0,1,0]],"retrieved":[[153,0,0,2,0]],"chunks":[[153,0,0,1,0],[155,0,0,1,0],[157,0,0,1,0]],"instructs":[[153,0,0,1,0]],"sources":[[153,0,0,1,1],[154,0,0,2,1]],"references":[[153,0,0,1,0]],"say":[[153,0,0,1,0]],"insufficient":[[153,0,0,1,0]],"productname":[[153,0,0,0,1],[154,0,0,0,1]],"wrappers":[[154,0,0,1,0]],"stream":[[154,0,0,1,0]],"matching":[[154,0,0,1,0],[157,0,0,1,0]],"citation":[[154,0,0,1,0]],"display":[[154,0,0,1,0]],"embed":[[154,0,0,1,0]],"streamed":[[154,0,0,1,0]],"adapter":[[154,0,0,1,0],[155,0,0,1,0]],"createcloudflaredocsadapter":[[154,0,0,1,0]],"gateway":[[154,0,0,1,2]],"streamdocsanswer":[[154,0,0,0,4]],"sdk":[[154,0,0,0,1],[155,0,0,1,0]],"adapters":[[155,0,1,0,0]],"explore":[[155,0,0,1,0]],"shell":[[155,0,0,1,0]],"receiving":[[155,0,0,1,0]],"selected":[[155,0,0,1,0]],"ls":[[155,0,0,1,0]],"cat":[[155,0,0,1,0]],"rg":[[155,0,0,1,0]],"execution":[[155,0,0,1,0]],"disabled":[[155,0,0,1,0]],"createdocsbashtool":[[155,0,0,1,2]],"createdocsbashtools":[[155,0,0,1,1]],"compatible":[[155,0,0,1,0]],"abuse":[[156,0,1,0,0]],"guards":[[156,0,1,0,0]],"reusable":[[156,0,0,1,0]],"utilities":[[156,0,0,1,0]],"validatedocsquery":[[156,0,0,1,0]],"trim":[[156,0,0,1,0]],"cap":[[156,0,0,1,0]],"readjsonwithlimit":[[156,0,0,1,0]],"reject":[[156,0,0,1,0]],"oversized":[[156,0,0,1,0]],"getclientidentifier":[[156,0,0,1,0]],"proxy":[[156,0,0,1,0]],"ip":[[156,0,0,1,0]],"creatememoryratelimiter":[[156,0,0,1,0]],"implements":[[156,0,0,1,0]],"ratelimiter":[[156,0,0,2,0]],"demos":[[156,0,0,2,0]],"limiter":[[156,0,0,1,0]],"adapt":[[156,0,0,1,0]],"interface":[[156,0,0,1,0]],"redis":[[156,0,0,1,0]],"durable":[[156,0,0,1,0]],"embeddings":[[157,0,1,2,0]],"messages":[[157,0,0,1,0]],"users":[[157,0,0,1,0]],"faster":[[157,0,0,1,0]],"performance":[[157,0,0,1,0]],"optimization":[[157,0,0,1,0]],"grow":[[157,0,0,1,0]],"past":[[157,0,0,1,0]],"tens":[[157,0,0,1,0]],"thousands":[[157,0,0,1,0]],"cold":[[157,0,0,1,0]],"hit":[[157,0,0,1,0]],"noticeable":[[157,0,0,1,0]],"even":[[157,0,0,1,0]],"lexical":[[157,0,0,1,0]],"complementary":[[157,0,0,1,0]],"replacements":[[157,0,0,1,0]]},"averageChunkLength":88.88607594936708}
+{"version":2,"generatedAt":"2026-05-11T01:03:23.418Z","documents":[["authoring/components","Components","MDX components the pipeline knows how to flatten into agent-readable markdown.","/docs/authoring/components","https://leadtype.dev/docs/authoring/components","authoring/components"],["authoring/frontmatter","Frontmatter","Required fields, group semantics, and how authored MDX becomes a navigation tree.","/docs/authoring/frontmatter","https://leadtype.dev/docs/authoring/frontmatter","authoring/frontmatter"],["build/bundle-package-docs","Bundle docs into a package","Ship agent-readable docs inside an npm tarball — AGENTS.md at the package root plus per-topic .md files.","/docs/build/bundle-package-docs","https://leadtype.dev/docs/build/bundle-package-docs","build/bundle-package-docs"],["build/connect-docs-site","Connect a docs site","Wire leadtype into a docs app build so humans, agents, and search use one source.","/docs/build/connect-docs-site","https://leadtype.dev/docs/build/connect-docs-site","build/connect-docs-site"],["build/optimize-docs-for-agents","Optimize docs for agents","Set up llms.txt, markdown mirrors, JSON-LD, sitemaps, robots.txt, and audit checks for an agent-readable docs site.","/docs/build/optimize-docs-for-agents","https://leadtype.dev/docs/build/optimize-docs-for-agents","build/optimize-docs-for-agents"],["build/validate-in-ci","Validate in CI","Run leadtype lint in CI so frontmatter, navigation, and link issues fail PRs before publish.","/docs/build/validate-in-ci","https://leadtype.dev/docs/build/validate-in-ci","build/validate-in-ci"],["how-it-works","How it works","The mental model: one MDX source, a remark pipeline, two output modes, three audiences.","/docs/how-it-works","https://leadtype.dev/docs/how-it-works","how-it-works"],["index","Leadtype","One MDX source. A website for humans, AGENTS.md for offline coding agents, llms.txt for HTTP agents — all from a single pipeline.","/docs","https://leadtype.dev/docs","index"],["methodology","Methodology","How leadtype differs from Fumadocs, Starlight, and Mintlify.","/docs/methodology","https://leadtype.dev/docs/methodology","methodology"],["quickstart","Quickstart","Install leadtype, run it against a docs folder, and inspect the artifacts it produces.","/docs/quickstart","https://leadtype.dev/docs/quickstart","quickstart"],["reference/cli","CLI","leadtype generate and leadtype lint — flags, exit codes, and JSON output.","/docs/reference/cli","https://leadtype.dev/docs/reference/cli","reference/cli"],["reference/convert","Convert","MDX-to-markdown conversion APIs from leadtype/convert.","/docs/reference/convert","https://leadtype.dev/docs/reference/convert","reference/convert"],["reference/evals","Evals","How Leadtype benchmarks AGENTS.md, llms.txt, and llms-full.txt output before changing defaults.","/docs/reference/evals","https://leadtype.dev/docs/reference/evals","reference/evals"],["reference/lint","Lint rules","Schema, link, and navigation checks. CLI and library API.","/docs/reference/lint","https://leadtype.dev/docs/reference/lint","reference/lint"],["reference/llm","LLM files","Generate llms.txt for hosted websites and AGENTS.md for npm-bundled offline reading.","/docs/reference/llm","https://leadtype.dev/docs/reference/llm","reference/llm"],["reference/remark","Remark plugins","The default plugin stack that flattens MDX components into markdown.","/docs/reference/remark","https://leadtype.dev/docs/reference/remark","reference/remark"],["reference/search","Search","Static search index, runtime helpers, and source-grounded answer streaming.","/docs/reference/search","https://leadtype.dev/docs/reference/search","reference/search"]],"chunks":[["chunk-0",0,"components",["Components"],44,0],["chunk-1",0,"why-flatten-at-all",["Components","Why flatten at all?"],82,1],["chunk-2",0,"the-naming-contract",["Components","The naming contract"],81,2],["chunk-3",0,"headings-and-table-of-contents",["Components","Headings and table of contents"],62,3],["chunk-4",0,"the-slug-contract",["Components","Headings and table of contents","The slug contract"],130,4],["chunk-5",0,"where-the-toc-data-lives",["Components","Headings and table of contents","Where the TOC data lives"],63,5],["chunk-6",0,"rendering-the-sidebar",["Components","Headings and table of contents","Rendering the sidebar"],68,6],["chunk-7",0,"troubleshooting",["Components","Headings and table of contents","Troubleshooting"],60,7],["chunk-8",0,"component-reference",["Components","Component reference"],21,8],["chunk-9",0,"callout",["Components","Component reference","Callout"],74,9],["chunk-10",0,"cards",["Components","Component reference","Cards"],43,10],["chunk-11",0,"steps",["Components","Component reference","Steps"],74,11],["chunk-12",0,"tabs",["Components","Component reference","Tabs"],89,12],["chunk-13",0,"commandtabs",["Components","Component reference","CommandTabs"],111,13],["chunk-14",0,"prompt",["Components","Component reference","Prompt"],92,14],["chunk-15",0,"audience",["Components","Component reference","Audience"],65,15],["chunk-16",0,"filetree",["Components","Component reference","FileTree"],61,16],["chunk-17",0,"accordion",["Components","Component reference","Accordion"],77,17],["chunk-18",0,"topicswitcher",["Components","Component reference","TopicSwitcher"],69,18],["chunk-19",0,"typetable-and-extractedtypetable",["Components","Component reference","TypeTable and ExtractedTypeTable"],86,19],["chunk-20",0,"example",["Components","Component reference","Example"],76,20],["chunk-21",0,"mermaid",["Components","Component reference","Mermaid"],62,21],["chunk-22",0,"guidelines",["Components","Guidelines"],55,22],["chunk-23",1,"frontmatter",["Frontmatter"],26,23],["chunk-24",1,"minimum",["Frontmatter","Minimum"],84,24],["chunk-25",1,"how-groups-become-a-nav-tree",["Frontmatter","How groups become a nav tree"],123,25],["chunk-26",1,"nested-groups",["Frontmatter","How groups become a nav tree","Nested groups"],67,26],["chunk-27",1,"optional-fields",["Frontmatter","Optional fields"],117,27],["chunk-28",1,"lint-rules",["Frontmatter","Lint rules"],88,28],["chunk-29",1,"what-this-gives-you",["Frontmatter","What this gives you"],55,29],["chunk-30",2,"bundle-docs-into-a-package",["Bundle docs into a package"],76,30],["chunk-31",2,"the-flow",["Bundle docs into a package","The flow"],86,31],["chunk-32",2,"why-agents-md-not-llms-txt",["Bundle docs into a package","Why AGENTS.md, not llms.txt?"],137,32],["chunk-33",2,"generate-into-the-package",["Bundle docs into a package","Generate into the package"],108,33],["chunk-34",2,"filter-to-package-specific-docs",["Bundle docs into a package","Filter to package-specific docs"],78,34],["chunk-35",2,"include-in-the-published-tarball",["Bundle docs into a package","Include in the published tarball"],156,35],["chunk-36",2,"include-in-the-published-tarball",["Bundle docs into a package","Include in the published tarball"],89,36],["chunk-37",2,"verify-before-publishing",["Bundle docs into a package","Verify before publishing"],71,37],["chunk-38",2,"tell-consuming-projects-to-use-the-bundle",["Bundle docs into a package","Tell consuming projects to use the bundle"],112,38],["chunk-39",2,"when-to-use-this",["Bundle docs into a package","When to use this"],72,39],["chunk-40",2,"what-s-next",["Bundle docs into a package","What's next"],31,40],["chunk-41",3,"connect-a-docs-site",["Connect a docs site"],54,41],["chunk-42",3,"the-flow",["Connect a docs site","The flow"],88,42],["chunk-43",3,"one-off-run",["Connect a docs site","One-off run"],74,43],["chunk-44",3,"wire-it-into-the-build",["Connect a docs site","Wire it into the build"],201,44],["chunk-45",3,"configure-the-product-and-groups",["Connect a docs site","Configure the product and groups"],93,45],["chunk-46",3,"make-the-site-agent-readable",["Connect a docs site","Make the site agent-readable"],229,46],["chunk-47",3,"make-the-site-agent-readable",["Connect a docs site","Make the site agent-readable"],60,47],["chunk-48",3,"connect-a-remote-source",["Connect a docs site","Connect a remote source"],130,48],["chunk-49",3,"verify",["Connect a docs site","Verify"],160,49],["chunk-50",3,"what-s-next",["Connect a docs site","What's next"],27,50],["chunk-51",4,"optimize-docs-for-agents",["Optimize docs for agents"],73,51],["chunk-52",4,"what-good-looks-like",["Optimize docs for agents","What good looks like"],105,52],["chunk-53",4,"1-generate-the-artifacts",["Optimize docs for agents","1. Generate the artifacts"],113,53],["chunk-54",4,"2-serve-root-discovery-files",["Optimize docs for agents","2. Serve root discovery files"],202,54],["chunk-55",4,"3-add-json-ld-to-docs-pages",["Optimize docs for agents","3. Add JSON-LD to docs pages"],142,55],["chunk-56",4,"4-return-markdown-to-agents",["Optimize docs for agents","4. Return markdown to agents"],226,56],["chunk-57",4,"4-return-markdown-to-agents",["Optimize docs for agents","4. Return markdown to agents"],170,57],["chunk-58",4,"4-return-markdown-to-agents",["Optimize docs for agents","4. Return markdown to agents"],71,58],["chunk-59",4,"serve-sitemap-xml-and-robots-txt-with-the-live-origin",["Optimize docs for agents","4. Return markdown to agents","Serve sitemap.xml and robots.txt with the live origin"],172,59],["chunk-60",4,"cache-control-and-cdn",["Optimize docs for agents","4. Return markdown to agents","Cache-Control and CDN"],88,60],["chunk-61",4,"5-verify-locally",["Optimize docs for agents","5. Verify locally"],193,61],["chunk-62",4,"minimal-checklist",["Optimize docs for agents","Minimal checklist"],100,62],["chunk-63",5,"validate-in-ci",["Validate in CI"],49,63],["chunk-64",5,"what-it-catches",["Validate in CI","What it catches"],78,64],["chunk-65",5,"github-actions",["Validate in CI","GitHub Actions"],83,65],["chunk-66",5,"other-ci-providers",["Validate in CI","Other CI providers"],60,66],["chunk-67",5,"local-pre-push-hook",["Validate in CI","Local pre-push hook"],64,67],["chunk-68",5,"run-before-generate",["Validate in CI","Run before generate"],63,68],["chunk-69",5,"what-to-fix-first",["Validate in CI","What to fix first"],66,69],["chunk-70",6,"how-it-works",["How it works"],37,70],["chunk-71",6,"the-pipeline",["How it works","The pipeline"],141,71],["chunk-72",6,"two-output-modes",["How it works","Two output modes"],128,72],["chunk-73",6,"the-artifacts",["How it works","The artifacts"],176,73],["chunk-74",6,"the-artifacts",["How it works","The artifacts"],110,74],["chunk-75",6,"the-three-audiences",["How it works","The three audiences"],178,75],["chunk-76",6,"vocabulary",["How it works","Vocabulary"],153,76],["chunk-77",6,"what-runs-when",["How it works","What runs when"],123,77],["chunk-78",6,"where-to-next",["How it works","Where to next"],20,78],["chunk-79",7,"leadtype",["Leadtype"],184,79],["chunk-80",7,"choose-your-path",["Leadtype","Choose your path"],49,80],["chunk-81",7,"what-you-get",["Leadtype","What you get"],113,81],["chunk-82",7,"next",["Leadtype","Next"],49,82],["chunk-83",8,"methodology",["Methodology"],30,83],["chunk-84",8,"the-short-version",["Methodology","The short version"],130,84],["chunk-85",8,"what-leadtype-owns",["Methodology","What leadtype owns"],53,85],["chunk-86",8,"what-leadtype-does-not-own",["Methodology","What leadtype does not own"],31,86],["chunk-87",8,"when-the-combination-shines",["Methodology","When the combination shines"],86,87],["chunk-88",9,"quickstart",["Quickstart"],18,88],["chunk-89",9,"install",["Quickstart","Install"],54,89],["chunk-90",9,"author-one-page",["Quickstart","Author one page"],46,90],["chunk-91",9,"generate",["Quickstart","Generate"],149,91],["chunk-92",9,"inspect-the-output",["Quickstart","Inspect the output"],158,92],["chunk-93",9,"bundle-for-offline-agents",["Quickstart","Bundle for offline agents"],82,93],["chunk-94",9,"what-s-next",["Quickstart","What's next"],32,94],["chunk-95",10,"cli",["CLI"],30,95],["chunk-96",10,"generate",["CLI","generate"],167,96],["chunk-97",10,"generate",["CLI","generate"],76,97],["chunk-98",10,"bundle-mode",["CLI","generate","Bundle mode"],75,98],["chunk-99",10,"json-output-shape",["CLI","generate","JSON output shape"],172,99],["chunk-100",10,"group-inference",["CLI","generate","Group inference"],88,100],["chunk-101",10,"lint",["CLI","lint"],145,101],["chunk-102",10,"help",["CLI","help"],25,102],["chunk-103",10,"library-entry-points",["CLI","Library entry points"],81,103],["chunk-104",11,"convert",["Convert"],47,104],["chunk-105",11,"convertallmdx",["Convert","convertAllMdx"],67,105],["chunk-106",11,"convertmdxtomarkdown",["Convert","convertMdxToMarkdown"],54,106],["chunk-107",11,"writemdxfileasmarkdown",["Convert","writeMdxFileAsMarkdown"],28,107],["chunk-108",11,"behavior-notes",["Convert","Behavior notes"],50,108],["chunk-109",11,"pairing-with-remark-plugins",["Convert","Pairing with remark plugins"],54,109],["chunk-110",12,"evals",["Evals"],46,110],["chunk-111",12,"what-we-benchmark",["Evals","What we benchmark"],173,111],["chunk-112",12,"what-we-benchmark",["Evals","What we benchmark"],120,112],["chunk-113",12,"what-we-learned",["Evals","What we learned"],132,113],["chunk-114",12,"current-default",["Evals","Current default"],72,114],["chunk-115",12,"open-question",["Evals","Open question"],55,115],["chunk-116",12,"run-the-evals",["Evals","Run the evals"],37,116],["chunk-117",13,"lint-rules",["Lint rules"],46,117],["chunk-118",13,"rules",["Lint rules","Rules"],15,118],["chunk-119",13,"frontmatter-rules",["Lint rules","Rules","Frontmatter rules"],58,119],["chunk-120",13,"content-link-rules",["Lint rules","Rules","Content / link rules"],68,120],["chunk-121",13,"library-api",["Lint rules","Library API"],90,121],["chunk-122",13,"result-shape",["Lint rules","Library API","Result shape"],67,122],["chunk-123",13,"docs-frontmatter",["Lint rules","Default schemas","Docs frontmatter"],75,123],["chunk-124",13,"changelog-frontmatter",["Lint rules","Default schemas","Changelog frontmatter"],60,124],["chunk-125",13,"meta-json",["Lint rules","Default schemas","meta.json"],49,125],["chunk-126",13,"custom-schemas",["Lint rules","Custom schemas"],63,126],["chunk-127",13,"practical-guidance",["Lint rules","Practical guidance"],65,127],["chunk-128",14,"llm-files",["LLM files"],128,128],["chunk-129",14,"what-gets-generated",["LLM files","What gets generated"],154,129],["chunk-130",14,"example-llms-txt",["LLM files","Example llms.txt"],82,130],["chunk-131",14,"typical-sequence",["LLM files","Typical sequence"],105,131],["chunk-132",14,"generateagentreadabilityartifacts",["LLM files","generateAgentReadabilityArtifacts"],132,132],["chunk-133",14,"agent-readability-helpers",["LLM files","Agent readability helpers"],72,133],["chunk-134",14,"createagentmarkdownresponse",["LLM files","Agent readability helpers","createAgentMarkdownResponse"],180,134],["chunk-135",14,"createsitemapxmlresponse-createsitemapmarkdownresponse-createrobotstxtresponse",["LLM files","Agent readability helpers","createSitemapXmlResponse / createSitemapMarkdownResponse / createRobotsTxtResponse"],96,135],["chunk-136",14,"createdocshead",["LLM files","Agent readability helpers","createDocsHead"],148,136],["chunk-137",14,"lower-level-helpers",["LLM files","Agent readability helpers","Lower-level helpers"],144,137],["chunk-138",14,"lower-level-helpers",["LLM files","Agent readability helpers","Lower-level helpers"],58,138],["chunk-139",14,"cache-control-and-cdn",["LLM files","Agent readability helpers","Cache-Control and CDN"],73,139],["chunk-140",14,"manifest-version",["LLM files","Agent readability helpers","Manifest version"],47,140],["chunk-141",14,"generateagentsmd",["LLM files","generateAgentsMd"],144,141],["chunk-142",14,"example-output",["LLM files","generateAgentsMd","Example output"],86,142],["chunk-143",14,"resolvedocsnavigation",["LLM files","resolveDocsNavigation"],111,143],["chunk-144",14,"tables-of-contents",["LLM files","Tables of contents"],122,144],["chunk-145",14,"group-design",["LLM files","Group design"],69,145],["chunk-146",14,"base-url-precedence",["LLM files","Base URL precedence"],75,146],["chunk-147",15,"remark-plugins",["Remark plugins"],46,147],["chunk-148",15,"the-default-stack",["Remark plugins","The default stack"],182,148],["chunk-149",15,"the-default-stack",["Remark plugins","The default stack"],39,149],["chunk-150",15,"why-order-matters",["Remark plugins","Why order matters"],81,150],["chunk-151",15,"remarkinclude",["Remark plugins","Optional plugins","remarkInclude"],40,151],["chunk-152",15,"remarktypetabletomarkdown-with-basepath",["Remark plugins","Optional plugins","remarkTypeTableToMarkdown with basePath"],99,152],["chunk-153",15,"plugin-selection-rules",["Remark plugins","Plugin selection rules"],63,153],["chunk-154",16,"search",["Search"],41,154],["chunk-155",16,"vocabulary",["Search","Vocabulary"],79,155],["chunk-156",16,"build-time-indexing",["Search","Build-time indexing"],66,156],["chunk-157",16,"runtime-search",["Search","Runtime search"],123,157],["chunk-158",16,"reading-docs-at-runtime",["Search","Reading docs at runtime"],62,158],["chunk-159",16,"source-grounded-answers",["Search","Source-grounded answers"],62,159],["chunk-160",16,"streaming-via-provider-entry-points",["Search","Streaming via provider entry points"],103,160],["chunk-161",16,"bash-tool-adapters",["Search","Bash tool adapters"],71,161],["chunk-162",16,"abuse-guards",["Search","Abuse guards"],60,162],["chunk-163",16,"when-to-add-embeddings",["Search","When to add embeddings"],73,163]],"terms":{"10":[[148,0,0,1,0]],"11":[[148,0,0,1,0]],"12":[[148,0,0,1,0]],"13":[[148,0,0,1,0]],"14":[[148,0,0,1,0]],"15":[[148,0,0,1,0]],"16":[[148,0,0,1,0],[149,0,0,1,0]],"17":[[148,0,0,1,0],[149,0,0,1,0]],"18":[[148,0,0,1,0],[149,0,0,1,0]],"25":[[30,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0]],"35":[[76,0,0,1,0],[155,0,0,1,0]],"200":[[56,0,0,1,0],[134,0,0,1,0],[137,0,0,1,0]],"300":[[56,0,0,1,0],[60,0,0,1,0],[134,0,0,1,0],[139,0,0,1,0]],"5173":[[49,0,0,0,4],[61,0,0,0,8],[92,0,0,0,1]],"8601":[[124,0,0,1,0]],"components":[[0,1,1,2,0],[1,1,1,2,0],[2,1,1,2,2],[3,1,1,1,0],[4,1,1,3,0],[5,1,1,1,0],[6,1,1,3,0],[7,1,1,2,0],[8,1,1,1,0],[9,1,1,1,0],[10,1,1,1,0],[11,1,1,2,1],[12,1,1,1,0],[13,1,1,1,0],[14,1,1,1,0],[15,1,1,1,0],[16,1,1,1,0],[17,1,1,1,0],[18,1,1,1,0],[19,1,1,1,0],[20,1,1,1,4],[21,1,1,1,0],[22,1,1,3,0],[71,0,0,2,1],[81,0,0,1,0],[86,0,0,1,0],[111,0,0,1,0],[144,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0]],"mdx":[[0,0,0,1,0],[1,0,0,2,0],[2,0,0,1,1],[3,0,0,2,0],[4,0,0,2,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,2,0],[8,0,0,2,0],[9,0,0,1,0],[10,0,0,1,1],[11,0,0,2,1],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,3],[21,0,0,1,2],[22,0,0,1,0],[23,0,0,2,0],[24,0,0,1,1],[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[31,0,0,0,1],[39,0,0,1,0],[41,0,0,1,0],[42,0,0,0,1],[43,0,0,1,0],[44,0,0,0,2],[63,0,0,1,0],[65,0,0,0,1],[70,0,0,2,0],[71,0,0,2,1],[72,0,0,1,0],[73,0,0,2,0],[74,0,0,1,0],[75,0,0,2,1],[76,0,0,2,0],[77,0,0,2,0],[78,0,0,1,0],[79,0,0,2,1],[80,0,0,1,0],[81,0,0,3,0],[82,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0],[88,0,0,1,0],[90,0,0,1,1],[91,0,0,1,0],[92,0,0,1,0],[96,0,0,1,0],[104,0,0,2,0],[105,0,0,2,0],[106,0,0,1,1],[107,0,0,1,1],[108,0,0,2,0],[109,0,0,1,0],[117,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[144,0,0,1,0],[147,0,0,2,0],[148,0,0,2,1],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,2,1],[153,0,0,1,0],[156,0,0,1,0]],"pipeline":[[0,0,0,2,0],[1,0,0,1,0],[2,0,0,2,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,2,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,2,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[29,0,0,1,0],[44,0,0,1,8],[46,0,0,1,0],[53,0,0,1,0],[63,0,0,1,0],[70,0,0,1,0],[71,0,1,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[78,0,0,1,0],[79,0,0,2,0],[80,0,0,1,0],[81,0,0,1,0],[82,0,0,2,0],[83,0,0,1,0],[85,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[96,0,0,1,0],[100,0,0,1,0],[106,0,0,1,0],[130,0,0,0,1],[142,0,0,0,1]],"knows":[[0,0,0,1,0],[1,0,0,1,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0]],"flatten":[[0,0,0,2,0],[1,0,1,1,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,3,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[71,0,0,0,1],[76,0,0,1,0],[148,0,0,2,0]],"into":[[0,0,0,2,0],[1,0,0,2,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,2,0],[8,0,0,1,0],[9,0,0,3,0],[10,0,0,1,1],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[24,0,0,0,1],[30,1,1,0,0],[31,1,1,0,0],[32,1,1,0,0],[33,1,2,0,0],[34,1,1,0,0],[35,1,1,0,0],[36,1,1,0,0],[37,1,1,0,0],[38,1,1,0,0],[39,1,1,0,0],[40,1,1,0,0],[41,0,0,1,0],[42,0,0,1,0],[43,0,0,1,0],[44,0,1,2,0],[45,0,0,1,0],[46,0,0,2,0],[47,0,0,1,0],[48,0,0,2,0],[49,0,0,2,0],[50,0,0,1,0],[51,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[63,0,0,1,0],[66,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[76,0,0,1,0],[91,0,0,2,0],[92,0,0,0,1],[93,0,0,1,0],[94,0,0,2,0],[96,0,0,2,0],[98,0,0,1,0],[104,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[111,0,0,1,0],[112,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[133,0,0,1,0],[135,0,0,0,1],[142,0,0,1,0],[147,0,0,3,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,2,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[159,0,0,1,0]],"agent":[[0,0,0,1,0],[1,0,0,2,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,1],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,3,3],[15,0,0,3,1],[16,0,0,1,0],[17,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,2,0],[30,0,0,1,0],[31,0,0,1,0],[32,0,0,4,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,2,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,0,3],[43,0,0,1,0],[46,0,1,2,1],[47,0,1,1,0],[49,0,0,2,0],[51,0,0,2,0],[52,0,0,3,0],[53,0,0,2,1],[54,0,0,2,1],[55,0,0,1,1],[56,0,0,5,1],[57,0,0,4,0],[58,0,0,2,0],[59,0,0,1,1],[60,0,0,3,0],[61,0,0,3,2],[62,0,0,3,0],[71,0,0,1,0],[72,0,0,2,0],[74,0,0,2,0],[75,0,0,1,4],[76,0,0,1,0],[77,0,0,2,0],[79,0,0,1,1],[81,0,0,1,0],[87,0,0,2,0],[91,0,0,2,0],[92,0,0,2,2],[96,0,0,1,0],[98,0,0,1,0],[99,0,0,0,1],[103,0,0,1,0],[108,0,0,1,0],[110,0,0,2,0],[128,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0],[133,0,1,0,0],[134,0,1,5,0],[135,0,1,0,0],[136,0,1,0,1],[137,0,1,2,0],[138,0,1,1,0],[139,0,1,2,0],[140,0,1,1,0],[141,0,0,1,0],[146,0,0,1,1],[147,0,0,1,0],[148,0,0,1,0],[153,0,0,1,0],[161,0,0,1,0]],"readable":[[0,0,0,1,0],[1,0,0,1,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[41,0,0,1,0],[46,0,1,0,0],[47,0,1,0,0],[51,0,0,1,0],[52,0,0,2,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[71,0,0,1,0],[73,0,0,1,0],[93,0,0,1,0],[147,0,0,1,0]],"markdown":[[0,0,0,2,0],[1,0,0,3,0],[2,0,0,1,0],[3,0,0,1,0],[4,0,0,1,0],[5,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[8,0,0,1,0],[9,0,0,1,0],[10,0,0,1,1],[11,0,0,2,1],[12,0,0,1,0],[13,0,0,2,0],[14,0,0,1,2],[15,0,0,4,1],[16,0,0,1,0],[17,0,0,1,0],[18,0,0,1,0],[19,0,0,1,0],[20,0,0,1,0],[21,0,0,2,5],[22,0,0,2,0],[24,0,0,1,0],[30,0,0,1,0],[42,0,0,0,1],[46,0,0,8,0],[47,0,0,1,0],[49,0,0,4,1],[51,0,0,1,0],[52,0,0,6,0],[53,0,0,2,0],[54,0,0,1,0],[55,0,0,2,1],[56,0,1,5,0],[57,0,1,3,0],[58,0,1,2,0],[59,0,1,1,0],[60,0,1,2,0],[61,0,0,5,1],[62,0,0,6,0],[71,0,0,3,0],[73,0,0,3,0],[75,0,0,1,1],[76,0,0,3,0],[77,0,0,1,0],[79,0,0,0,1],[81,0,0,2,0],[83,0,0,1,0],[84,0,0,1,0],[85,0,0,2,0],[87,0,0,1,0],[91,0,0,2,0],[92,0,0,0,5],[103,0,0,1,0],[104,0,0,2,0],[105,0,0,1,0],[106,0,0,2,1],[107,0,0,1,0],[108,0,0,2,0],[109,0,0,1,0],[111,0,0,3,0],[112,0,0,2,0],[114,0,0,1,0],[128,0,0,2,0],[129,0,0,4,0],[132,0,0,1,0],[134,0,0,4,0],[136,0,0,0,1],[137,0,0,5,0],[138,0,0,1,0],[139,0,0,1,0],[144,0,0,1,0],[147,0,0,3,0],[148,0,0,3,1],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,2,0],[153,0,0,1,0],[156,0,0,1,0]],"leadtype":[[0,0,0,1,0],[3,0,0,1,0],[4,0,0,0,1],[5,0,0,0,1],[6,0,0,1,0],[11,0,0,1,1],[13,0,0,8,4],[20,0,0,1,1],[22,0,0,1,0],[23,0,0,1,0],[24,0,0,0,1],[28,0,0,1,0],[30,0,0,1,0],[31,0,0,0,1],[32,0,0,1,0],[33,0,0,0,1],[34,0,0,0,1],[35,0,0,0,4],[37,0,0,0,1],[41,0,0,2,0],[42,0,0,1,1],[43,0,0,2,2],[44,0,0,1,2],[45,0,0,1,1],[46,0,0,3,1],[47,0,0,1,0],[48,0,0,1,2],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[53,0,0,0,2],[54,0,0,0,1],[55,0,0,0,3],[56,0,0,0,1],[59,0,0,0,1],[63,0,0,3,0],[64,0,0,1,0],[65,0,0,1,1],[66,0,0,1,1],[67,0,0,1,1],[68,0,0,3,2],[69,0,0,1,0],[70,0,0,1,0],[72,0,0,3,0],[77,0,0,1,0],[79,1,1,2,2],[80,1,1,0,0],[81,1,1,1,0],[82,1,1,1,0],[83,0,0,2,0],[84,0,0,3,0],[85,0,1,1,0],[86,0,1,1,0],[87,0,0,4,0],[88,0,0,1,0],[89,0,0,11,0],[90,0,0,1,0],[91,0,0,1,2],[92,0,0,1,2],[93,0,0,1,1],[94,0,0,1,0],[95,0,0,3,1],[96,0,0,2,1],[97,0,0,2,0],[98,0,0,2,1],[99,0,0,2,0],[100,0,0,2,2],[101,0,0,2,1],[102,0,0,2,3],[103,0,0,8,0],[104,0,0,3,1],[105,0,0,1,1],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,1],[110,0,0,2,0],[111,0,0,3,0],[112,0,0,1,0],[113,0,0,1,0],[114,0,0,2,0],[115,0,0,1,0],[116,0,0,1,0],[117,0,0,1,1],[121,0,0,0,1],[126,0,0,0,1],[127,0,0,1,0],[128,0,0,3,1],[131,0,0,0,6],[132,0,0,1,3],[133,0,0,0,1],[136,0,0,0,5],[140,0,0,1,0],[141,0,0,0,1],[143,0,0,0,1],[144,0,0,0,2],[146,0,0,1,2],[147,0,0,0,1],[152,0,0,0,1],[154,0,0,1,0],[156,0,0,0,2],[157,0,0,0,1],[158,0,0,0,1],[159,0,0,0,1],[160,0,0,0,3],[161,0,0,0,1]],"does":[[0,0,0,1,0],[18,0,0,1,0],[44,0,0,1,0],[45,0,0,0,1],[86,0,1,0,0],[90,0,0,0,1],[91,0,0,1,0],[113,0,0,1,0],[130,0,0,0,1],[131,0,0,0,1],[142,0,0,0,1]],"not":[[0,0,0,1,0],[12,0,0,1,0],[17,0,0,1,0],[18,0,0,1,0],[32,0,1,1,0],[38,0,0,1,0],[46,0,0,2,0],[47,0,0,1,0],[49,0,0,1,0],[56,0,0,2,0],[58,0,0,1,0],[64,0,0,1,0],[69,0,0,1,0],[73,0,0,1,0],[77,0,0,1,0],[79,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[86,0,1,0,0],[100,0,0,1,0],[110,0,0,1,0],[113,0,0,2,0],[114,0,0,2,0],[119,0,0,1,0],[129,0,0,1,0],[134,0,0,2,0],[136,0,0,1,0],[144,0,0,1,0],[145,0,0,2,0],[150,0,0,1,0],[155,0,0,1,0],[157,0,0,1,0],[163,0,0,1,0]],"ship":[[0,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,1],[36,0,0,1,1],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[48,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[84,0,0,1,0],[93,0,0,1,0],[98,0,0,1,0],[141,0,0,1,0],[142,0,0,0,1]],"ui":[[0,0,0,1,0],[15,0,0,1,0],[22,0,0,1,0],[29,0,0,1,0],[42,0,0,0,1],[48,0,0,1,0],[75,0,0,0,3],[79,0,0,1,1],[84,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[143,0,0,1,0],[157,0,0,1,0]],"your":[[0,0,0,1,0],[2,0,0,3,0],[3,0,0,1,0],[4,0,0,1,0],[6,0,0,3,0],[7,0,0,2,0],[14,0,0,1,1],[22,0,0,1,0],[27,0,0,1,0],[30,0,0,2,0],[31,0,0,0,1],[32,0,0,2,0],[35,0,0,1,0],[38,0,0,4,2],[39,0,0,1,0],[41,0,0,2,0],[42,0,0,0,2],[44,0,0,1,0],[46,0,0,2,0],[49,0,0,2,0],[51,0,0,1,0],[53,0,0,1,0],[54,0,0,0,1],[55,0,0,3,0],[56,0,0,1,0],[57,0,0,4,0],[58,0,0,1,0],[60,0,0,2,0],[61,0,0,2,0],[66,0,0,1,0],[70,0,0,1,0],[72,0,0,1,0],[74,0,0,2,0],[75,0,0,4,0],[76,0,0,1,0],[79,0,0,2,1],[80,0,1,1,0],[81,0,0,2,0],[86,0,0,1,0],[87,0,0,1,0],[90,0,0,1,0],[92,0,0,2,0],[94,0,0,1,0],[109,0,0,1,0],[126,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[143,0,0,2,0],[152,0,0,1,0],[154,0,0,1,0],[157,0,0,1,0],[160,0,0,1,0],[163,0,0,1,0]],"docs":[[0,0,0,1,0],[2,0,0,0,1],[10,0,0,0,1],[11,0,0,2,1],[14,0,0,0,4],[15,0,0,1,0],[16,0,0,0,2],[18,0,0,1,2],[20,0,0,0,1],[22,0,0,1,0],[24,0,0,1,2],[25,0,0,2,1],[26,0,0,1,3],[27,0,0,1,0],[28,0,0,2,0],[30,1,1,3,0],[31,1,1,1,3],[32,1,1,1,0],[33,1,1,2,2],[34,1,2,2,0],[35,1,1,3,7],[36,1,1,1,2],[37,1,1,2,0],[38,1,1,3,1],[39,1,1,3,0],[40,1,1,1,0],[41,1,1,2,0],[42,1,1,1,7],[43,1,1,2,1],[44,1,1,2,2],[45,1,1,3,3],[46,1,1,8,1],[47,1,1,3,0],[48,1,1,7,4],[49,1,1,11,2],[50,1,1,2,0],[51,1,1,2,0],[52,1,1,5,0],[53,1,1,3,1],[54,1,1,7,3],[55,1,2,1,4],[56,1,1,4,1],[57,1,1,5,0],[58,1,1,1,0],[59,1,1,2,5],[60,1,1,1,0],[61,1,1,6,5],[62,1,1,8,0],[63,0,0,1,0],[64,0,0,2,0],[65,0,0,0,3],[66,0,0,0,1],[67,0,0,0,1],[68,0,0,0,1],[69,0,0,1,0],[70,0,0,2,0],[71,0,0,0,2],[72,0,0,9,0],[73,0,0,4,0],[74,0,0,6,0],[75,0,0,3,0],[76,0,0,2,0],[77,0,0,4,0],[79,0,0,3,3],[80,0,0,2,0],[83,0,0,3,0],[84,0,0,5,0],[86,0,0,1,0],[87,0,0,3,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,2,0],[91,0,0,11,0],[92,0,0,3,6],[93,0,0,4,0],[94,0,0,4,0],[96,0,0,10,0],[97,0,0,3,0],[98,0,0,3,0],[99,0,0,1,8],[100,0,0,2,2],[101,0,0,1,0],[103,0,0,1,0],[105,0,0,1,2],[106,0,0,0,1],[107,0,0,0,2],[109,0,0,1,0],[110,0,0,1,0],[111,0,0,9,0],[112,0,0,4,0],[113,0,0,1,0],[114,0,0,1,1],[115,0,0,1,0],[116,0,0,1,0],[120,0,0,3,0],[121,0,0,1,1],[123,0,1,0,0],[126,0,0,0,1],[127,0,0,1,0],[128,0,0,5,0],[129,0,0,10,0],[130,0,0,0,5],[131,0,0,1,2],[132,0,0,5,0],[134,0,0,1,0],[135,0,0,0,4],[136,0,0,1,4],[137,0,0,5,0],[141,0,0,5,0],[142,0,0,1,4],[143,0,0,1,1],[145,0,0,1,0],[151,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[156,0,0,1,2],[157,0,0,1,2],[158,0,1,0,0],[160,0,0,1,0],[161,0,0,2,0],[163,0,0,2,0]],"app":[[0,0,0,1,0],[2,0,0,1,0],[6,0,0,1,0],[20,0,0,1,1],[22,0,0,1,0],[24,0,0,0,1],[41,0,0,1,0],[42,0,0,1,6],[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,2,0],[47,0,0,1,0],[48,0,0,2,0],[49,0,0,2,0],[50,0,0,1,0],[51,0,0,1,0],[53,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0],[91,0,0,1,0],[99,0,0,1,0],[128,0,0,1,0]],"owns":[[0,0,0,1,0],[20,0,0,0,2],[34,0,0,1,0],[85,0,1,0,0]],"runtime":[[0,0,0,1,0],[15,0,0,0,1],[20,0,0,0,2],[22,0,0,1,0],[46,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[59,0,0,1,0],[92,0,0,1,0],[97,0,0,1,0],[130,0,0,0,1],[133,0,0,2,0],[154,0,0,2,0],[155,0,0,1,0],[156,0,0,1,0],[157,0,1,2,0],[158,0,1,1,0],[159,0,0,1,0],[160,0,0,2,0],[161,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0]],"rendering":[[0,0,0,1,0],[6,0,1,0,0],[41,0,0,1,0],[108,0,0,1,0],[152,0,0,1,0]],"styling":[[0,0,0,1,0],[9,0,0,2,0],[20,0,0,0,1],[86,0,0,1,0]],"accessibility":[[0,0,0,1,0]],"only":[[0,0,0,1,0],[4,0,0,1,0],[15,0,0,3,0],[18,0,0,1,0],[22,0,0,1,0],[26,0,0,2,0],[34,0,0,1,0],[39,0,0,1,0],[44,0,0,1,0],[71,0,0,0,3],[72,0,0,1,0],[73,0,0,3,0],[74,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[93,0,0,1,0],[96,0,0,1,0],[98,0,0,1,0],[99,0,0,2,0],[111,0,0,1,0],[112,0,0,2,0],[113,0,0,1,0],[134,0,0,1,0],[144,0,0,2,0],[153,0,0,1,0],[157,0,0,1,0],[159,0,0,1,0],[161,0,0,1,0],[163,0,0,1,0]],"has":[[0,0,0,1,0],[28,0,0,1,0],[52,0,0,2,0],[55,0,0,1,0],[72,0,0,1,0],[76,0,0,1,0],[91,0,0,1,0]],"honor":[[0,0,0,1,0]],"small":[[0,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[114,0,0,1,0],[115,0,0,1,0],[156,0,0,1,0],[157,0,0,1,0]],"naming":[[0,0,0,1,0],[2,0,1,0,0]],"contract":[[0,0,0,1,0],[2,0,1,1,0],[3,0,0,2,0],[4,0,1,0,0],[6,0,0,1,0],[22,0,0,1,0],[71,0,0,1,0],[78,0,0,1,0],[126,0,0,1,0],[144,0,0,1,0]],"so":[[0,0,0,1,0],[1,0,0,1,0],[4,0,0,1,0],[9,0,0,1,0],[12,0,0,1,0],[14,0,0,1,0],[16,0,0,1,0],[21,0,0,1,0],[25,0,0,1,0],[28,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[35,0,0,0,1],[36,0,0,0,1],[38,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[43,0,0,1,0],[44,0,0,2,1],[45,0,0,1,0],[46,0,0,2,0],[47,0,0,1,0],[48,0,0,3,0],[49,0,0,1,0],[50,0,0,1,0],[52,0,0,2,0],[56,0,0,2,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,2,0],[63,0,0,2,0],[64,0,0,1,0],[65,0,0,2,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[73,0,0,3,0],[74,0,0,2,0],[85,0,0,1,0],[93,0,0,1,0],[99,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[115,0,0,1,0],[120,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[131,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[142,0,0,0,1],[150,0,0,1,0],[151,0,0,1,0],[155,0,0,2,0],[157,0,0,1,0],[159,0,0,1,0]],"remark":[[0,0,0,1,0],[2,0,0,2,0],[9,0,0,1,0],[10,0,0,1,0],[17,0,0,1,0],[21,0,0,0,2],[22,0,0,1,0],[35,0,0,0,1],[44,0,0,1,1],[70,0,0,1,0],[71,0,0,3,4],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,2,0],[78,0,0,1,0],[85,0,0,1,0],[89,0,0,1,0],[91,0,0,1,0],[103,0,0,1,0],[104,0,0,1,0],[105,0,0,0,1],[109,0,1,1,1],[120,0,0,1,0],[131,0,0,0,1],[147,1,1,1,1],[148,1,1,0,0],[149,1,1,0,0],[150,1,1,0,0],[151,1,1,0,0],[152,1,1,0,1],[153,1,1,0,0]],"each":[[0,0,0,1,0],[1,0,0,1,0],[3,0,0,1,0],[8,0,0,1,0],[25,0,0,2,0],[34,0,0,1,0],[52,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[77,0,0,2,0],[80,0,0,1,0],[87,0,0,1,0],[91,0,0,1,0],[101,0,0,1,0],[111,0,0,1,0],[112,0,0,3,0],[146,0,0,1,0],[147,0,0,1,0],[150,0,0,1,0],[155,0,0,1,0]],"component":[[0,0,0,1,0],[1,0,0,1,0],[3,0,0,1,0],[4,0,0,0,3],[6,0,0,1,0],[8,0,1,0,0],[9,0,1,0,0],[10,0,1,0,0],[11,0,1,0,0],[12,0,1,0,0],[13,0,1,0,0],[14,0,1,0,0],[15,0,1,0,0],[16,0,1,0,0],[17,0,1,0,0],[18,0,1,0,0],[19,0,1,0,0],[20,0,1,1,0],[21,0,1,0,0],[22,0,0,1,0],[27,0,0,1,0],[44,0,0,0,1],[71,0,0,1,0],[74,0,0,1,0],[76,0,0,1,0],[86,0,0,2,0],[109,0,0,1,0],[143,0,0,1,0],[147,0,0,1,0],[150,0,0,3,0]],"agents":[[0,0,0,1,0],[1,0,0,1,0],[9,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[14,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[21,0,0,0,2],[25,0,0,1,3],[29,0,0,1,0],[30,0,0,4,0],[31,0,0,1,2],[32,0,1,9,0],[33,0,0,4,1],[34,0,0,1,0],[35,0,0,2,2],[36,0,0,1,0],[37,0,0,3,0],[38,0,0,5,1],[39,0,0,3,0],[40,0,0,1,0],[41,0,0,1,0],[42,0,0,1,1],[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,3,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,2,0],[51,1,1,1,0],[52,1,1,2,0],[53,1,1,0,0],[54,1,1,1,0],[55,1,1,1,0],[56,1,2,1,0],[57,1,2,0,0],[58,1,2,0,0],[59,1,2,0,0],[60,1,2,1,0],[61,1,1,1,0],[62,1,1,2,0],[71,0,0,0,3],[72,0,0,1,0],[73,0,0,6,0],[74,0,0,1,0],[75,0,0,6,3],[76,0,0,1,0],[77,0,0,1,0],[79,0,0,6,8],[80,0,0,3,0],[81,0,0,8,0],[82,0,0,3,0],[84,0,0,1,0],[85,0,0,1,0],[87,0,0,1,0],[92,0,0,0,1],[93,0,1,2,0],[94,0,0,1,0],[96,0,0,4,0],[98,0,0,1,0],[110,0,0,1,0],[111,0,0,5,0],[112,0,0,1,0],[113,0,0,2,0],[114,0,0,3,0],[115,0,0,1,0],[116,0,0,1,0],[128,0,0,2,0],[129,0,0,2,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,5,0],[138,0,0,2,0],[139,0,0,2,0],[140,0,0,1,0],[141,0,0,5,0],[142,0,0,1,1],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,3,0],[146,0,0,1,0]],"search":[[0,0,0,1,0],[1,0,0,1,0],[10,0,0,1,0],[21,0,0,0,1],[25,0,0,1,0],[27,0,0,2,0],[29,0,0,2,0],[33,0,0,1,0],[41,0,0,2,0],[42,0,0,1,4],[43,0,0,2,0],[44,0,0,2,3],[45,0,0,1,0],[46,0,0,2,0],[47,0,0,2,0],[48,0,0,2,0],[49,0,0,3,0],[50,0,0,2,0],[71,0,0,0,4],[72,0,0,2,0],[73,0,0,3,0],[75,0,0,0,4],[76,0,0,2,0],[77,0,0,2,0],[79,0,0,2,3],[81,0,0,1,0],[83,0,0,1,0],[84,0,0,4,0],[85,0,0,1,0],[87,0,0,2,0],[89,0,0,1,0],[91,0,0,3,0],[92,0,0,1,2],[93,0,0,1,0],[96,0,0,2,0],[98,0,0,2,0],[99,0,0,1,3],[103,0,0,1,0],[111,0,0,1,0],[114,0,0,1,0],[129,0,0,1,0],[134,0,0,1,0],[138,0,0,1,0],[145,0,0,1,0],[154,1,1,2,0],[155,1,1,5,0],[156,1,1,2,3],[157,1,2,3,3],[158,1,1,2,1],[159,1,1,1,1],[160,1,1,1,3],[161,1,1,1,1],[162,1,1,1,0],[163,1,1,2,0]],"llms":[[0,0,0,1,0],[14,0,0,1,0],[16,0,0,0,3],[17,0,0,1,0],[21,0,0,0,2],[24,0,0,3,0],[25,0,0,1,3],[29,0,0,1,0],[32,0,1,4,0],[33,0,0,2,0],[42,0,0,0,2],[43,0,0,1,0],[45,0,0,1,0],[46,0,0,2,0],[47,0,0,1,0],[49,0,0,2,1],[51,0,0,2,0],[52,0,0,2,0],[53,0,0,2,3],[54,0,0,4,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,3,0],[59,0,0,4,0],[60,0,0,1,0],[61,0,0,3,1],[62,0,0,3,0],[71,0,0,0,2],[72,0,0,4,0],[73,0,0,6,0],[74,0,0,1,0],[75,0,0,2,1],[76,0,0,1,0],[77,0,0,4,0],[79,0,0,2,3],[80,0,0,1,0],[81,0,0,4,0],[82,0,0,1,0],[83,0,0,1,0],[84,0,0,4,0],[85,0,0,2,0],[87,0,0,2,0],[91,0,0,3,0],[92,0,0,2,4],[93,0,0,1,0],[96,0,0,4,0],[98,0,0,2,0],[99,0,0,0,3],[100,0,0,1,0],[110,0,0,2,0],[111,0,0,8,0],[112,0,0,13,0],[113,0,0,7,0],[114,0,0,5,2],[115,0,0,3,0],[116,0,0,2,1],[128,0,0,3,0],[129,0,0,5,0],[130,0,1,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,3,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,3,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,3,0],[146,0,0,1,0],[152,0,0,1,0]],"full":[[0,0,0,1,0],[14,0,0,1,0],[16,0,0,0,1],[24,0,0,1,0],[27,0,0,2,0],[28,0,0,1,0],[33,0,0,1,0],[35,0,0,1,0],[42,0,0,0,1],[44,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[51,0,0,1,0],[53,0,0,0,1],[54,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[62,0,0,1,0],[64,0,0,1,0],[71,0,0,0,1],[72,0,0,2,0],[73,0,0,3,0],[77,0,0,2,0],[79,0,0,0,1],[81,0,0,1,0],[85,0,0,1,0],[87,0,0,1,0],[91,0,0,1,0],[92,0,0,1,1],[93,0,0,1,0],[95,0,0,1,0],[96,0,0,2,0],[98,0,0,1,0],[99,0,0,0,1],[101,0,0,1,0],[109,0,0,1,0],[110,0,0,1,0],[111,0,0,6,0],[112,0,0,10,0],[113,0,0,5,0],[114,0,0,3,1],[115,0,0,2,0],[116,0,0,1,0],[123,0,0,1,0],[128,0,0,1,0],[129,0,0,2,0],[134,0,0,1,0],[138,0,0,1,0],[142,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[152,0,0,1,0]],"txt":[[0,0,0,1,0],[14,0,0,1,0],[16,0,0,0,3],[21,0,0,0,2],[24,0,0,3,0],[25,0,0,1,1],[29,0,0,1,0],[32,0,1,4,0],[33,0,0,2,0],[42,0,0,0,2],[43,0,0,1,0],[45,0,0,1,0],[46,0,0,3,0],[47,0,0,1,0],[49,0,0,3,1],[51,0,0,3,0],[52,0,0,4,0],[53,0,0,3,5],[54,0,0,5,1],[55,0,0,2,0],[56,0,0,2,0],[57,0,0,3,0],[58,0,0,5,0],[59,0,1,6,2],[60,0,0,2,0],[61,0,0,4,1],[62,0,0,6,0],[71,0,0,0,2],[72,0,0,5,0],[73,0,0,6,0],[74,0,0,2,0],[75,0,0,2,1],[76,0,0,1,0],[77,0,0,4,0],[79,0,0,2,3],[80,0,0,1,0],[81,0,0,4,0],[82,0,0,1,0],[83,0,0,1,0],[84,0,0,4,0],[85,0,0,2,0],[87,0,0,2,0],[91,0,0,4,0],[92,0,0,2,5],[93,0,0,1,0],[96,0,0,5,0],[98,0,0,2,0],[99,0,0,1,4],[100,0,0,1,0],[110,0,0,2,0],[111,0,0,8,0],[112,0,0,13,0],[113,0,0,7,0],[114,0,0,5,3],[115,0,0,3,0],[116,0,0,2,0],[128,0,0,4,0],[129,0,0,6,0],[130,0,1,1,1],[131,0,0,1,0],[132,0,0,2,1],[133,0,0,1,0],[134,0,0,4,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,3,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,3,0],[146,0,0,1,0],[152,0,0,1,0]],"why":[[1,0,1,0,0],[32,0,1,0,0],[150,0,1,0,0]],"all":[[1,0,1,0,0],[44,0,0,1,0],[49,0,0,1,0],[57,0,0,1,0],[73,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,0,2,0],[82,0,0,1,0],[89,0,0,1,0],[91,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[128,0,0,2,0],[129,0,0,1,0]],"interactive":[[1,0,0,1,0],[21,0,0,1,0],[71,0,0,1,0],[76,0,0,1,0],[147,0,0,1,0]],"like":[[1,0,0,1,0],[4,0,0,1,0],[9,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[46,0,0,1,0],[52,0,1,0,0],[92,0,0,1,0],[96,0,0,1,0],[141,0,0,1,0]],"tabs":[[1,0,0,2,0],[2,0,0,1,0],[12,0,1,0,2],[71,0,0,1,0],[76,0,0,1,0],[81,0,0,1,0],[148,0,0,1,0],[157,0,0,0,1]],"callout":[[1,0,0,2,0],[2,0,0,1,0],[9,0,1,0,2],[19,0,0,2,0],[20,0,0,0,2],[22,0,0,1,0],[71,0,0,1,0],[76,0,0,1,0],[81,0,0,1,0],[148,0,0,1,0]],"render":[[1,0,0,2,0],[8,0,0,1,0],[20,0,0,0,1],[21,0,0,1,0],[55,0,0,1,0],[65,0,0,1,0],[75,0,0,0,1],[77,0,0,1,0],[106,0,0,1,0],[137,0,0,1,0]],"fine":[[1,0,0,1,0],[44,0,0,1,0],[54,0,0,1,0],[162,0,0,1,0]],"browser":[[1,0,0,1,0],[4,0,0,1,0],[15,0,0,2,0],[47,0,0,1,0],[51,0,0,1,0],[75,0,0,0,1],[79,0,0,0,1],[92,0,0,0,1]],"but":[[1,0,0,1,0],[9,0,0,2,0],[24,0,0,2,0],[38,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[87,0,0,1,0],[92,0,0,0,1],[113,0,0,4,0],[129,0,0,1,0],[141,0,0,1,0],[143,0,0,1,0],[157,0,0,1,0]],"do":[[1,0,0,1,0],[9,0,0,1,0],[12,0,0,1,0],[46,0,0,1,0],[56,0,0,1,0],[58,0,0,1,0],[159,0,0,0,1]],"nothing":[[1,0,0,1,0],[69,0,0,1,0]],"reading":[[1,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[79,0,0,1,0],[81,0,0,1,0],[93,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[158,0,1,0,0]],"raw":[[1,0,0,1,0]],"text":[[1,0,0,1,0],[3,0,0,1,0],[16,0,0,1,1],[21,0,0,1,0],[24,0,0,1,0],[33,0,0,0,1],[46,0,0,2,0],[47,0,0,1,0],[49,0,0,2,1],[55,0,0,0,1],[56,0,0,3,0],[61,0,0,1,1],[75,0,0,1,1],[76,0,0,1,0],[79,0,0,0,1],[92,0,0,0,4],[96,0,0,1,0],[97,0,0,2,0],[134,0,0,1,0],[136,0,0,0,1],[145,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[155,0,0,1,0],[160,0,0,1,0],[162,0,0,1,0]],"flattening":[[1,0,0,1,0],[2,0,0,1,0],[14,0,0,1,0],[16,0,0,1,0],[17,0,0,1,0],[21,0,0,1,0],[22,0,0,1,0],[109,0,0,1,0],[120,0,0,1,0]],"converts":[[1,0,0,1,0],[43,0,0,1,0],[81,0,0,1,0]],"portable":[[1,0,0,1,0],[76,0,0,1,0],[84,0,0,1,0],[87,0,0,1,0]],"equivalent":[[1,0,0,1,0],[12,0,0,1,0],[18,0,0,1,0],[76,0,0,1,0],[101,0,0,1,0],[147,0,0,1,0]],"conversion":[[1,0,0,1,0],[11,0,0,1,1],[17,0,0,1,0],[19,0,0,1,0],[20,0,0,0,1],[24,0,0,1,0],[44,0,0,0,1],[79,0,0,1,0],[85,0,0,1,0],[87,0,0,1,0],[97,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,2,0],[109,0,0,1,0],[130,0,0,0,1],[131,0,0,1,0],[152,0,0,2,0],[156,0,0,1,0]],"time":[[1,0,0,1,0],[19,0,0,1,0],[30,0,0,1,0],[44,0,0,0,1],[48,0,0,1,0],[53,0,0,1,0],[77,0,0,1,0],[127,0,0,1,0],[135,0,0,1,0],[144,0,0,1,0],[152,0,0,2,0],[154,0,0,1,0],[156,0,1,0,0]],"becomes":[[1,0,0,4,0],[3,0,0,1,0],[23,0,0,1,0],[24,0,0,2,0],[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[71,0,0,3,0],[163,0,0,1,0]],"blockquote":[[1,0,0,1,0],[9,0,0,1,0],[71,0,0,1,0],[76,0,0,1,0],[148,0,0,1,0]],"stack":[[1,0,0,1,0],[71,0,0,2,1],[76,0,0,1,0],[77,0,0,1,0],[85,0,0,1,0],[91,0,0,1,0],[104,0,0,1,0],[109,0,0,2,0],[120,0,0,1,0],[147,0,0,2,0],[148,0,1,2,0],[149,0,1,1,0],[150,0,0,1,0],[151,0,0,2,0],[152,0,0,1,0],[153,0,0,1,0]],"bold":[[1,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[71,0,0,1,0],[76,0,0,1,0],[148,0,0,1,0]],"headings":[[1,0,0,1,0],[3,0,1,0,0],[4,0,1,0,0],[5,0,1,0,0],[6,0,1,0,0],[7,0,1,0,0],[12,0,0,1,0],[25,0,0,1,0],[26,0,0,1,0],[71,0,0,1,0],[73,0,0,1,0],[76,0,0,3,0],[129,0,0,1,0],[144,0,0,2,0],[155,0,0,1,0]],"one":[[1,0,0,1,0],[4,0,0,1,0],[13,0,0,1,0],[24,0,0,1,0],[25,0,0,1,0],[29,0,0,3,0],[32,0,0,1,0],[34,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[43,0,1,1,0],[44,0,0,3,0],[45,0,0,1,1],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,2,0],[49,0,0,2,0],[50,0,0,1,0],[53,0,0,0,1],[57,0,0,1,0],[61,0,0,1,0],[70,0,0,2,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,2,0],[76,0,0,1,0],[77,0,0,2,0],[78,0,0,1,0],[79,0,0,2,0],[80,0,0,2,0],[81,0,0,2,0],[82,0,0,1,0],[85,0,0,1,0],[87,0,0,2,0],[90,0,1,0,1],[91,0,0,2,0],[98,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[112,0,0,2,0],[129,0,0,1,0],[130,0,0,0,1],[131,0,0,0,1],[142,0,0,0,1],[150,0,0,2,0],[152,0,0,1,0],[160,0,0,2,0]],"per":[[1,0,0,1,0],[13,0,0,2,0],[29,0,0,1,0],[30,0,0,2,0],[31,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[44,0,0,1,0],[59,0,0,1,0],[66,0,0,1,0],[81,0,0,1,0],[98,0,0,1,0],[104,0,0,1,0],[114,0,0,1,0],[129,0,0,1,0],[148,0,0,1,0],[152,0,0,1,0]],"tab":[[1,0,0,1,0],[2,0,0,1,0],[12,0,0,0,6],[148,0,0,1,0]],"typetable":[[1,0,0,1,0],[2,0,0,1,0],[19,0,1,1,1],[71,0,0,1,0],[81,0,0,1,0],[148,0,0,1,0],[153,0,0,1,0]],"table":[[1,0,0,1,0],[3,0,1,0,0],[4,0,1,0,0],[5,0,1,0,0],[6,0,1,1,0],[7,0,1,0,0],[13,0,0,1,0],[19,0,0,1,0],[71,0,0,1,0],[144,0,0,1,0],[148,0,0,2,0],[152,0,0,1,0]],"mermaid":[[1,0,0,2,0],[2,0,0,1,0],[21,0,1,1,2],[25,0,0,0,1],[31,0,0,0,1],[42,0,0,0,1],[71,0,0,0,1],[75,0,0,0,1],[79,0,0,0,1],[81,0,0,1,0],[108,0,0,1,0],[148,0,0,2,1]],"fenced":[[1,0,0,1,0],[14,0,0,1,0],[16,0,0,1,0],[21,0,0,1,0],[144,0,0,1,0],[148,0,0,3,0],[149,0,0,3,0]],"block":[[1,0,0,1,0],[14,0,0,1,0],[21,0,0,1,0],[23,0,0,1,0],[148,0,0,2,0],[149,0,0,2,0]],"diagram":[[1,0,0,1,0],[21,0,0,1,0],[82,0,0,1,0]],"source":[[1,0,0,1,0],[20,0,0,1,1],[21,0,0,1,0],[25,0,0,1,0],[29,0,0,1,0],[39,0,0,1,0],[41,0,0,1,0],[42,0,0,1,0],[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,1,3,0],[49,0,0,1,0],[50,0,0,1,0],[52,0,0,1,0],[63,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,2,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[78,0,0,1,0],[79,0,0,1,1],[80,0,0,1,0],[81,0,0,2,0],[82,0,0,1,0],[85,0,0,1,0],[101,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[117,0,0,1,0],[128,0,0,1,0],[141,0,0,1,0],[151,0,0,1,0],[154,0,0,2,0],[155,0,0,1,0],[156,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[159,0,1,1,0],[160,0,0,1,0],[161,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0]],"survives":[[1,0,0,1,0]],"other":[[1,0,0,1,0],[21,0,0,1,0],[54,0,0,1,0],[56,0,0,1,0],[59,0,0,1,0],[66,0,1,0,0],[71,0,0,1,0],[75,0,0,1,0],[119,0,0,1,0],[127,0,0,1,0]],"tooling":[[1,0,0,1,0],[30,0,0,1,0]],"this":[[1,0,0,1,0],[3,0,0,1,0],[9,0,0,1,0],[11,0,0,1,1],[14,0,0,1,1],[15,0,0,1,0],[29,0,1,0,0],[30,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[38,0,0,2,0],[39,0,1,2,0],[41,0,0,1,0],[46,0,0,2,0],[48,0,0,1,0],[51,0,0,1,0],[53,0,0,1,0],[69,0,0,1,0],[70,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[92,0,0,1,1],[98,0,0,1,0],[106,0,0,1,0],[117,0,0,1,0],[142,0,0,0,1],[144,0,0,1,0],[148,0,0,1,0],[151,0,0,1,0]],"means":[[1,0,0,1,0],[113,0,0,1,0],[134,0,0,1,0]],"same":[[1,0,0,1,0],[2,0,0,1,0],[3,0,0,1,0],[6,0,0,1,0],[11,0,0,1,0],[16,0,0,1,0],[25,0,0,1,0],[29,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[47,0,0,1,0],[51,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[63,0,0,1,0],[68,0,0,1,0],[72,0,0,1,0],[76,0,0,2,0],[91,0,0,2,0],[92,0,0,1,0],[101,0,0,1,0],[111,0,0,1,0],[120,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[141,0,0,3,0],[143,0,0,2,0],[144,0,0,1,0],[158,0,0,1,0],[161,0,0,1,0]],"content":[[1,0,0,1,0],[9,0,0,1,1],[11,0,0,1,0],[12,0,0,3,0],[15,0,0,2,0],[17,0,0,4,0],[46,0,0,1,0],[49,0,0,2,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[56,0,0,2,0],[61,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[71,0,0,0,1],[73,0,0,3,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,2,0],[77,0,0,1,0],[81,0,0,1,0],[84,0,0,2,0],[87,0,0,2,0],[91,0,0,2,0],[92,0,0,1,2],[95,0,0,1,0],[98,0,0,1,0],[99,0,0,0,1],[101,0,0,1,0],[111,0,0,1,0],[120,0,1,0,0],[122,0,0,0,1],[127,0,0,2,0],[134,0,0,2,0],[136,0,0,0,3],[137,0,0,1,0],[151,0,0,1,0],[155,0,0,4,0],[156,0,0,1,1],[157,0,0,0,3],[158,0,0,0,2],[159,0,0,0,1],[160,0,0,0,1],[161,0,0,0,1]],"reaches":[[1,0,0,1,0]],"three":[[1,0,0,1,0],[23,0,0,1,0],[44,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,1,1,0],[76,0,0,1,0],[77,0,0,1,0],[78,0,0,1,0],[81,0,0,1,0],[158,0,0,1,0],[160,0,0,1,0]],"audiences":[[1,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,1,1,0],[76,0,0,1,0],[77,0,0,1,0],[78,0,0,1,0],[81,0,0,1,0]],"humans":[[1,0,0,1,0],[11,0,0,1,0],[30,0,0,1,0],[41,0,0,1,0],[42,0,0,1,1],[43,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[51,0,0,1,0],[75,0,0,1,1],[79,0,0,2,3],[80,0,0,1,0],[81,0,0,2,0],[82,0,0,1,0]],"without":[[1,0,0,1,0],[15,0,0,1,0],[16,0,0,1,0],[24,0,0,1,0],[29,0,0,1,0],[30,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[75,0,0,1,0],[100,0,0,1,0],[106,0,0,1,0],[108,0,0,1,0],[113,0,0,1,0],[132,0,0,1,0],[146,0,0,1,0],[154,0,0,1,0],[155,0,0,1,0]],"you":[[1,0,0,1,0],[2,0,0,1,0],[3,0,0,1,0],[19,0,0,1,0],[22,0,0,1,0],[27,0,0,1,0],[29,0,1,1,0],[30,0,0,1,0],[35,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[41,0,0,1,0],[44,0,0,2,0],[46,0,0,1,0],[49,0,0,1,0],[51,0,0,1,0],[54,0,0,1,0],[57,0,0,1,0],[59,0,0,1,0],[67,0,0,1,0],[72,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[79,0,0,1,0],[80,0,0,1,0],[81,0,1,0,0],[84,0,0,3,0],[87,0,0,3,0],[89,0,0,1,0],[92,0,0,1,1],[94,0,0,1,0],[101,0,0,1,0],[103,0,0,1,0],[104,0,0,1,0],[106,0,0,1,0],[126,0,0,1,0],[128,0,0,1,0],[133,0,0,1,0],[139,0,0,2,0],[142,0,0,0,1],[144,0,0,1,0],[145,0,0,1,0],[150,0,0,2,0],[153,0,0,2,0],[155,0,0,1,0],[158,0,0,2,0],[159,0,0,1,0],[161,0,0,1,0]],"maintaining":[[1,0,0,1,0]],"two":[[1,0,0,1,0],[2,0,0,1,0],[45,0,0,1,0],[59,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,1,2,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,2,0],[76,0,0,2,0],[77,0,0,1,0],[78,0,0,1,0],[80,0,0,1,0],[95,0,0,1,0],[145,0,0,1,0],[153,0,0,1,0]],"copies":[[1,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0]],"recognizes":[[2,0,0,1,0]],"these":[[2,0,0,1,0],[49,0,0,1,0],[73,0,0,1,0],[91,0,0,1,0],[104,0,0,1,0],[128,0,0,1,0],[142,0,0,0,1],[145,0,0,1,0]],"names":[[2,0,0,4,0],[22,0,0,1,0],[70,0,0,1,0],[82,0,0,1,0],[150,0,0,1,0],[157,0,0,1,0],[163,0,0,1,0]],"if":[[2,0,0,2,0],[4,0,0,0,2],[22,0,0,1,0],[24,0,0,1,0],[25,0,0,1,0],[29,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,0,1],[37,0,0,2,0],[39,0,0,1,0],[44,0,0,1,0],[46,0,0,0,1],[48,0,0,1,0],[49,0,0,1,0],[54,0,0,1,3],[55,0,0,2,1],[57,0,0,1,0],[59,0,0,1,0],[61,0,0,1,0],[77,0,0,1,0],[84,0,0,1,0],[109,0,0,1,0],[134,0,0,0,1],[136,0,0,1,0],[143,0,0,0,1],[144,0,0,1,0],[150,0,0,1,0],[153,0,0,1,0]],"just":[[2,0,0,1,0],[39,0,0,1,0],[110,0,0,1,0],[155,0,0,1,0]],"works":[[2,0,0,1,0],[29,0,0,1,0],[43,0,0,1,0],[56,0,0,1,0],[70,1,1,0,0],[71,1,1,0,0],[72,1,1,0,0],[73,1,1,1,0],[74,1,1,0,0],[75,1,1,0,0],[76,1,1,0,0],[77,1,1,0,0],[78,1,1,0,0],[82,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[111,0,0,1,0],[128,0,0,1,0],[130,0,0,0,3],[133,0,0,1,0],[142,0,0,0,2],[157,0,0,1,0]],"accordion":[[2,0,0,1,0],[17,0,1,0,2],[148,0,0,1,0]],"accordionitem":[[2,0,0,1,0],[17,0,0,0,2]],"audience":[[2,0,0,1,0],[15,0,1,0,4],[126,0,0,0,1],[148,0,0,2,0]],"card":[[2,0,0,1,0],[10,0,0,0,1]],"cards":[[2,0,0,1,0],[10,0,1,0,2],[148,0,0,1,0]],"commandtabs":[[2,0,0,1,0],[13,0,1,0,3],[148,0,0,1,0]],"details":[[2,0,0,1,0],[17,0,0,2,1],[148,0,0,1,0]],"example":[[2,0,0,1,0],[6,0,0,1,0],[20,0,1,1,2],[57,0,0,2,0],[130,0,1,0,0],[142,0,1,0,0],[149,0,0,1,0],[150,0,0,1,0]],"extractedtypetable":[[2,0,0,1,0],[19,0,1,1,0],[44,0,0,1,1],[148,0,0,1,0],[152,0,0,1,1]],"file":[[2,0,0,1,0],[16,0,0,0,2],[19,0,0,1,0],[20,0,0,1,0],[23,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[49,0,0,1,0],[66,0,0,1,0],[68,0,0,1,0],[73,0,0,2,0],[77,0,0,1,0],[91,0,0,2,0],[96,0,0,2,0],[104,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[111,0,0,1,0],[112,0,0,1,0],[122,0,0,0,1],[128,0,0,1,0],[129,0,0,2,0],[137,0,0,1,0],[142,0,0,0,2],[152,0,0,4,0]],"filetree":[[2,0,0,1,0],[16,0,1,0,2],[148,0,0,1,0],[149,0,0,1,0]],"folder":[[2,0,0,1,0],[16,0,0,0,2],[70,0,0,1,0],[88,0,0,2,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[96,0,0,2,0]],"prompt":[[2,0,0,1,0],[14,0,1,4,4],[92,0,0,1,1],[148,0,0,2,0],[149,0,0,2,0],[159,0,0,1,1]],"section":[[2,0,0,1,0],[8,0,0,1,0],[25,0,0,1,0],[29,0,0,1,0],[76,0,0,1,0],[100,0,0,1,0],[111,0,0,1,0],[112,0,0,3,0],[113,0,0,1,0],[115,0,0,1,0],[125,0,0,1,0],[144,0,0,1,0],[148,0,0,1,0],[155,0,0,1,0]],"selector":[[2,0,0,1,0]],"step":[[2,0,0,1,0],[11,0,0,1,4],[35,0,0,1,0],[44,0,0,1,0],[77,0,0,1,0],[137,0,0,2,0]],"steps":[[2,0,0,1,0],[11,0,1,0,2],[65,0,0,0,1],[81,0,0,1,0],[148,0,0,1,0]],"topicswitcher":[[2,0,0,1,0],[18,0,1,0,1],[27,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0]],"uses":[[2,0,0,1,0],[38,0,0,1,0],[65,0,0,0,2],[76,0,0,1,0],[111,0,0,1,0],[115,0,0,1,0],[144,0,0,1,0]],"different":[[2,0,0,1,0],[39,0,0,1,0],[48,0,0,1,0],[64,0,0,1,0],[72,0,0,1,0],[75,0,0,2,0],[140,0,0,1,0]],"have":[[2,0,0,1,0],[39,0,0,1,0],[46,0,0,1,0],[51,0,0,1,0],[54,0,0,1,0],[67,0,0,1,0],[94,0,0,1,0],[158,0,0,1,0]],"options":[[2,0,0,1,0],[95,0,0,0,1],[96,0,0,0,1],[101,0,0,0,1],[152,0,0,1,0],[160,0,0,1,0]],"rename":[[2,0,0,1,0]],"match":[[2,0,0,1,0],[7,0,0,1,0],[163,0,0,1,0]],"add":[[2,0,0,1,0],[13,0,0,3,1],[20,0,0,1,0],[22,0,0,1,0],[35,0,0,1,0],[38,0,0,1,0],[44,0,0,1,0],[46,0,0,1,0],[55,0,1,1,0],[62,0,0,2,0],[81,0,0,1,0],[89,0,0,3,0],[90,0,0,1,0],[93,0,0,1,0],[97,0,0,1,0],[101,0,0,1,0],[126,0,0,1,0],[137,0,0,1,0],[151,0,0,1,0],[153,0,0,1,0],[163,0,1,1,0]],"custom":[[2,0,0,1,0],[35,0,0,1,0],[101,0,0,1,0],[103,0,0,2,0],[104,0,0,1,0],[121,0,0,3,0],[126,0,1,1,0],[144,0,0,1,0],[150,0,0,2,0],[153,0,0,1,0]],"plugin":[[2,0,0,1,0],[22,0,0,2,0],[35,0,0,1,0],[44,0,0,2,0],[54,0,0,0,1],[71,0,0,0,1],[84,0,0,1,0],[85,0,0,1,0],[91,0,0,1,0],[103,0,0,1,0],[104,0,0,2,0],[105,0,0,1,0],[109,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,2,0],[151,0,0,1,0],[152,0,0,4,0],[153,0,1,2,0]],"that":[[2,0,0,1,0],[3,0,0,1,0],[7,0,0,2,0],[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[30,0,0,1,0],[32,0,0,2,0],[33,0,0,1,0],[38,0,0,1,0],[39,0,0,2,0],[43,0,0,1,0],[45,0,0,1,0],[54,0,0,2,0],[56,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[63,0,0,1,0],[64,0,0,2,0],[66,0,0,1,0],[72,0,0,2,0],[73,0,0,1,0],[75,0,0,2,0],[76,0,0,3,0],[77,0,0,1,0],[79,0,0,1,0],[80,0,0,2,0],[81,0,0,1,0],[84,0,0,3,0],[87,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[98,0,0,1,0],[100,0,0,1,0],[110,0,0,1,0],[111,0,0,1,0],[112,0,0,2,0],[113,0,0,3,0],[115,0,0,1,0],[120,0,0,1,0],[122,0,0,1,0],[126,0,0,1,0],[128,0,0,1,0],[129,0,0,3,0],[130,0,0,0,2],[131,0,0,0,1],[132,0,0,1,0],[141,0,0,2,0],[142,0,0,0,1],[144,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0],[154,0,0,1,0],[160,0,0,1,0],[163,0,0,1,0]],"maps":[[2,0,0,1,0]],"back":[[2,0,0,1,0],[49,0,0,1,0],[106,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0]],"above":[[2,0,0,1,0],[3,0,0,1,0],[6,0,0,1,0],[7,0,0,1,0],[19,0,0,1,1],[84,0,0,1,0],[93,0,0,1,0]],"tsx":[[2,0,0,0,1],[4,0,0,0,1],[6,0,0,1,0],[9,0,0,0,1],[10,0,0,0,1],[11,0,0,0,1],[12,0,0,0,1],[13,0,0,0,1],[14,0,0,0,1],[15,0,0,0,1],[16,0,0,0,1],[17,0,0,0,1],[18,0,0,0,1],[19,0,0,0,1],[20,0,0,0,3],[21,0,0,0,1]],"import":[[2,0,0,0,1],[4,0,0,1,2],[20,0,0,0,1],[35,0,0,0,5],[44,0,0,0,2],[45,0,0,0,1],[46,0,0,0,2],[54,0,0,0,2],[55,0,0,0,2],[56,0,0,0,2],[59,0,0,0,2],[100,0,0,0,2],[104,0,0,0,1],[105,0,0,0,1],[109,0,0,0,1],[117,0,0,0,1],[121,0,0,0,1],[126,0,0,0,2],[128,0,0,0,1],[131,0,0,0,3],[132,0,0,0,1],[133,0,0,0,1],[136,0,0,0,2],[141,0,0,0,1],[143,0,0,2,1],[147,0,0,0,1],[148,0,0,1,0],[152,0,0,0,1],[156,0,0,0,1],[157,0,0,0,3],[158,0,0,0,1],[159,0,0,0,1],[160,0,0,0,3],[161,0,0,0,1]],"mdxcomponents":[[2,0,0,0,2],[20,0,0,0,1]],"const":[[2,0,0,0,1],[4,0,0,0,3],[5,0,0,0,1],[35,0,0,0,2],[36,0,0,0,2],[44,0,0,0,4],[46,0,0,0,1],[54,0,0,0,2],[55,0,0,0,3],[59,0,0,0,2],[106,0,0,0,1],[121,0,0,0,1],[126,0,0,0,1],[132,0,0,0,1],[134,0,0,0,1],[135,0,0,0,2],[136,0,0,0,1],[143,0,0,0,2],[144,0,0,0,2],[146,0,0,0,1],[152,0,0,0,1],[157,0,0,0,2],[158,0,0,0,3],[159,0,0,0,1],[160,0,0,0,1],[161,0,0,0,1]],"contents":[[3,0,1,0,0],[4,0,1,0,0],[5,0,1,1,0],[6,0,1,1,0],[7,0,1,0,0],[144,0,1,1,0]],"beyond":[[3,0,0,1,0]],"named":[[3,0,0,1,0],[6,0,0,1,0],[19,0,0,1,0],[147,0,0,1,0],[152,0,0,1,0],[158,0,0,1,0]],"emits":[[3,0,0,1,0],[16,0,0,1,0],[17,0,0,2,0],[32,0,0,1,0],[81,0,0,1,0],[96,0,0,1,0],[128,0,0,2,0],[129,0,0,1,0],[152,0,0,1,0]],"second":[[3,0,0,1,0],[67,0,0,1,0]],"applies":[[3,0,0,1,0]],"every":[[3,0,0,1,0],[5,0,0,1,0],[7,0,0,1,0],[12,0,0,1,0],[17,0,0,1,0],[23,0,0,1,0],[30,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[45,0,0,1,0],[49,0,0,1,0],[60,0,0,1,0],[62,0,0,2,0],[70,0,0,2,0],[71,0,0,1,0],[73,0,0,1,0],[77,0,0,2,0],[79,0,0,1,0],[82,0,0,1,0],[87,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[98,0,0,1,0],[100,0,0,1,0],[103,0,0,1,0],[111,0,0,2,0],[112,0,0,1,0],[119,0,0,1,0],[129,0,0,1,0],[130,0,0,0,1],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,2,0],[142,0,0,0,1],[144,0,0,1,0],[156,0,0,1,0]],"page":[[3,0,0,3,0],[5,0,0,2,0],[6,0,0,1,0],[7,0,0,3,0],[15,0,0,1,0],[23,0,0,2,0],[24,0,0,1,0],[25,0,0,2,3],[26,0,0,1,0],[27,0,0,3,0],[28,0,0,1,0],[29,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[52,0,0,4,0],[53,0,0,1,0],[55,0,0,4,4],[57,0,0,1,0],[58,0,0,1,0],[62,0,0,2,0],[64,0,0,1,0],[70,0,0,1,0],[71,0,0,0,1],[73,0,0,3,0],[74,0,0,1,0],[76,0,0,2,0],[77,0,0,1,0],[80,0,0,1,0],[90,0,1,1,0],[91,0,0,1,0],[98,0,0,1,0],[100,0,0,1,0],[108,0,0,1,0],[111,0,0,4,0],[112,0,0,2,0],[113,0,0,1,0],[114,0,0,2,0],[117,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[129,0,0,2,0],[134,0,0,1,0],[136,0,0,2,0],[144,0,0,3,0],[155,0,0,2,0],[158,0,0,1,0],[163,0,0,1,0]],"heading":[[3,0,0,3,0],[4,0,0,3,0],[7,0,0,3,0],[19,0,0,1,1],[24,0,0,1,0],[76,0,0,1,0],[144,0,0,1,0],[148,0,0,1,0],[155,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0]],"write":[[3,0,0,1,0],[36,0,0,0,1],[77,0,0,2,0],[79,0,0,1,0],[81,0,0,1,0],[91,0,0,1,0],[107,0,0,1,0],[143,0,0,1,1],[145,0,0,1,0]],"entry":[[3,0,0,1,0],[10,0,0,1,0],[24,0,0,1,0],[55,0,0,1,2],[60,0,0,1,0],[61,0,0,1,0],[89,0,0,1,0],[103,0,1,1,0],[104,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[140,0,0,1,0],[152,0,0,1,0],[154,0,0,1,0],[160,0,1,0,0]],"toc":[[3,0,0,1,0],[5,0,1,1,1],[6,0,0,1,0],[7,0,0,2,0],[144,0,0,2,1]],"array":[[3,0,0,1,0],[4,0,0,0,1],[27,0,0,1,0],[105,0,0,1,0],[122,0,0,0,1],[123,0,0,3,0],[124,0,0,2,0],[125,0,0,1,0],[144,0,0,1,0]],"navigation":[[3,0,0,1,0],[5,0,0,0,1],[18,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[25,0,0,1,1],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[36,0,0,0,3],[41,0,0,1,0],[43,0,0,1,0],[45,0,0,1,0],[53,0,0,1,0],[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[71,0,0,0,1],[74,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[81,0,0,2,0],[83,0,0,1,0],[84,0,0,1,0],[85,0,0,1,0],[114,0,0,1,0],[117,0,0,1,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[129,0,0,1,0],[132,0,0,1,2],[143,0,0,1,4],[144,0,0,0,1],[145,0,0,1,0]],"manifest":[[3,0,0,1,0],[6,0,0,1,0],[45,0,0,1,0],[46,0,0,0,2],[53,0,0,1,0],[54,0,0,0,6],[55,0,0,3,0],[56,0,0,0,2],[59,0,0,1,5],[71,0,0,0,2],[74,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[132,0,0,2,3],[133,0,0,1,0],[134,0,0,0,1],[135,0,0,1,3],[136,0,0,2,2],[137,0,0,1,0],[138,0,0,1,0],[140,0,1,1,0],[143,0,0,2,0]],"id":[[3,0,0,2,0],[4,0,0,2,3],[7,0,0,1,0],[144,0,0,1,0]],"computed":[[3,0,0,1,0]],"slugifying":[[3,0,0,1,0]],"renderer":[[3,0,0,1,0],[7,0,0,1,0],[12,0,0,1,0],[144,0,0,1,0]],"must":[[3,0,0,1,0],[46,0,0,2,0],[47,0,0,2,0],[56,0,0,1,0],[60,0,0,2,0],[134,0,0,1,0],[139,0,0,1,0],[144,0,0,1,0],[150,0,0,2,0]],"slug":[[3,0,0,1,0],[4,0,1,0,0],[24,0,0,1,0],[25,0,0,3,0],[26,0,0,0,3],[36,0,0,0,2],[45,0,0,0,2],[57,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[99,0,0,0,1],[141,0,0,1,0],[143,0,0,0,2],[144,0,0,1,0]],"its":[[3,0,0,1,0],[19,0,0,1,0],[48,0,0,1,0],[52,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[87,0,0,1,0],[136,0,0,1,0],[153,0,0,1,0]],"html":[[3,0,0,1,0],[11,0,0,1,0],[14,0,0,0,2],[42,0,0,0,2],[46,0,0,4,0],[47,0,0,1,0],[49,0,0,2,0],[51,0,0,1,0],[52,0,0,3,0],[55,0,0,2,1],[56,0,0,1,0],[57,0,0,2,0],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,2,0],[75,0,0,1,1],[81,0,0,1,0],[92,0,0,0,2],[134,0,0,1,0],[139,0,0,1,0]],"attribute":[[3,0,0,1,0],[51,0,0,1,0]],"anchor":[[3,0,0,1,0],[4,0,0,1,0]],"links":[[3,0,0,1,0],[7,0,0,1,0],[10,0,0,1,0],[28,0,0,1,0],[46,0,0,2,0],[52,0,0,2,0],[54,0,0,1,0],[55,0,0,1,0],[59,0,0,1,0],[61,0,0,2,0],[62,0,0,1,0],[64,0,0,2,0],[73,0,0,2,0],[75,0,0,1,0],[77,0,0,1,0],[85,0,0,1,0],[101,0,0,1,0],[111,0,0,3,0],[112,0,0,7,0],[113,0,0,3,0],[114,0,0,1,0],[120,0,0,2,0],[128,0,0,1,0],[129,0,0,4,0],[136,0,0,1,1],[142,0,0,1,0],[158,0,0,1,0],[160,0,0,1,0]],"rendered":[[3,0,0,1,0],[19,0,0,1,1],[55,0,0,1,0],[108,0,0,1,0],[144,0,0,1,0],[152,0,0,1,0]],"sidebar":[[3,0,0,1,0],[6,0,1,1,0],[24,0,0,1,0],[27,0,0,1,0],[29,0,0,1,0],[74,0,0,1,0],[76,0,0,1,0],[125,0,0,1,0],[143,0,0,3,0]],"silently":[[3,0,0,1,0],[140,0,0,1,0]],"miss":[[3,0,0,1,0]],"slugifydocsheading":[[4,0,0,2,2],[7,0,0,1,0],[144,0,0,1,0]],"apply":[[4,0,0,1,0],[126,0,0,1,0]],"inside":[[4,0,0,1,0],[17,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[32,0,0,3,0],[33,0,0,2,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,2,0],[39,0,0,1,0],[40,0,0,1,0],[48,0,0,1,0],[73,0,0,2,0],[75,0,0,1,0],[84,0,0,1,0],[93,0,0,1,0],[128,0,0,1,0],[141,0,0,1,0],[142,0,0,0,1]],"readability":[[4,0,0,1,1],[14,0,0,0,2],[42,0,0,0,1],[43,0,0,1,0],[46,0,0,2,2],[47,0,0,1,0],[49,0,0,1,0],[53,0,0,1,1],[54,0,0,1,2],[55,0,0,0,2],[56,0,0,1,2],[57,0,0,3,0],[58,0,0,1,0],[59,0,0,0,2],[61,0,0,1,1],[62,0,0,1,0],[72,0,0,2,0],[74,0,0,2,0],[77,0,0,2,0],[79,0,0,0,1],[81,0,0,1,0],[87,0,0,1,0],[91,0,0,2,0],[92,0,0,0,3],[96,0,0,1,0],[99,0,0,0,1],[103,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0],[133,0,1,0,1],[134,0,1,1,0],[135,0,1,0,0],[136,0,1,0,2],[137,0,1,0,0],[138,0,1,0,0],[139,0,1,0,0],[140,0,1,1,0]],"subpath":[[4,0,0,1,0]],"fs":[[4,0,0,1,0],[35,0,0,0,1],[133,0,0,1,0],[143,0,0,0,1]],"free":[[4,0,0,1,0],[27,0,0,1,0],[133,0,0,1,0],[157,0,0,1,0]],"safe":[[4,0,0,3,0],[85,0,0,1,0],[130,0,0,0,1],[133,0,0,1,0],[154,0,0,1,0],[157,0,0,1,0],[163,0,0,1,0]],"surface":[[4,0,0,1,0],[28,0,0,1,0],[160,0,0,1,0]],"client":[[4,0,0,1,0],[21,0,0,1,0],[84,0,0,1,0],[152,0,0,1,0]],"performs":[[4,0,0,1,0],[120,0,0,1,0]],"unicode":[[4,0,0,1,0]],"normalization":[[4,0,0,1,0]],"diacritic":[[4,0,0,1,0]],"stripping":[[4,0,0,1,0]],"cafe":[[4,0,0,1,0]],"resume":[[4,0,0,1,0]],"produces":[[4,0,0,1,0],[25,0,0,1,0],[70,0,0,1,0],[79,0,0,1,0],[82,0,0,1,0],[83,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[128,0,0,1,0]],"stable":[[4,0,0,1,0],[19,0,0,1,0],[22,0,0,1,0],[27,0,0,1,0]],"url":[[4,0,0,1,0],[11,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[32,0,0,1,0],[43,0,0,0,1],[44,0,0,1,0],[46,0,0,1,3],[47,0,0,1,0],[52,0,0,1,0],[53,0,0,0,1],[54,0,0,1,9],[55,0,0,1,0],[56,0,0,1,4],[59,0,0,0,5],[61,0,0,4,0],[62,0,0,1,0],[75,0,0,1,0],[91,0,0,0,1],[96,0,0,3,0],[98,0,0,1,0],[103,0,0,1,0],[120,0,0,1,0],[123,0,0,1,0],[127,0,0,1,0],[134,0,0,1,3],[135,0,0,0,4],[137,0,0,1,0],[141,0,0,2,0],[144,0,0,1,0],[146,0,1,2,3]],"authors":[[4,0,0,1,0],[124,0,0,1,0]],"still":[[4,0,0,1,0],[9,0,0,1,0],[17,0,0,1,0],[24,0,0,1,0],[28,0,0,1,0],[84,0,0,1,0],[114,0,0,1,0],[120,0,0,1,0],[129,0,0,1,0],[157,0,0,1,0]],"pin":[[4,0,0,1,0]],"specific":[[4,0,0,1,0],[20,0,0,1,0],[34,0,1,0,0],[146,0,0,1,0],[154,0,0,1,0],[157,0,0,1,0]],"passing":[[4,0,0,1,0],[101,0,0,1,0]],"explicit":[[4,0,0,1,0],[19,0,0,1,0],[34,0,0,1,0],[111,0,0,1,0],[112,0,0,1,0],[113,0,0,1,0],[160,0,0,1,0]],"helper":[[4,0,0,1,0],[58,0,0,1,0],[60,0,0,1,0],[74,0,0,1,0],[130,0,0,0,1],[137,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[144,0,0,1,0],[162,0,0,1,0]],"runs":[[4,0,0,1,0],[41,0,0,1,0],[57,0,0,2,0],[58,0,0,1,0],[63,0,0,1,0],[65,0,0,0,1],[77,0,1,1,0],[85,0,0,1,0],[91,0,0,1,0],[95,0,0,1,0],[100,0,0,1,0],[101,0,0,1,0],[148,0,0,1,0]],"missing":[[4,0,0,1,0],[28,0,0,1,0],[37,0,0,2,0],[46,0,0,1,0],[48,0,0,1,0],[56,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[64,0,0,1,0],[69,0,0,1,0],[97,0,0,1,0],[119,0,0,1,0],[122,0,0,1,0],[127,0,0,1,0],[137,0,0,1,0]],"llm":[[4,0,0,0,1],[5,0,0,1,0],[18,0,0,1,0],[35,0,0,0,1],[40,0,0,1,0],[44,0,0,0,3],[46,0,0,1,1],[54,0,0,0,1],[55,0,0,0,1],[56,0,0,0,1],[59,0,0,0,1],[89,0,0,1,0],[91,0,0,1,0],[92,0,0,0,1],[100,0,0,1,1],[103,0,0,2,0],[111,0,0,1,0],[128,1,1,1,1],[129,1,1,0,0],[130,1,1,0,0],[131,1,1,0,1],[132,1,1,0,1],[133,1,1,0,1],[134,1,1,0,0],[135,1,1,0,0],[136,1,1,0,1],[137,1,1,0,0],[138,1,1,0,0],[139,1,1,0,0],[140,1,1,0,0],[141,1,1,0,1],[142,1,1,0,0],[143,1,1,2,0],[144,1,1,0,0],[145,1,1,0,0],[146,1,1,0,0],[153,0,0,1,0]],"type":[[4,0,0,0,2],[19,0,0,3,2],[27,0,0,1,0],[28,0,0,1,0],[44,0,0,0,1],[46,0,0,1,0],[49,0,0,1,0],[55,0,0,0,1],[56,0,0,1,0],[61,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[76,0,0,1,0],[92,0,0,0,1],[119,0,0,1,0],[122,0,0,0,1],[123,0,0,1,0],[124,0,0,2,0],[125,0,0,1,0],[130,0,0,0,1],[134,0,0,1,0],[136,0,0,0,1],[137,0,0,2,0],[152,0,0,2,0],[157,0,0,0,2]],"componentpropswithoutref":[[4,0,0,0,2]],"react":[[4,0,0,0,1],[6,0,0,1,0],[18,0,0,2,4],[34,0,0,0,3],[84,0,0,2,0]],"headingprops":[[4,0,0,0,3]],"h1":[[4,0,0,0,1],[5,0,0,1,0],[7,0,0,1,0],[144,0,0,1,0]],"function":[[4,0,0,0,2],[56,0,0,0,1],[59,0,0,0,1],[105,0,0,1,0],[155,0,0,1,0]],"textfromchildren":[[4,0,0,0,3]],"children":[[4,0,0,0,10],[26,0,0,2,1],[76,0,0,1,0]],"string":[[4,0,0,0,3],[19,0,0,1,1],[24,0,0,1,0],[27,0,0,3,0],[55,0,0,1,0],[76,0,0,1,0],[122,0,0,0,3],[123,0,0,7,0],[124,0,0,7,0],[125,0,0,5,0],[126,0,0,0,1],[135,0,0,1,0],[137,0,0,1,0],[141,0,0,1,0],[144,0,0,1,0]],"typeof":[[4,0,0,0,2]],"number":[[4,0,0,0,1],[44,0,0,0,1],[122,0,0,0,3]],"return":[[4,0,0,0,5],[46,0,0,1,2],[54,0,0,0,4],[56,0,1,0,2],[57,0,1,0,0],[58,0,1,0,0],[59,0,1,0,5],[60,0,1,0,0],[61,0,0,1,0],[62,0,0,2,0],[92,0,0,0,1],[133,0,0,1,0],[134,0,0,0,2],[137,0,0,2,0]],"isarray":[[4,0,0,0,1]],"map":[[4,0,0,0,1],[27,0,0,1,0],[137,0,0,1,0],[157,0,0,1,0]],"join":[[4,0,0,0,1]],"createheading":[[4,0,0,0,1]],"level":[[4,0,0,0,2],[5,0,0,1,0],[28,0,0,1,0],[49,0,0,1,0],[53,0,0,1,0],[62,0,0,1,0],[64,0,0,1,0],[73,0,0,1,0],[111,0,0,3,0],[112,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[119,0,0,1,0],[128,0,0,1,0],[129,0,0,2,0],[132,0,0,1,0],[137,0,1,0,0],[138,0,1,0,0],[144,0,0,1,0]],"props":[[4,0,0,0,2]],"headingid":[[4,0,0,0,2]],"undefined":[[4,0,0,0,1]],"data":[[5,0,1,0,0],[20,0,0,2,0],[41,0,0,1,0],[49,0,0,1,0],[74,0,0,1,0],[91,0,0,1,0],[128,0,0,1,0],[144,0,0,1,0]],"lives":[[5,0,1,0,0],[23,0,0,1,0],[48,0,0,2,0]],"resolvedocsnavigation":[[5,0,0,1,1],[35,0,0,0,1],[36,0,0,0,1],[74,0,0,1,0],[103,0,0,1,0],[128,0,0,0,1],[143,0,1,0,1],[144,0,0,1,1]],"returns":[[5,0,0,1,0],[56,0,0,1,0],[76,0,0,1,0],[92,0,0,0,1],[134,0,0,2,0],[136,0,0,1,0],[141,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0]],"docstableofcontentsitem":[[5,0,0,1,0],[6,0,0,1,0]],"default":[[5,0,0,1,0],[19,0,0,1,1],[27,0,0,2,0],[28,0,0,1,0],[45,0,0,0,1],[51,0,0,1,0],[59,0,0,0,1],[60,0,0,2,0],[72,0,0,2,0],[73,0,0,1,0],[76,0,0,1,0],[77,0,0,2,0],[91,0,0,1,0],[96,0,0,2,0],[101,0,0,2,0],[109,0,0,1,0],[114,0,1,1,0],[115,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,2,0],[123,0,1,0,0],[124,0,1,0,0],[125,0,1,0,0],[128,0,0,1,0],[129,0,0,2,0],[130,0,0,0,1],[134,0,0,1,0],[136,0,0,0,1],[139,0,0,1,0],[141,0,0,1,0],[144,0,0,2,0],[146,0,0,1,0],[147,0,0,1,0],[148,0,1,1,0],[149,0,1,1,0],[150,0,0,1,0],[151,0,0,2,0],[152,0,0,2,0],[153,0,0,1,0]],"range":[[5,0,0,1,0],[7,0,0,1,0],[144,0,0,1,0]],"h2":[[5,0,0,1,0],[144,0,0,1,0]],"h3":[[5,0,0,1,0],[7,0,0,1,0],[56,0,0,1,0],[57,0,0,2,0],[144,0,0,1,0]],"which":[[5,0,0,1,0],[76,0,0,1,0],[91,0,0,1,0],[110,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0]],"keeps":[[5,0,0,1,0],[52,0,0,1,0],[54,0,0,1,0],[87,0,0,1,0],[114,0,0,1,0],[144,0,0,1,0],[146,0,0,1,0],[156,0,0,1,0]],"out":[[5,0,0,1,0],[22,0,0,1,0],[31,0,0,0,1],[33,0,0,0,1],[34,0,0,0,1],[35,0,0,0,1],[37,0,0,0,1],[43,0,0,0,1],[48,0,0,0,1],[53,0,0,0,1],[60,0,0,1,0],[68,0,0,0,1],[72,0,0,2,0],[73,0,0,3,0],[74,0,0,4,0],[75,0,0,0,6],[79,0,0,0,8],[83,0,0,1,0],[91,0,0,0,1],[93,0,0,0,1],[96,0,0,5,0],[98,0,0,2,1],[129,0,0,7,0],[144,0,0,1,0],[148,0,0,0,2]],"stops":[[5,0,0,1,0]],"short":[[5,0,0,1,0],[10,0,0,1,0],[27,0,0,1,0],[43,0,0,0,1],[45,0,0,0,1],[84,0,1,0,0]],"deep":[[5,0,0,1,0]],"subsection":[[5,0,0,1,0]],"noise":[[5,0,0,1,0]],"standalone":[[5,0,0,1,0]],"apis":[[5,0,0,1,0],[35,0,0,1,0],[84,0,0,1,0],[104,0,0,2,0],[105,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,1,0],[109,0,0,1,0],[128,0,0,2,0],[130,0,0,0,1],[136,0,0,0,1],[137,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[157,0,0,1,0]],"resolvedocstableofcontents":[[5,0,0,1,0],[128,0,0,0,1],[144,0,0,1,1]],"extractdocstableofcontents":[[5,0,0,1,0],[128,0,0,0,1],[144,0,0,1,0]],"see":[[5,0,0,1,0],[6,0,0,1,0],[9,0,0,1,0],[24,0,0,1,0],[28,0,0,1,0],[39,0,0,1,0],[44,0,0,1,0],[45,0,0,1,0],[48,0,0,1,0],[51,0,0,1,0],[57,0,0,1,0],[64,0,0,1,0],[71,0,0,2,0],[75,0,0,1,0],[76,0,0,1,0],[82,0,0,1,0],[86,0,0,1,0],[90,0,0,1,0],[92,0,0,3,0],[93,0,0,1,0],[98,0,0,1,0],[100,0,0,1,0],[101,0,0,1,0],[109,0,0,1,0],[120,0,0,1,0],[127,0,0,1,0],[129,0,0,1,0],[137,0,0,1,0],[142,0,0,1,0],[144,0,0,1,0]],"reference":[[5,0,0,1,0],[6,0,0,1,0],[8,0,1,0,0],[9,0,1,0,0],[10,0,1,0,1],[11,0,1,0,0],[12,0,1,0,0],[13,0,1,0,0],[14,0,1,0,0],[15,0,1,0,0],[16,0,1,0,0],[17,0,1,1,1],[18,0,1,0,0],[19,0,1,0,0],[20,0,1,0,0],[21,0,1,0,0],[25,0,0,0,1],[28,0,0,1,0],[33,0,0,0,1],[40,0,0,1,0],[50,0,0,1,0],[57,0,0,1,0],[64,0,0,1,0],[78,0,0,1,0],[101,0,0,1,0],[111,0,0,1,0],[117,0,0,1,0],[130,0,0,0,2],[142,0,0,0,2]],"tables":[[5,0,0,1,0],[108,0,0,1,0],[144,0,1,0,0]],"ts":[[5,0,0,0,1],[12,0,0,1,0],[24,0,0,1,0],[25,0,0,2,1],[26,0,0,0,1],[35,0,0,1,2],[44,0,0,0,5],[45,0,0,1,1],[46,0,0,0,1],[54,0,0,0,2],[55,0,0,0,1],[56,0,0,1,1],[57,0,0,5,0],[59,0,0,0,1],[100,0,0,2,1],[104,0,0,0,1],[105,0,0,0,1],[106,0,0,0,1],[107,0,0,0,1],[109,0,0,0,1],[117,0,0,0,1],[121,0,0,0,1],[122,0,0,0,1],[126,0,0,0,1],[128,0,0,0,1],[131,0,0,0,1],[132,0,0,0,2],[133,0,0,0,1],[134,0,0,0,1],[135,0,0,0,1],[136,0,0,0,1],[138,0,0,1,0],[141,0,0,1,1],[143,0,0,0,2],[144,0,0,0,2],[145,0,0,1,0],[146,0,0,0,1],[147,0,0,0,1],[151,0,0,0,1],[152,0,0,0,2],[156,0,0,0,1],[157,0,0,0,2],[158,0,0,0,1],[159,0,0,0,1],[160,0,0,0,2],[161,0,0,0,1]],"await":[[5,0,0,0,1],[35,0,0,0,3],[36,0,0,0,2],[44,0,0,0,1],[56,0,0,0,1],[100,0,0,0,1],[105,0,0,0,1],[106,0,0,0,1],[107,0,0,0,1],[121,0,0,0,1],[126,0,0,0,1],[131,0,0,0,4],[132,0,0,0,4],[134,0,0,0,2],[141,0,0,0,1],[143,0,0,0,3],[144,0,0,0,2],[156,0,0,0,1],[161,0,0,0,1]],"srcdir":[[5,0,0,0,1],[35,0,0,0,1],[36,0,0,0,3],[44,0,0,0,2],[99,0,0,0,1],[100,0,0,0,1],[101,0,0,2,1],[105,0,0,2,1],[121,0,0,3,1],[126,0,0,0,1],[131,0,0,0,2],[141,0,0,1,1],[143,0,0,0,1],[144,0,0,0,2]],"baseurl":[[5,0,0,0,1],[100,0,0,0,1],[131,0,0,0,3],[132,0,0,0,2],[135,0,0,1,0],[143,0,0,0,1],[144,0,0,0,2],[146,0,0,1,1],[156,0,0,0,1]],"https":[[5,0,0,0,1],[43,0,0,0,1],[48,0,0,0,1],[53,0,0,0,1],[55,0,0,0,2],[91,0,0,0,1],[100,0,0,0,1],[131,0,0,0,3],[132,0,0,0,2],[136,0,0,0,3],[143,0,0,0,1],[144,0,0,0,2],[146,0,0,0,1],[156,0,0,0,1]],"dev":[[5,0,0,0,1],[12,0,0,1,0],[33,0,0,1,0],[43,0,0,0,1],[44,0,0,1,0],[49,0,0,1,0],[53,0,0,0,1],[55,0,0,0,2],[57,0,0,1,0],[61,0,0,1,0],[91,0,0,0,1],[100,0,0,0,1],[131,0,0,0,3],[132,0,0,0,2],[136,0,0,0,2],[140,0,0,1,0],[143,0,0,0,1],[144,0,0,0,2],[146,0,0,0,1],[156,0,0,0,1]],"groups":[[5,0,0,0,2],[25,0,1,1,1],[26,0,2,2,0],[35,0,0,0,1],[36,0,0,0,5],[45,0,1,0,1],[48,0,0,1,0],[68,0,0,1,0],[71,0,0,0,5],[76,0,0,1,0],[77,0,0,1,0],[91,0,0,2,0],[99,0,0,0,1],[100,0,0,3,2],[111,0,0,1,0],[114,0,0,1,0],[131,0,0,0,6],[132,0,0,0,2],[141,0,0,1,2],[143,0,0,0,2],[144,0,0,0,2],[145,0,0,3,0]],"docsconfig":[[5,0,0,0,1],[35,0,0,0,1],[36,0,0,0,3],[100,0,0,0,3],[131,0,0,0,4],[132,0,0,0,3],[141,0,0,0,2],[143,0,0,0,1],[144,0,0,0,1]],"minlevel":[[5,0,0,0,1],[7,0,0,1,0],[144,0,0,0,1]],"maxlevel":[[5,0,0,0,1],[7,0,0,1,0],[144,0,0,0,1]],"stance":[[6,0,0,1,0]],"defines":[[6,0,0,1,0]],"renders":[[6,0,0,1,0],[15,0,0,1,0],[21,0,0,1,0],[24,0,0,1,0],[75,0,0,1,0],[87,0,0,1,0],[120,0,0,1,0]],"look":[[6,0,0,1,0]],"up":[[6,0,0,1,0],[9,0,0,1,1],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0]],"current":[[6,0,0,1,0],[55,0,0,1,0],[61,0,0,1,0],[114,0,1,0,0],[115,0,0,1,0]],"pass":[[6,0,0,1,0],[27,0,0,1,0],[44,0,0,1,1],[54,0,0,1,0],[60,0,0,1,0],[91,0,0,1,0],[101,0,0,2,0],[113,0,0,1,0],[126,0,0,1,0],[139,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[152,0,0,1,0],[157,0,0,1,0],[159,0,0,1,0],[160,0,0,1,0]],"currentpage":[[6,0,0,1,0]],"whatever":[[6,0,0,1,0]],"fits":[[6,0,0,1,0]],"design":[[6,0,0,1,0],[77,0,0,1,0],[87,0,0,1,0],[145,0,1,0,0]],"system":[[6,0,0,1,0],[87,0,0,1,0],[159,0,0,2,1]],"complete":[[6,0,0,1,0],[88,0,0,1,0],[111,0,0,1,0],[137,0,0,1,0]],"scroll":[[6,0,0,1,0],[7,0,0,1,0]],"spy":[[6,0,0,1,0]],"active":[[6,0,0,1,0],[119,0,0,1,0]],"highlighting":[[6,0,0,1,0]],"hash":[[6,0,0,1,0],[157,0,0,1,0]],"sync":[[6,0,0,1,0],[56,0,0,1,0],[134,0,0,1,0],[144,0,0,1,0]],"sticky":[[6,0,0,1,0]],"positioning":[[6,0,0,1,0]],"apps":[[6,0,0,1,0],[57,0,0,1,0],[74,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0],[162,0,0,1,0]],"src":[[6,0,0,1,0],[31,0,0,0,2],[33,0,0,0,1],[34,0,0,0,1],[35,0,0,0,1],[37,0,0,0,1],[42,0,0,0,3],[43,0,0,0,1],[48,0,0,0,4],[53,0,0,0,1],[68,0,0,0,1],[71,0,0,0,2],[79,0,0,0,3],[91,0,0,0,1],[93,0,0,0,1],[96,0,0,2,0],[98,0,0,0,1],[101,0,0,2,0],[143,0,0,1,2],[148,0,0,0,2],[152,0,0,0,1]],"copy":[[6,0,0,1,0],[14,0,0,2,1],[21,0,0,1,0],[92,0,0,1,0]],"fork":[[6,0,0,1,0]],"build":[[6,0,0,1,0],[24,0,0,0,2],[25,0,0,1,3],[26,0,0,1,2],[28,0,0,1,0],[29,0,0,1,0],[35,0,0,3,1],[41,0,0,3,0],[42,0,0,1,0],[43,0,0,1,0],[44,0,1,1,4],[45,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,2,1],[49,0,0,2,0],[50,0,0,1,0],[53,0,0,2,0],[57,0,0,2,0],[58,0,0,1,0],[72,0,0,1,0],[74,0,0,1,0],[80,0,0,1,0],[91,0,0,1,0],[103,0,0,1,0],[111,0,0,1,0],[117,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,3,0],[144,0,0,1,0],[154,0,0,1,0],[156,0,1,0,0],[160,0,0,1,0]],"own":[[6,0,0,1,0],[38,0,0,1,0],[79,0,0,1,0],[84,0,0,1,0],[86,0,1,0,0],[132,0,0,1,0],[136,0,0,1,0]],"shape":[[6,0,0,1,0],[32,0,0,1,0],[48,0,0,1,0],[51,0,0,1,0],[57,0,0,1,0],[70,0,0,1,0],[79,0,0,1,0],[99,0,1,1,0],[113,0,0,1,0],[122,0,1,0,0],[136,0,0,1,0],[141,0,0,2,0]],"troubleshooting":[[7,0,1,0,0],[17,0,0,1,0]],"don":[[7,0,0,2,0],[9,0,0,1,0],[27,0,0,1,0],[33,0,0,1,0],[39,0,0,2,0],[64,0,0,1,0],[75,0,0,1,0],[79,0,0,1,0],[123,0,0,1,0],[139,0,0,1,0],[150,0,0,1,0],[153,0,0,1,0],[160,0,0,1,0]],"anywhere":[[7,0,0,1,0],[157,0,0,1,0]],"emitting":[[7,0,0,1,0]],"attributes":[[7,0,0,1,0],[144,0,0,1,0]],"extracted":[[7,0,0,1,0]],"slugs":[[7,0,0,1,0],[25,0,0,1,0]],"wire":[[7,0,0,1,0],[12,0,0,1,0],[14,0,0,0,2],[24,0,0,0,1],[41,0,0,1,0],[42,0,0,1,0],[43,0,0,1,0],[44,0,1,1,0],[45,0,0,1,0],[46,0,0,2,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,1,0],[50,0,0,1,0],[63,0,0,1,0],[72,0,0,1,0],[92,0,0,1,1],[94,0,0,1,0]],"shown":[[7,0,0,1,0],[121,0,0,1,0]],"empty":[[7,0,0,1,0],[24,0,0,1,0],[49,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[136,0,0,1,0]],"outside":[[7,0,0,1,0],[20,0,0,1,0],[121,0,0,1,0]],"defaults":[[7,0,0,1,0],[101,0,0,3,0],[109,0,0,1,0],[110,0,0,1,0],[111,0,0,1,0],[112,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[121,0,0,1,0],[126,0,0,1,0],[134,0,0,1,0]],"exclude":[[7,0,0,1,0],[34,0,0,2,1],[37,0,0,1,0],[96,0,0,2,0],[97,0,0,2,0],[99,0,0,0,1]],"title":[[7,0,0,1,0],[9,0,0,0,1],[10,0,0,0,1],[11,0,0,0,2],[14,0,0,0,1],[17,0,0,0,1],[19,0,0,1,1],[20,0,0,0,2],[24,0,0,1,1],[26,0,0,0,3],[27,0,0,1,0],[45,0,0,0,2],[55,0,0,1,0],[71,0,0,0,1],[90,0,0,1,1],[99,0,0,0,1],[100,0,0,1,0],[108,0,0,1,0],[123,0,0,2,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,0,1],[136,0,0,0,2]],"anything":[[7,0,0,1,0],[41,0,0,1,0],[48,0,0,1,0],[79,0,0,1,0]],"deeper":[[7,0,0,1,0],[26,0,0,1,0]],"than":[[7,0,0,1,0],[54,0,0,1,0]],"below":[[8,0,0,1,0],[121,0,0,1,0],[142,0,0,0,1]],"shows":[[8,0,0,1,0],[16,0,0,1,0]],"authored":[[8,0,0,1,0],[21,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[92,0,0,1,0]],"live":[[8,0,0,1,0],[12,0,0,1,0],[43,0,0,1,0],[57,0,0,1,0],[59,0,1,0,0],[116,0,0,1,0],[135,0,0,1,0],[137,0,0,1,0]],"wraps":[[9,0,0,1,0]],"supporting":[[9,0,0,2,0],[17,0,0,1,1],[30,0,0,1,0],[75,0,0,1,0]],"context":[[9,0,0,2,0],[68,0,0,1,0],[84,0,0,1,0],[85,0,0,1,0],[96,0,0,1,0],[110,0,0,1,0],[111,0,0,2,0],[113,0,0,3,0],[114,0,0,1,0],[129,0,0,1,0],[136,0,0,0,1],[158,0,0,1,0],[159,0,0,2,1]],"warnings":[[9,0,0,2,0],[65,0,0,2,1],[67,0,0,0,1],[101,0,0,3,0],[122,0,0,0,1],[126,0,0,1,0]],"tips":[[9,0,0,2,0]],"variants":[[9,0,0,2,0],[111,0,0,1,0],[115,0,0,1,0],[139,0,0,1,0]],"change":[[9,0,0,2,0]],"identically":[[9,0,0,2,0],[87,0,0,1,0]],"info":[[9,0,0,1,1],[19,0,0,1,1]],"heads":[[9,0,0,1,1]],"callouts":[[9,0,0,1,0]],"wrap":[[9,0,0,1,0]],"flattens":[[9,0,0,1,0],[10,0,0,1,0],[11,0,0,1,0],[12,0,0,1,0],[13,0,0,1,0],[76,0,0,2,0],[104,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0]],"them":[[9,0,0,1,0],[17,0,0,1,1],[27,0,0,1,0],[34,0,0,1,0],[38,0,0,1,0],[54,0,0,2,0],[57,0,0,1,0],[69,0,0,1,0],[93,0,0,1,0],[99,0,0,1,0],[109,0,0,1,0],[123,0,0,1,0],[142,0,0,0,1],[156,0,0,1,0]],"blockquotes":[[9,0,0,1,0]],"warning":[[9,0,0,2,0],[65,0,0,1,0],[101,0,0,1,0]],"success":[[9,0,0,1,0],[20,0,0,0,1],[97,0,0,1,0]],"error":[[9,0,0,1,0],[28,0,0,2,0],[36,0,0,0,1],[48,0,0,0,1],[64,0,0,1,0],[65,0,0,1,1],[66,0,0,0,1],[68,0,0,0,1],[69,0,0,1,0],[97,0,0,3,0],[99,0,0,1,0],[101,0,0,2,0],[119,0,0,6,0],[120,0,0,3,0],[121,0,0,1,1],[122,0,0,0,2],[126,0,0,1,0],[140,0,0,1,0],[143,0,0,0,1],[163,0,0,1,0]],"tip":[[9,0,0,1,0],[57,0,0,1,0]],"variant":[[9,0,0,0,1],[12,0,0,1,0],[19,0,0,1,1],[20,0,0,0,1],[111,0,0,3,0],[113,0,0,2,0]],"body":[[9,0,0,0,1],[14,0,0,1,0],[19,0,0,1,1],[24,0,0,1,0],[46,0,0,0,1],[56,0,0,1,0],[61,0,0,1,0],[71,0,0,0,1],[73,0,0,1,0],[74,0,0,1,0],[76,0,0,1,0],[134,0,0,1,0],[137,0,0,1,0],[149,0,0,1,0],[155,0,0,1,0]],"goes":[[9,0,0,0,1],[56,0,0,1,0],[57,0,0,1,0]],"here":[[9,0,0,0,1],[80,0,0,1,0],[82,0,0,1,0],[94,0,0,1,0]],"grid":[[10,0,0,1,0]],"linked":[[10,0,0,1,0]],"points":[[10,0,0,1,0],[28,0,0,1,0],[32,0,0,1,0],[89,0,0,1,0],[103,0,1,1,0],[120,0,0,1,0],[129,0,0,1,0],[130,0,0,0,1],[135,0,0,0,1],[154,0,0,1,0],[160,0,1,0,0]],"bullet":[[10,0,0,1,0],[45,0,0,0,2]],"list":[[10,0,0,1,0],[11,0,0,2,1],[34,0,0,1,0],[37,0,0,1,0],[64,0,0,1,0],[101,0,0,1,0],[142,0,0,0,1],[148,0,0,3,0],[149,0,0,1,0]],"convert":[[10,0,0,1,2],[24,0,0,1,0],[35,0,0,0,1],[41,0,0,1,0],[44,0,0,2,5],[76,0,0,1,0],[77,0,0,1,0],[89,0,0,1,0],[91,0,0,1,0],[96,0,0,1,0],[103,0,0,1,0],[104,1,1,2,1],[105,1,1,2,0],[106,1,1,2,0],[107,1,1,2,0],[108,1,1,1,0],[109,1,1,1,0],[131,0,0,0,1]],"description":[[10,0,0,0,1],[14,0,0,0,1],[19,0,0,1,2],[20,0,0,0,1],[24,0,0,1,1],[27,0,0,1,0],[55,0,0,1,0],[71,0,0,0,1],[72,0,0,1,0],[73,0,0,1,0],[76,0,0,1,0],[90,0,0,0,1],[96,0,0,2,0],[101,0,0,1,0],[105,0,0,1,0],[108,0,0,1,0],[121,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[136,0,0,0,2],[141,0,0,1,0]],"turn":[[10,0,0,0,1],[133,0,0,1,0]],"friendly":[[10,0,0,0,1],[75,0,0,1,0]],"href":[[10,0,0,0,1],[18,0,0,0,2],[55,0,0,0,2],[136,0,0,0,2]],"numbered":[[11,0,0,1,0]],"walkthroughs":[[11,0,0,1,0]],"ordered":[[11,0,0,1,0],[148,0,0,1,0]],"titles":[[11,0,0,1,0],[53,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[76,0,0,1,0],[100,0,0,0,1],[144,0,0,1,0],[155,0,0,1,0]],"author":[[11,0,0,1,1],[27,0,0,1,0],[45,0,0,1,0],[81,0,0,1,0],[90,0,1,0,0],[123,0,0,1,0]],"authoring":[[11,0,0,1,0],[25,0,0,0,2],[111,0,0,1,0]],"affordances":[[11,0,0,1,0]],"run":[[11,0,0,1,1],[13,0,0,2,1],[30,0,0,1,0],[35,0,0,3,0],[37,0,0,1,1],[41,0,0,1,0],[43,0,1,0,0],[44,0,0,0,7],[46,0,0,1,0],[47,0,0,1,0],[48,0,0,1,1],[53,0,0,1,0],[61,0,0,2,0],[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,2],[66,0,0,1,0],[67,0,0,1,0],[68,0,1,2,0],[69,0,0,1,0],[77,0,0,1,0],[79,0,0,0,6],[81,0,0,1,0],[87,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[95,0,0,1,0],[100,0,0,1,0],[110,0,0,1,0],[116,0,1,0,2],[117,0,0,1,0],[127,0,0,2,0],[130,0,0,0,1],[131,0,0,1,0],[136,0,0,0,2],[142,0,0,0,1],[145,0,0,1,0],[150,0,0,2,0],[159,0,0,0,1]],"generate":[[11,0,0,1,1],[30,0,0,1,0],[31,0,0,0,1],[33,0,1,0,1],[34,0,0,0,1],[35,0,0,1,2],[37,0,0,0,1],[41,0,0,1,0],[42,0,0,0,1],[43,0,0,1,1],[44,0,0,0,2],[48,0,0,1,1],[53,0,1,0,1],[62,0,0,1,0],[63,0,0,1,0],[68,0,1,2,1],[72,0,0,3,0],[77,0,0,2,0],[79,0,0,0,2],[81,0,0,1,0],[91,0,1,1,1],[93,0,0,0,1],[95,0,0,2,0],[96,0,1,1,1],[97,0,1,1,0],[98,0,1,1,1],[99,0,1,1,0],[100,0,1,1,0],[101,0,0,1,0],[102,0,0,1,1],[103,0,0,1,0],[104,0,0,1,0],[127,0,0,1,0],[128,0,0,3,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0],[156,0,0,1,0]],"writes":[[11,0,0,1,1],[33,0,0,1,0],[43,0,0,1,0],[48,0,0,1,0],[53,0,0,1,0],[72,0,0,2,0],[81,0,0,1,0],[91,0,0,4,0],[93,0,0,1,0],[96,0,0,1,0],[98,0,0,1,0],[132,0,0,1,0],[141,0,0,1,0],[156,0,0,1,0],[161,0,0,1,0]],"flattened":[[11,0,0,1,1],[17,0,0,1,0],[49,0,0,1,0],[71,0,0,2,0],[73,0,0,1,0],[91,0,0,2,0],[92,0,0,1,0],[112,0,0,1,0],[129,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0]],"public":[[11,0,0,1,0],[12,0,0,1,0],[14,0,0,0,2],[16,0,0,0,2],[39,0,0,1,0],[42,0,0,0,1],[43,0,0,0,1],[44,0,0,0,1],[46,0,0,0,2],[48,0,0,0,1],[49,0,0,8,0],[53,0,0,2,2],[54,0,0,1,1],[55,0,0,0,1],[56,0,0,1,2],[59,0,0,0,1],[60,0,0,1,0],[68,0,0,0,1],[72,0,0,2,0],[75,0,0,0,1],[77,0,0,1,0],[79,0,0,0,1],[87,0,0,1,0],[91,0,0,9,1],[92,0,0,2,4],[96,0,0,1,0],[99,0,0,0,10],[100,0,0,0,1],[105,0,0,0,1],[107,0,0,0,1],[113,0,0,1,0],[114,0,0,1,1],[115,0,0,1,0],[122,0,0,1,0],[131,0,0,0,4],[132,0,0,0,4],[134,0,0,1,1],[136,0,0,0,1],[139,0,0,1,0],[156,0,0,0,1],[157,0,0,0,2]],"serve":[[11,0,0,1,0],[12,0,0,1,0],[46,0,0,1,0],[54,0,1,1,0],[57,0,0,1,0],[59,0,1,0,0],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[81,0,0,1,0]],"both":[[11,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[39,0,0,1,0],[47,0,0,1,0],[54,0,0,1,0],[57,0,0,1,0],[61,0,0,1,0],[68,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[91,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[110,0,0,1,0],[113,0,0,1,0],[136,0,0,1,0]],"formats":[[11,0,0,1,0],[76,0,0,1,0],[111,0,0,1,0]],"md":[[11,0,0,1,0],[12,0,0,2,0],[14,0,0,2,0],[16,0,0,0,2],[22,0,0,1,0],[25,0,0,1,1],[29,0,0,1,0],[30,0,0,4,0],[31,0,0,2,4],[32,0,1,7,0],[33,0,0,6,4],[34,0,0,2,0],[35,0,0,3,3],[36,0,0,2,0],[37,0,0,6,0],[38,0,0,4,2],[39,0,0,2,0],[40,0,0,2,0],[42,0,0,0,1],[46,0,0,2,0],[49,0,0,3,0],[52,0,0,2,0],[53,0,0,0,3],[54,0,0,0,2],[55,0,0,0,1],[56,0,0,2,0],[57,0,0,2,0],[58,0,0,1,0],[59,0,0,0,2],[61,0,0,1,2],[62,0,0,3,0],[71,0,0,0,8],[72,0,0,4,0],[73,0,0,6,0],[74,0,0,2,0],[75,0,0,5,1],[76,0,0,2,0],[77,0,0,3,0],[79,0,0,2,4],[80,0,0,1,0],[81,0,0,4,0],[82,0,0,1,0],[84,0,0,1,0],[87,0,0,1,0],[91,0,0,2,0],[92,0,0,1,4],[93,0,0,2,0],[96,0,0,5,0],[98,0,0,2,0],[99,0,0,1,1],[105,0,0,1,0],[107,0,0,0,1],[108,0,0,1,0],[110,0,0,1,0],[111,0,0,6,0],[112,0,0,1,0],[113,0,0,2,0],[114,0,0,2,1],[115,0,0,1,0],[116,0,0,2,0],[121,0,0,1,0],[128,0,0,4,0],[129,0,0,3,0],[130,0,0,1,5],[131,0,0,1,0],[132,0,0,2,1],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,1],[137,0,0,4,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,7,0],[142,0,0,2,4],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,2,0],[146,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0]],"negotiated":[[11,0,0,1,0]],"accept":[[11,0,0,1,0],[12,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[49,0,0,0,1],[56,0,0,3,0],[60,0,0,1,0],[61,0,0,0,1],[62,0,0,1,0],[75,0,0,1,1],[76,0,0,1,0],[79,0,0,0,1],[84,0,0,1,0],[92,0,0,0,2],[134,0,0,1,0],[137,0,0,2,0],[138,0,0,1,0],[139,0,0,2,0]],"header":[[11,0,0,1,0],[12,0,0,1,0],[15,0,0,0,1],[60,0,0,2,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0]],"group":[[12,0,0,1,0],[23,0,0,1,0],[24,0,0,4,1],[25,0,0,7,4],[26,0,0,2,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,2,0],[36,0,0,0,1],[45,0,0,1,0],[49,0,0,1,0],[53,0,0,1,0],[71,0,0,0,3],[74,0,0,1,0],[76,0,0,3,0],[77,0,0,2,0],[81,0,0,1,0],[90,0,0,1,1],[91,0,0,2,0],[97,0,0,1,0],[98,0,0,1,0],[100,0,1,1,0],[111,0,0,4,0],[112,0,0,10,0],[113,0,0,1,0],[114,0,0,1,0],[123,0,0,1,0],[129,0,0,3,0],[132,0,0,1,0],[141,0,0,2,0],[143,0,0,2,1],[144,0,0,1,0],[145,0,1,1,0]],"followed":[[12,0,0,1,0],[113,0,0,1,0]],"need":[[12,0,0,1,0],[35,0,0,1,0],[38,0,0,1,0],[54,0,0,1,0],[70,0,0,1,0],[79,0,0,1,0],[84,0,0,1,0],[89,0,0,1,0],[101,0,0,1,0],[103,0,0,1,0],[104,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0],[142,0,0,0,1],[144,0,0,1,0],[150,0,0,1,0],[158,0,0,1,0]],"jsx":[[12,0,0,1,0],[16,0,0,1,0],[71,0,0,1,0],[148,0,0,1,0],[152,0,0,1,0]],"aware":[[12,0,0,1,0],[13,0,0,1,0],[76,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[155,0,0,1,0]],"read":[[12,0,0,1,0],[15,0,0,0,1],[16,0,0,1,0],[18,0,0,1,0],[22,0,0,1,0],[30,0,0,1,0],[31,0,0,0,1],[32,0,0,1,0],[38,0,0,0,1],[39,0,0,1,0],[45,0,0,1,0],[48,0,0,1,0],[51,0,0,1,0],[56,0,0,0,1],[72,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[79,0,0,0,1],[82,0,0,2,0],[110,0,0,1,0],[111,0,0,1,0],[131,0,0,1,0],[142,0,0,0,1],[145,0,0,1,0],[150,0,0,1,0],[153,0,0,1,0],[155,0,0,1,0],[161,0,0,1,0],[162,0,0,1,0]],"tanstack":[[12,0,0,1,2],[41,0,0,1,0],[56,0,0,1,0],[57,0,0,2,0],[72,0,0,1,0],[79,0,0,1,0],[84,0,0,1,0],[136,0,0,1,1],[160,0,0,1,2],[161,0,0,1,0]],"start":[[12,0,0,1,2],[41,0,0,1,0],[49,0,0,1,0],[52,0,0,1,0],[56,0,0,1,0],[57,0,0,2,0],[61,0,0,1,0],[72,0,0,1,0],[79,0,0,1,0],[84,0,0,1,0],[111,0,0,1,0],[163,0,0,2,0]],"vite":[[12,0,0,2,2],[44,0,0,1,1],[54,0,0,0,1],[72,0,0,1,0],[76,0,0,1,0]],"middleware":[[12,0,0,4,0],[54,0,0,0,2],[56,0,0,2,0],[57,0,0,10,0],[58,0,0,2,0],[76,0,0,2,0]],"preview":[[12,0,0,1,0],[20,0,0,1,1],[54,0,0,1,0],[57,0,0,1,0],[61,0,0,1,0],[135,0,0,1,0]],"nitro":[[12,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0]],"prod":[[12,0,0,1,0],[57,0,0,1,0],[135,0,0,1,0]],"negotiate":[[12,0,0,1,0]],"next":[[12,0,0,1,2],[38,0,0,2,0],[40,0,1,0,0],[41,0,0,1,0],[44,0,0,1,0],[48,0,0,1,0],[50,0,1,0,0],[54,0,0,0,1],[57,0,0,1,0],[72,0,0,1,0],[76,0,0,1,0],[78,0,1,0,0],[79,0,0,1,0],[82,0,1,0,0],[84,0,0,1,0],[87,0,0,1,0],[94,0,1,0,0],[136,0,0,1,0]],"js":[[12,0,0,1,2],[38,0,0,1,0],[41,0,0,1,0],[54,0,0,0,1],[57,0,0,1,0],[72,0,0,1,0],[76,0,0,1,0],[79,0,0,1,0],[84,0,0,1,0],[136,0,0,1,0]],"negotiation":[[12,0,0,1,0],[56,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[81,0,0,1,0],[84,0,0,1,0],[134,0,0,1,0]],"route":[[12,0,0,1,0],[14,0,0,0,2],[28,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[56,0,0,2,0],[57,0,0,3,0],[76,0,0,2,0],[84,0,0,1,0],[92,0,0,0,1],[120,0,0,1,0],[134,0,0,1,0]],"handler":[[12,0,0,1,0],[57,0,0,3,0]],"configureserver":[[12,0,0,1,0]],"enough":[[12,0,0,1,0],[73,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[129,0,0,1,0]],"static":[[12,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[54,0,0,2,0],[56,0,0,0,1],[57,0,0,4,0],[58,0,0,2,0],[59,0,0,2,0],[79,0,0,1,0],[84,0,0,1,0],[85,0,0,1,0],[143,0,0,1,0],[154,0,0,2,0],[155,0,0,1,0],[156,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0],[160,0,0,1,0],[161,0,0,1,0],[162,0,0,1,0],[163,0,0,2,0]],"deployments":[[12,0,0,1,0]],"files":[[12,0,0,1,0],[22,0,0,1,0],[30,0,0,2,0],[31,0,0,1,0],[32,0,0,2,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,2,1],[36,0,0,1,0],[37,0,0,3,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,2,0],[42,0,0,0,1],[43,0,0,1,0],[44,0,0,0,1],[46,0,0,4,0],[47,0,0,2,0],[51,0,0,2,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,1,2,0],[57,0,0,1,0],[59,0,0,2,0],[61,0,0,1,0],[67,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,3,0],[77,0,0,2,0],[81,0,0,2,0],[87,0,0,1,0],[91,0,0,2,0],[99,0,0,2,1],[100,0,0,1,0],[105,0,0,1,0],[110,0,0,2,0],[111,0,0,3,0],[112,0,0,1,0],[114,0,0,1,0],[121,0,0,1,0],[128,1,1,1,0],[129,1,1,1,0],[130,1,1,0,0],[131,1,1,0,0],[132,1,1,1,0],[133,1,1,0,0],[134,1,1,0,0],[135,1,1,0,0],[136,1,1,0,0],[137,1,1,0,0],[138,1,1,0,0],[139,1,1,0,0],[140,1,1,0,0],[141,1,1,1,0],[142,1,1,1,0],[143,1,1,2,0],[144,1,1,0,0],[145,1,1,0,0],[146,1,1,0,0]],"items":[[12,0,0,0,1],[18,0,0,0,1]],"value":[[12,0,0,0,3],[18,0,0,0,2],[29,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0]],"package":[[13,0,0,4,0],[26,0,0,1,2],[30,1,1,2,0],[31,1,1,1,0],[32,1,1,2,0],[33,1,2,3,4],[34,1,2,3,0],[35,1,1,1,4],[36,1,1,1,2],[37,1,1,2,2],[38,1,1,3,3],[39,1,1,2,0],[40,1,1,1,0],[48,0,0,3,4],[72,0,0,1,0],[73,0,0,2,0],[75,0,0,3,0],[77,0,0,1,0],[80,0,0,1,0],[81,0,0,1,0],[84,0,0,1,0],[89,0,0,1,0],[93,0,0,4,1],[94,0,0,1,0],[96,0,0,3,0],[98,0,0,1,1],[111,0,0,2,0],[141,0,0,1,1],[142,0,0,1,1],[146,0,0,2,0]],"manager":[[13,0,0,5,0],[89,0,0,1,0]],"install":[[13,0,0,3,2],[30,0,0,1,0],[31,0,0,0,4],[33,0,0,1,0],[65,0,0,0,1],[88,0,0,1,0],[89,0,1,2,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[130,0,0,0,1],[136,0,0,0,2],[142,0,0,0,1],[145,0,0,1,0],[157,0,0,0,1]],"commands":[[13,0,0,3,1],[95,0,0,1,0],[161,0,0,2,0]],"row":[[13,0,0,1,0],[19,0,0,1,0],[152,0,0,1,0]],"mode":[[13,0,0,3,2],[32,0,0,2,0],[53,0,0,1,0],[65,0,0,1,0],[71,0,0,0,3],[72,0,0,2,0],[73,0,0,7,0],[74,0,0,2,0],[75,0,0,0,2],[77,0,0,2,0],[84,0,0,1,0],[96,0,0,4,0],[98,0,1,0,0],[99,0,0,4,1],[125,0,0,1,0],[129,0,0,1,0]],"command":[[13,0,0,4,2],[43,0,0,1,0],[77,0,0,1,0],[85,0,0,1,0],[89,0,0,1,0],[95,0,0,1,1],[103,0,0,1,0]],"name":[[13,0,0,2,0],[16,0,0,0,3],[27,0,0,1,0],[31,0,0,0,4],[33,0,0,0,1],[34,0,0,0,1],[43,0,0,0,1],[45,0,0,0,1],[53,0,0,0,1],[65,0,0,0,1],[79,0,0,0,1],[96,0,0,4,0],[99,0,0,0,1],[131,0,0,0,2],[136,0,0,0,1],[152,0,0,1,1]],"cli":[[13,0,0,1,0],[27,0,0,1,0],[30,0,0,1,0],[31,0,0,0,3],[33,0,0,0,1],[39,0,0,1,0],[40,0,0,1,0],[42,0,0,0,4],[44,0,0,1,0],[67,0,0,1,0],[78,0,0,1,0],[85,0,0,1,0],[89,0,0,1,0],[91,0,0,1,0],[95,1,1,0,0],[96,1,1,0,0],[97,1,1,1,0],[98,1,1,0,0],[99,1,1,0,0],[100,1,1,1,0],[101,1,1,1,0],[102,1,1,0,0],[103,1,1,2,0],[104,0,0,1,0],[111,0,0,1,0],[117,0,0,3,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[128,0,0,1,0],[130,0,0,0,3],[142,0,0,0,2]],"create":[[13,0,0,1,0],[90,0,0,1,0]],"starter":[[13,0,0,1,0],[157,0,0,0,2]],"prop":[[13,0,0,1,0],[19,0,0,1,0]],"exact":[[13,0,0,1,0],[71,0,0,1,0],[157,0,0,2,0],[163,0,0,2,0]],"overrides":[[13,0,0,1,0],[101,0,0,2,0],[134,0,0,1,0]],"npm":[[13,0,0,3,2],[30,0,0,2,0],[31,0,0,1,2],[32,0,0,2,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,2,1],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[48,0,0,1,1],[72,0,0,1,0],[73,0,0,2,0],[84,0,0,1,0],[87,0,0,1,0],[89,0,0,2,0],[93,0,0,1,0],[98,0,0,1,0],[128,0,0,2,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,2,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0]],"pnpm":[[13,0,0,4,3],[89,0,0,2,0]],"yarn":[[13,0,0,4,0],[89,0,0,2,0]],"bun":[[13,0,0,3,0],[35,0,0,1,0],[44,0,0,0,7],[56,0,0,1,1],[65,0,0,0,2],[89,0,0,2,0],[116,0,0,0,2],[133,0,0,1,0]],"npx":[[13,0,0,1,0],[33,0,0,0,1],[34,0,0,0,1],[35,0,0,0,1],[37,0,0,0,1],[43,0,0,0,1],[48,0,0,0,2],[53,0,0,0,1],[61,0,0,0,1],[65,0,0,0,1],[66,0,0,0,1],[67,0,0,0,1],[68,0,0,0,2],[91,0,0,0,1],[93,0,0,0,1]],"lint":[[13,0,0,4,1],[23,0,0,1,0],[27,0,0,1,0],[28,0,1,2,0],[29,0,0,1,0],[40,0,0,1,0],[45,0,0,1,0],[48,0,0,1,1],[50,0,0,1,0],[63,0,0,2,0],[64,0,0,2,0],[65,0,0,1,3],[66,0,0,1,2],[67,0,0,2,1],[68,0,0,4,1],[69,0,0,1,0],[85,0,0,1,0],[89,0,0,1,0],[95,0,0,2,0],[96,0,0,1,0],[97,0,0,1,0],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,1,3,1],[102,0,0,1,1],[103,0,0,2,0],[117,1,1,1,1],[118,1,1,0,0],[119,1,1,0,0],[120,1,1,0,0],[121,1,1,0,1],[122,1,1,0,0],[123,1,1,0,0],[124,1,1,0,0],[125,1,1,0,0],[126,1,1,0,1],[127,1,1,3,0],[159,0,0,0,1]],"dlx":[[13,0,0,2,0]],"bunx":[[13,0,0,1,0]],"defaultmanager":[[13,0,0,0,1]],"displays":[[14,0,0,1,0]],"ready":[[14,0,0,1,0],[157,0,0,1,0]],"action":[[14,0,0,1,0]],"preserves":[[14,0,0,1,0],[21,0,0,1,0]],"copied":[[14,0,0,1,0],[52,0,0,1,0]],"instructions":[[14,0,0,1,0],[16,0,0,1,0],[161,0,0,0,1]],"also":[[14,0,0,1,0],[27,0,0,1,0],[32,0,0,1,0],[48,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[87,0,0,1,0],[91,0,0,1,0],[103,0,0,1,0],[134,0,0,1,0]],"survive":[[14,0,0,1,0],[108,0,0,1,0]],"bundled":[[14,0,0,1,0],[30,0,0,1,0],[38,0,0,1,1],[87,0,0,1,0],[128,0,0,2,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,2,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0]],"output":[[14,0,0,1,0],[15,0,0,1,0],[20,0,0,0,1],[22,0,0,1,0],[30,0,0,1,0],[51,0,0,1,0],[54,0,0,1,0],[57,0,0,1,0],[66,0,0,1,0],[70,0,0,1,0],[71,0,0,1,0],[72,0,1,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,2,0],[76,0,0,1,0],[77,0,0,4,0],[78,0,0,1,0],[82,0,0,1,0],[88,0,0,1,0],[92,0,1,0,0],[93,0,0,1,0],[95,0,0,1,0],[96,0,0,2,0],[97,0,0,1,0],[98,0,0,1,0],[99,0,1,1,0],[100,0,0,1,0],[101,0,0,1,0],[102,0,0,1,0],[103,0,0,2,0],[104,0,0,1,0],[105,0,0,1,0],[106,0,0,1,0],[107,0,0,1,0],[108,0,0,2,0],[110,0,0,1,0],[111,0,0,1,0],[112,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0],[128,0,0,1,0],[142,0,1,0,0],[152,0,0,1,0],[153,0,0,2,0]],"coding":[[14,0,0,1,1],[30,0,0,1,0],[32,0,0,1,0],[39,0,0,1,0],[73,0,0,1,0],[75,0,0,1,1],[79,0,0,2,1],[80,0,0,1,0],[81,0,0,2,0],[82,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[111,0,0,1,0],[142,0,0,0,1]],"after":[[14,0,0,1,1],[33,0,0,1,0],[34,0,0,1,0],[46,0,0,1,0],[47,0,0,1,0],[49,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[69,0,0,1,0],[92,0,0,1,1],[96,0,0,1,0],[97,0,0,1,0],[108,0,0,1,0],[127,0,0,1,0],[150,0,0,1,0],[156,0,0,1,0]],"generating":[[14,0,0,1,1],[92,0,0,1,0]],"artifacts":[[14,0,0,1,1],[33,0,0,1,0],[41,0,0,1,0],[53,0,1,0,0],[54,0,0,2,0],[73,0,1,0,0],[74,0,1,0,0],[83,0,0,1,0],[84,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,2,0],[93,0,0,1,0],[94,0,0,1,0],[96,0,0,4,0],[110,0,0,1,0],[113,0,0,1,0],[115,0,0,1,0],[134,0,0,1,0]],"inspect":[[14,0,0,0,2],[20,0,0,0,1],[46,0,0,1,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,1,1,1],[93,0,0,1,0],[94,0,0,1,0]],"json":[[14,0,0,0,2],[28,0,0,1,0],[35,0,0,0,1],[37,0,0,1,0],[42,0,0,0,3],[44,0,0,0,1],[46,0,0,4,1],[47,0,0,2,0],[48,0,0,1,1],[49,0,0,3,0],[51,0,0,1,0],[52,0,0,2,0],[53,0,0,2,1],[54,0,0,2,1],[55,0,1,3,1],[56,0,0,1,1],[57,0,0,1,0],[58,0,0,2,0],[59,0,0,1,1],[60,0,0,1,0],[61,0,0,2,0],[62,0,0,3,0],[64,0,0,1,0],[66,0,0,2,2],[68,0,0,0,1],[71,0,0,0,2],[72,0,0,2,0],[73,0,0,2,0],[74,0,0,2,0],[75,0,0,0,1],[79,0,0,0,1],[91,0,0,3,0],[92,0,0,0,4],[95,0,0,1,0],[96,0,0,3,0],[97,0,0,5,0],[98,0,0,3,0],[99,0,1,3,4],[100,0,0,1,0],[101,0,0,3,0],[102,0,0,1,0],[103,0,0,2,0],[119,0,0,1,0],[121,0,0,2,0],[125,0,1,0,0],[127,0,0,2,0],[128,0,0,1,0],[129,0,0,1,0],[134,0,0,2,0],[136,0,0,1,5],[137,0,0,2,0],[138,0,0,1,0],[140,0,0,1,0],[143,0,0,1,2],[144,0,0,1,0],[155,0,0,2,0],[156,0,0,0,2],[157,0,0,0,2],[162,0,0,1,0]],"then":[[14,0,0,0,2],[49,0,0,1,0],[61,0,0,2,0],[92,0,0,0,1],[96,0,0,1,0],[111,0,0,1,0],[132,0,0,1,0],[147,0,0,1,0],[155,0,0,1,0],[163,0,0,1,0]],"responses":[[14,0,0,0,2],[46,0,0,1,0],[52,0,0,1,0],[56,0,0,1,0],[61,0,0,1,0],[92,0,0,0,1],[135,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0]],"before":[[14,0,0,0,2],[15,0,0,0,1],[28,0,0,1,0],[37,0,1,0,0],[41,0,0,1,0],[44,0,0,1,0],[46,0,0,3,0],[47,0,0,1,0],[48,0,0,1,0],[49,0,0,2,0],[53,0,0,1,0],[56,0,0,1,0],[57,0,0,4,0],[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,2,0],[68,0,1,1,0],[69,0,0,1,0],[74,0,0,1,0],[92,0,0,0,1],[99,0,0,1,0],[101,0,0,1,0],[106,0,0,1,0],[109,0,0,2,0],[110,0,0,1,0],[111,0,0,1,0],[112,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[115,0,0,2,0],[116,0,0,1,0],[117,0,0,2,0],[120,0,0,1,0],[127,0,0,1,0],[132,0,0,1,0],[135,0,0,0,1],[150,0,0,4,0],[151,0,0,2,0],[162,0,0,1,0]],"splits":[[15,0,0,1,0]],"guidance":[[15,0,0,1,0],[127,0,1,0,0]],"forking":[[15,0,0,1,0]],"human":[[15,0,0,1,1],[42,0,0,0,2],[52,0,0,1,0],[75,0,0,0,2],[148,0,0,1,0]],"omitted":[[15,0,0,1,0],[24,0,0,1,0],[135,0,0,1,0]],"hidden":[[15,0,0,1,0]],"included":[[15,0,0,1,0],[151,0,0,1,0]],"generated":[[15,0,0,2,1],[24,0,0,1,0],[42,0,0,0,1],[43,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[51,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[59,0,0,1,0],[61,0,0,1,0],[67,0,0,1,0],[76,0,0,1,0],[82,0,0,1,0],[84,0,0,1,0],[87,0,0,1,0],[91,0,0,1,0],[99,0,0,1,0],[110,0,0,1,0],[112,0,0,1,0],[128,0,0,1,0],[129,0,1,1,0],[137,0,0,2,0],[143,0,0,1,2]],"sentence":[[15,0,0,1,0],[53,0,0,0,1],[90,0,0,0,1]],"appears":[[15,0,0,1,0]],"target":[[15,0,0,0,2],[46,0,0,0,2],[56,0,0,0,2],[134,0,0,0,2],[148,0,0,2,0]],"click":[[15,0,0,0,1]],"robot":[[15,0,0,0,1]],"icon":[[15,0,0,0,1],[27,0,0,2,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0]],"editing":[[15,0,0,0,1],[46,0,0,1,0]],"routes":[[15,0,0,0,1],[46,0,0,1,0],[47,0,0,1,0],[49,0,0,2,0],[64,0,0,1,0],[114,0,0,1,0],[132,0,0,1,0]],"project":[[16,0,0,1,0],[38,0,0,1,1],[75,0,0,1,0],[81,0,0,1,0],[111,0,0,1,0]],"structure":[[16,0,0,1,0],[74,0,0,1,0],[100,0,0,1,0],[105,0,0,1,0],[141,0,0,1,0]],"guides":[[16,0,0,1,0],[45,0,0,0,2],[145,0,0,1,0],[158,0,0,0,1]],"release":[[16,0,0,1,0],[124,0,0,1,0]],"tree":[[16,0,0,1,0],[23,0,0,1,0],[24,0,0,1,0],[25,0,1,2,1],[26,0,1,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[43,0,0,1,0],[45,0,0,1,0],[71,0,0,0,1],[74,0,0,1,0],[76,0,0,1,0],[81,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[105,0,0,1,0],[141,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[148,0,0,1,0],[149,0,0,1,0],[150,0,0,1,0]],"hierarchy":[[16,0,0,1,0]],"root":[[16,0,0,0,1],[24,0,0,1,0],[30,0,0,1,0],[31,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,6],[36,0,0,1,5],[37,0,0,1,0],[38,0,0,2,0],[39,0,0,1,0],[40,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[54,0,1,1,0],[59,0,0,1,0],[61,0,0,2,0],[62,0,0,1,0],[72,0,0,1,0],[73,0,0,2,0],[74,0,0,1,0],[77,0,0,2,0],[81,0,0,1,0],[85,0,0,1,0],[87,0,0,1,0],[91,0,0,1,0],[96,0,0,4,0],[97,0,0,2,0],[99,0,0,1,0],[101,0,0,1,0],[105,0,0,1,0],[111,0,0,3,0],[112,0,0,6,0],[113,0,0,2,0],[121,0,0,1,0],[125,0,0,1,0],[128,0,0,2,0],[129,0,0,1,0],[132,0,0,1,0],[134,0,0,1,0],[141,0,0,3,0],[145,0,0,1,0],[152,0,0,1,0]],"index":[[16,0,0,0,2],[21,0,0,0,1],[33,0,0,1,1],[41,0,0,1,0],[43,0,0,1,0],[48,0,0,1,0],[49,0,0,3,0],[53,0,0,0,1],[71,0,0,0,1],[72,0,0,1,0],[73,0,0,5,0],[74,0,0,1,0],[75,0,0,0,1],[76,0,0,1,0],[77,0,0,1,0],[79,0,0,1,0],[81,0,0,1,0],[83,0,0,1,0],[85,0,0,1,0],[90,0,0,1,0],[91,0,0,4,0],[92,0,0,2,3],[93,0,0,2,0],[96,0,0,2,0],[98,0,0,2,0],[99,0,0,0,2],[112,0,0,1,0],[115,0,0,1,0],[128,0,0,1,0],[129,0,0,2,0],[130,0,0,0,1],[154,0,0,2,0],[155,0,0,6,0],[156,0,0,2,1],[157,0,0,1,2],[158,0,0,2,3],[159,0,0,1,1],[160,0,0,1,1],[161,0,0,1,1],[162,0,0,1,0],[163,0,0,3,0]],"get":[[16,0,0,0,1],[45,0,0,0,2],[48,0,0,1,0],[49,0,0,1,0],[75,0,0,1,0],[81,0,1,2,0],[90,0,0,0,1],[99,0,0,0,2],[106,0,0,1,0],[111,0,0,1,0],[130,0,0,0,1],[142,0,0,0,1],[147,0,0,2,0]],"started":[[16,0,0,0,1],[45,0,0,0,2],[90,0,0,0,1],[99,0,0,0,2],[111,0,0,1,0],[130,0,0,0,1],[142,0,0,0,1],[157,0,0,0,1]],"collapsible":[[17,0,0,1,0]],"secondary":[[17,0,0,1,0]],"ignores":[[17,0,0,2,0],[144,0,0,1,0]],"open":[[17,0,0,2,0],[51,0,0,1,0],[92,0,0,2,0],[115,0,1,0,0],[142,0,0,0,1],[148,0,0,1,0]],"closed":[[17,0,0,3,0],[148,0,0,1,0]],"state":[[17,0,0,2,0],[108,0,0,1,0],[148,0,0,1,0]],"item":[[17,0,0,1,0]],"accordions":[[17,0,0,3,1]],"place":[[17,0,0,2,0],[32,0,0,1,0],[79,0,0,1,0],[81,0,0,1,0],[90,0,0,1,0],[109,0,0,1,0],[151,0,0,1,0]],"hide":[[17,0,0,2,0]],"should":[[17,0,0,1,1],[34,0,0,1,0],[37,0,0,1,0],[39,0,0,1,0],[48,0,0,1,0],[49,0,0,2,0],[162,0,0,1,0]],"notes":[[17,0,0,1,0],[108,0,1,0,0]],"optional":[[17,0,0,1,1],[19,0,0,2,0],[24,0,0,2,0],[27,0,1,10,0],[44,0,0,1,0],[54,0,0,1,0],[72,0,0,2,0],[73,0,0,3,0],[74,0,0,3,0],[76,0,0,5,0],[84,0,0,2,0],[85,0,0,1,0],[112,0,0,1,0],[134,0,0,1,0],[135,0,0,1,2],[136,0,0,0,1],[138,0,0,1,0],[151,0,1,0,0],[152,0,1,0,0]],"material":[[17,0,0,1,1]],"good":[[17,0,0,1,0],[52,0,1,0,0]],"no":[[17,0,0,1,0],[25,0,0,1,0],[26,0,0,1,0],[32,0,0,1,0],[59,0,0,1,0],[76,0,0,1,0],[93,0,0,2,0],[101,0,0,1,0],[108,0,0,1,0],[111,0,0,1,0],[123,0,0,12,0],[124,0,0,7,0],[125,0,0,7,0],[129,0,0,1,0],[135,0,0,1,0],[152,0,0,2,0],[157,0,0,1,0]],"everything":[[17,0,0,1,0]],"across":[[18,0,0,1,0],[25,0,0,1,0],[87,0,0,3,0],[100,0,0,1,0],[111,0,0,1,0]],"topics":[[18,0,0,1,0]],"frameworks":[[18,0,0,1,2],[34,0,0,0,1],[79,0,0,1,0],[87,0,0,1,0]],"sdks":[[18,0,0,1,0]],"runtimes":[[18,0,0,1,0],[56,0,0,1,0]],"deployment":[[18,0,0,1,0],[56,0,0,0,1],[86,0,0,1,0],[146,0,0,1,0]],"targets":[[18,0,0,1,0]],"product":[[18,0,0,1,0],[36,0,0,0,2],[43,0,0,0,1],[45,0,1,0,2],[53,0,0,0,2],[54,0,0,1,0],[74,0,0,1,0],[91,0,0,1,0],[96,0,0,2,0],[99,0,0,1,1],[100,0,0,0,2],[129,0,0,2,0],[131,0,0,0,4],[132,0,0,0,4],[141,0,0,2,2],[157,0,0,1,0]],"areas":[[18,0,0,1,0]],"reader":[[18,0,0,1,0],[57,0,0,1,0]],"facing":[[18,0,0,1,0],[49,0,0,1,0],[79,0,0,1,0],[110,0,0,1,0],[128,0,0,1,0],[153,0,0,1,0]],"automatically":[[18,0,0,1,0],[27,0,0,1,0],[56,0,0,1,0]],"topic":[[18,0,0,1,0],[30,0,0,2,0],[31,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[75,0,0,1,0],[77,0,0,1,0],[81,0,0,1,0],[84,0,0,1,0],[111,0,0,1,0],[128,0,0,1,0],[142,0,0,0,1]],"config":[[18,0,0,1,0],[24,0,0,1,0],[25,0,0,2,1],[26,0,0,1,0],[35,0,0,0,2],[36,0,0,0,1],[45,0,0,2,0],[49,0,0,1,0],[69,0,0,1,0],[100,0,0,2,1],[141,0,0,1,0],[145,0,0,1,0],[157,0,0,1,0],[163,0,0,1,0]],"framework":[[18,0,0,1,1],[27,0,0,2,0],[28,0,0,4,0],[29,0,0,1,0],[41,0,0,1,0],[46,0,0,2,0],[54,0,0,0,1],[55,0,0,2,0],[56,0,0,2,0],[57,0,0,2,0],[64,0,0,5,0],[69,0,0,1,0],[76,0,0,1,0],[79,0,0,1,0],[83,0,0,1,0],[84,0,0,5,0],[87,0,0,1,0],[120,0,0,4,0],[122,0,0,0,1],[123,0,0,1,0],[133,0,0,2,0],[136,0,0,1,0],[137,0,0,1,0],[148,0,0,1,0]],"integration":[[18,0,0,3,0],[137,0,0,1,0]],"vue":[[18,0,0,2,3]],"svelte":[[18,0,0,2,0]],"label":[[18,0,0,0,3],[125,0,0,1,0]],"activevalue":[[18,0,0,0,1]],"rows":[[19,0,0,1,0]],"already":[[19,0,0,1,0],[51,0,0,1,0],[158,0,0,1,0]],"know":[[19,0,0,1,0]],"reads":[[19,0,0,1,0],[23,0,0,1,0],[44,0,0,0,1],[63,0,0,1,0],[91,0,0,1,0],[152,0,0,2,0],[156,0,0,1,0]],"typescript":[[19,0,0,1,0],[44,0,0,0,1],[103,0,0,1,0],[152,0,0,2,0]],"extracts":[[19,0,0,1,0]],"keep":[[19,0,0,1,0],[22,0,0,2,0],[46,0,0,1,0],[54,0,0,1,0],[57,0,0,1,0],[62,0,0,1,0],[67,0,0,1,0],[115,0,0,1,0],[126,0,0,1,0],[144,0,0,1,0],[157,0,0,1,0],[163,0,0,1,0]],"path":[[19,0,0,1,0],[30,0,0,1,0],[33,0,0,1,0],[41,0,0,1,0],[56,0,0,1,0],[73,0,0,3,0],[80,0,1,0,0],[99,0,0,0,12],[103,0,0,1,0],[111,0,0,1,0],[112,0,0,1,0],[113,0,0,1,0],[130,0,0,0,1],[134,0,0,1,0],[137,0,0,1,0],[141,0,0,2,0],[152,0,0,2,1],[162,0,0,1,0]],"property":[[19,0,0,1,0],[27,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[76,0,0,1,0],[136,0,0,0,2],[152,0,0,1,0]],"required":[[19,0,0,2,1],[23,0,0,1,0],[24,0,0,2,0],[25,0,0,1,0],[26,0,0,1,0],[27,0,0,2,0],[28,0,0,2,0],[29,0,0,1,0],[69,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[76,0,0,1,0],[119,0,0,1,0],[121,0,0,1,0],[122,0,0,2,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0]],"calloutvariant":[[19,0,0,1,1]],"visual":[[19,0,0,1,1],[86,0,0,1,0]],"treatment":[[19,0,0,1,1]],"deprecated":[[19,0,0,3,0],[27,0,0,3,0],[123,0,0,1,0]],"boolean":[[19,0,0,1,0],[27,0,0,6,0],[123,0,0,6,0],[124,0,0,2,0],[125,0,0,2,0]],"marks":[[19,0,0,1,0],[27,0,0,2,0]],"false":[[19,0,0,1,0],[106,0,0,0,1]],"properties":[[19,0,0,0,1]],"true":[[19,0,0,0,1],[35,0,0,0,3],[44,0,0,0,1],[105,0,0,1,1],[143,0,0,0,1]],"driven":[[20,0,0,1,0]],"examples":[[20,0,0,1,0]],"host":[[20,0,0,1,1],[74,0,0,1,0],[99,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0]],"receives":[[20,0,0,1,0]],"code":[[20,0,0,1,1],[31,0,0,0,1],[32,0,0,1,0],[48,0,0,1,0],[56,0,0,1,0],[72,0,0,1,0],[73,0,0,2,0],[74,0,0,1,0],[75,0,0,0,1],[76,0,0,1,0],[79,0,0,0,1],[87,0,0,1,0],[93,0,0,1,0],[98,0,0,1,0],[141,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0],[155,0,0,1,0],[161,0,0,1,0]],"loaders":[[20,0,0,1,0]],"dynamic":[[20,0,0,1,0]],"imports":[[20,0,0,1,0],[71,0,0,0,1],[100,0,0,1,0],[147,0,0,1,0],[150,0,0,1,0]],"needs":[[20,0,0,1,0],[34,0,0,1,0],[83,0,0,1,0],[90,0,0,1,0],[152,0,0,1,0]],"behavior":[[20,0,0,1,0],[24,0,0,1,0],[108,0,1,0,0],[110,0,0,1,0]],"filename":[[20,0,0,0,1]],"language":[[20,0,0,0,1]],"while":[[20,0,0,0,1],[61,0,0,1,0],[156,0,0,1,0]],"diagrams":[[21,0,0,1,0]],"plain":[[21,0,0,1,0],[56,0,0,1,0],[59,0,0,2,0],[143,0,0,1,0],[144,0,0,1,0],[160,0,0,1,0]],"side":[[21,0,0,1,0],[84,0,0,1,0],[152,0,0,1,0]],"svg":[[21,0,0,1,0]],"tools":[[21,0,0,1,0],[30,0,0,1,0],[32,0,0,1,0],[39,0,0,1,0],[75,0,0,1,0],[82,0,0,1,0],[161,0,0,1,1]],"chart":[[21,0,0,0,1]],"graph":[[21,0,0,0,2]],"lr":[[21,0,0,0,2],[25,0,0,0,1],[31,0,0,0,1],[42,0,0,0,1],[75,0,0,0,1],[79,0,0,0,1]],"api":[[21,0,0,0,1],[55,0,0,1,0],[101,0,0,1,0],[103,0,0,1,0],[117,0,0,2,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,1,1,0],[122,0,1,1,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[133,0,0,1,0],[157,0,0,1,0],[163,0,0,1,0]],"guidelines":[[22,0,1,0,0]],"stays":[[22,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[83,0,0,1,0],[108,0,0,1,0],[156,0,0,1,0]],"renaming":[[22,0,0,1,0]],"breaks":[[22,0,0,1,0]],"until":[[22,0,0,1,0]],"remap":[[22,0,0,1,0]],"quality":[[22,0,0,1,0]],"converted":[[22,0,0,1,0],[49,0,0,1,0],[75,0,0,1,0],[77,0,0,1,0],[152,0,0,1,0],[153,0,0,1,0]],"first":[[22,0,0,1,0],[38,0,0,0,1],[48,0,0,1,0],[68,0,0,1,0],[69,0,1,0,0],[73,0,0,1,0],[82,0,0,1,0],[92,0,0,0,1],[112,0,0,1,0],[114,0,0,1,0],[127,0,0,1,0],[131,0,0,1,0],[147,0,0,1,0],[153,0,0,1,0]],"edit":[[22,0,0,1,0]],"order":[[22,0,0,1,0],[35,0,0,1,0],[44,0,0,2,0],[69,0,0,1,0],[77,0,0,1,0],[100,0,0,1,1],[103,0,0,1,0],[104,0,0,1,0],[105,0,0,1,0],[109,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[150,0,1,0,0]],"actually":[[22,0,0,1,0],[110,0,0,1,0]],"looks":[[22,0,0,1,0],[32,0,0,1,0],[46,0,0,1,0],[52,0,1,0,0],[92,0,0,1,0],[153,0,0,1,0]],"wrong":[[22,0,0,1,0],[28,0,0,1,0],[32,0,0,1,0],[64,0,0,1,0],[69,0,0,1,0],[119,0,0,1,0],[140,0,0,1,0],[153,0,0,1,0]],"frontmatter":[[23,1,1,1,0],[24,1,1,0,0],[25,1,1,0,0],[26,1,1,0,0],[27,1,1,0,0],[28,1,1,1,0],[29,1,1,1,0],[45,0,0,2,0],[46,0,0,2,0],[48,0,0,1,0],[52,0,0,1,0],[56,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0],[64,0,0,4,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,2,0],[71,0,0,0,2],[76,0,0,1,0],[77,0,0,2,0],[78,0,0,1,0],[81,0,0,1,0],[85,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[97,0,0,1,0],[101,0,0,2,0],[103,0,0,1,0],[106,0,0,1,1],[108,0,0,3,0],[111,0,0,1,0],[119,0,1,1,0],[121,0,0,3,0],[122,0,0,0,1],[123,0,1,0,0],[124,0,1,0,0],[126,0,0,0,1],[134,0,0,1,0],[144,0,0,1,0]],"fields":[[23,0,0,1,0],[24,0,0,1,0],[25,0,0,1,0],[26,0,0,1,0],[27,0,1,1,0],[28,0,0,1,0],[29,0,0,1,0],[64,0,0,2,0],[69,0,0,1,0],[99,0,0,1,0],[101,0,0,2,0],[121,0,0,1,0],[122,0,0,1,0]],"semantics":[[23,0,0,1,0],[24,0,0,1,0],[25,0,0,1,0],[26,0,0,1,0],[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0]],"yaml":[[23,0,0,1,0],[65,0,0,0,1],[108,0,0,1,0],[119,0,0,1,0]],"things":[[23,0,0,1,0],[91,0,0,1,0]],"nav":[[23,0,0,1,0],[24,0,0,1,0],[25,0,1,1,2],[26,0,1,0,0],[27,0,0,1,0],[42,0,0,0,1],[71,0,0,0,3],[74,0,0,2,0],[90,0,0,1,0],[91,0,0,1,0],[125,0,0,3,0],[143,0,0,1,1]],"minimum":[[24,0,1,0,0],[90,0,0,1,0]],"non":[[24,0,0,1,0],[26,0,0,1,0],[49,0,0,2,0],[63,0,0,1,0],[76,0,0,1,0],[101,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[132,0,0,1,0],[135,0,0,0,1]],"recommended":[[24,0,0,1,0],[54,0,0,1,0]],"routing":[[24,0,0,1,0],[41,0,0,1,0],[42,0,0,0,1],[49,0,0,1,0],[51,0,0,1,0],[83,0,0,1,0],[86,0,0,1,0],[91,0,0,1,0],[129,0,0,2,0],[141,0,0,1,0],[145,0,0,2,0]],"hint":[[24,0,0,1,0],[27,0,0,1,0]],"converter":[[24,0,0,1,0],[48,0,0,1,0],[120,0,0,1,0],[123,0,0,1,0]],"synthesizes":[[24,0,0,1,0]],"during":[[24,0,0,1,0],[33,0,0,1,0],[44,0,0,1,0]],"declared":[[24,0,0,1,0],[25,0,0,1,0]],"pages":[[24,0,0,1,0],[25,0,0,1,0],[26,0,0,1,0],[27,0,0,2,0],[34,0,0,1,0],[45,0,0,1,0],[46,0,0,1,0],[52,0,0,1,0],[54,0,0,2,2],[55,0,1,0,1],[56,0,0,1,0],[57,0,0,2,0],[61,0,0,2,0],[62,0,0,1,0],[67,0,0,1,0],[74,0,0,2,0],[76,0,0,1,0],[81,0,0,1,0],[91,0,0,1,0],[99,0,0,1,0],[111,0,0,2,0],[112,0,0,2,0],[125,0,0,1,0],[129,0,0,2,0],[132,0,0,2,3],[134,0,0,1,0],[135,0,0,0,3],[137,0,0,1,0],[144,0,0,0,1],[145,0,0,1,0]],"excluded":[[24,0,0,1,0]],"grouped":[[24,0,0,1,0],[111,0,0,2,0],[115,0,0,1,0],[118,0,0,1,0]],"indexes":[[24,0,0,1,0],[112,0,0,2,0],[113,0,0,1,0]],"appear":[[24,0,0,1,0]],"fallback":[[24,0,0,1,0],[49,0,0,1,0],[73,0,0,1,0],[85,0,0,1,0],[91,0,0,1,0],[96,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[145,0,0,1,0],[146,0,0,2,0]],"connect":[[24,0,0,0,1],[26,0,0,0,2],[39,0,0,1,0],[41,1,1,0,0],[42,1,1,0,0],[43,1,1,0,0],[44,1,1,0,0],[45,1,1,0,0],[46,1,1,0,0],[47,1,1,0,0],[48,1,2,0,0],[49,1,1,0,0],[50,1,1,0,0],[111,0,0,1,0]],"site":[[24,0,0,0,1],[26,0,0,0,2],[39,0,0,1,0],[41,1,1,2,0],[42,1,1,0,0],[43,1,1,1,0],[44,1,1,0,0],[45,1,1,0,0],[46,1,2,0,0],[47,1,2,0,0],[48,1,1,1,0],[49,1,1,0,0],[50,1,1,0,0],[51,0,0,2,0],[52,0,0,2,0],[53,0,0,2,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,2,0],[62,0,0,1,0],[71,0,0,0,3],[72,0,0,1,0],[73,0,0,3,0],[74,0,0,1,0],[75,0,0,2,5],[77,0,0,2,0],[79,0,0,0,8],[80,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[91,0,0,1,0],[92,0,0,1,1],[94,0,0,1,0],[96,0,0,2,0],[99,0,0,2,1],[111,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0]],"become":[[25,0,1,0,0],[26,0,1,0,0],[100,0,0,1,0]],"may":[[25,0,0,1,0],[32,0,0,1,0],[54,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[115,0,0,1,0],[134,0,0,1,0]],"declare":[[25,0,0,1,0],[26,0,0,1,0],[45,0,0,1,0]],"more":[[25,0,0,1,0],[113,0,0,1,0],[115,0,0,1,0]],"shared":[[25,0,0,1,0],[34,0,0,2,1],[87,0,0,1,0],[101,0,0,3,0],[121,0,0,2,0],[153,0,0,1,0],[162,0,0,1,0]],"multiple":[[25,0,0,1,0],[48,0,0,1,0]],"once":[[25,0,0,1,0],[29,0,0,1,0],[45,0,0,1,0],[81,0,0,1,0],[92,0,0,1,0],[126,0,0,1,0]],"intersection":[[25,0,0,1,0]],"metadata":[[25,0,0,1,0],[29,0,0,1,0],[52,0,0,2,0],[55,0,0,1,0],[76,0,0,1,0],[85,0,0,1,0],[96,0,0,1,0],[114,0,0,1,0],[129,0,0,2,0],[136,0,0,3,1],[137,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[160,0,0,1,0]],"grouping":[[25,0,0,1,0],[29,0,0,1,0],[76,0,0,1,0]],"declares":[[25,0,0,1,0],[36,0,0,0,1],[45,0,0,1,0],[143,0,0,0,1]],"isn":[[25,0,0,1,0],[28,0,0,1,0]],"fails":[[25,0,0,1,0],[48,0,0,1,0],[68,0,0,2,0],[69,0,0,1,0],[77,0,0,1,0],[140,0,0,1,0]],"unknown":[[25,0,0,1,0],[28,0,0,2,0],[35,0,0,0,1],[36,0,0,0,4],[48,0,0,0,1],[64,0,0,1,0],[65,0,0,2,1],[66,0,0,0,1],[68,0,0,1,1],[69,0,0,1,0],[77,0,0,1,0],[97,0,0,1,0],[101,0,0,4,0],[119,0,0,3,0],[122,0,0,0,1],[126,0,0,2,0],[143,0,0,0,3]],"truth":[[25,0,0,1,0],[29,0,0,1,0]],"drift":[[25,0,0,1,0],[127,0,0,1,0]],"flowchart":[[25,0,0,0,1],[31,0,0,0,1],[42,0,0,0,1],[71,0,0,0,1],[75,0,0,0,1],[79,0,0,0,1],[148,0,0,0,1]],"cfg":[[25,0,0,0,2]],"page1":[[25,0,0,0,2]],"page2":[[25,0,0,0,2]],"page3":[[25,0,0,0,2]],"resolver":[[25,0,0,0,9],[71,0,0,0,1]],"sections":[[25,0,0,0,2],[45,0,0,1,0],[74,0,0,1,0],[114,0,0,1,0],[129,0,0,1,0],[148,0,0,1,0]],"nested":[[26,0,1,1,0],[32,0,0,1,0]],"trees":[[26,0,0,1,0],[105,0,0,1,0]],"sets":[[26,0,0,1,0],[60,0,0,2,0],[134,0,0,1,0],[139,0,0,1,0],[161,0,0,1,0]],"bundle":[[26,0,0,1,2],[30,1,1,1,0],[31,1,1,0,4],[32,1,1,1,0],[33,1,1,1,1],[34,1,1,1,1],[35,1,1,0,1],[36,1,1,0,0],[37,1,1,0,1],[38,1,2,0,0],[39,1,1,0,0],[40,1,1,0,0],[48,0,0,1,0],[71,0,0,0,1],[72,0,0,2,0],[73,0,0,4,0],[74,0,0,1,0],[75,0,0,1,3],[77,0,0,2,0],[79,0,0,1,7],[81,0,0,1,0],[93,0,1,2,1],[94,0,0,1,0],[96,0,0,6,0],[98,0,1,1,1],[99,0,0,2,0],[111,0,0,3,0],[112,0,0,4,0],[113,0,0,2,0],[128,0,0,1,0],[142,0,0,1,0]],"lands":[[26,0,0,1,0]],"slot":[[26,0,0,1,0]],"leaf":[[26,0,0,2,0],[76,0,0,2,0]],"directly":[[26,0,0,1,0],[35,0,0,1,0],[73,0,0,2,0],[74,0,0,1,0],[76,0,0,1,0],[100,0,0,1,0],[104,0,0,1,0],[111,0,0,1,0],[112,0,0,1,0],[128,0,0,1,0],[133,0,0,1,0]],"contain":[[26,0,0,1,0],[61,0,0,1,0],[76,0,0,1,0]],"schema":[[27,0,0,1,0],[28,0,0,4,0],[55,0,0,1,0],[63,0,0,1,0],[64,0,0,3,0],[68,0,0,1,0],[69,0,0,2,0],[101,0,0,2,0],[117,0,0,2,0],[118,0,0,1,0],[119,0,0,3,0],[120,0,0,1,0],[121,0,0,6,0],[122,0,0,2,1],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,4,0],[127,0,0,1,0],[136,0,0,0,1],[137,0,0,1,0]],"accepts":[[27,0,0,1,0],[67,0,0,1,0],[138,0,0,1,0],[144,0,0,1,0]],"resolved":[[27,0,0,1,0],[48,0,0,1,0],[74,0,0,1,0],[147,0,0,1,0]],"deprecatedreason":[[27,0,0,1,0],[123,0,0,1,0]],"message":[[27,0,0,1,0],[122,0,0,0,1],[159,0,0,1,0]],"paired":[[27,0,0,1,0]],"experimental":[[27,0,0,2,0],[111,0,0,1,0],[123,0,0,1,0]],"canary":[[27,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0]],"hides":[[27,0,0,1,0]],"channels":[[27,0,0,1,0]],"new":[[27,0,0,1,0],[46,0,0,0,2],[54,0,0,0,1],[56,0,0,0,1],[59,0,0,0,1],[82,0,0,1,0],[123,0,0,1,0],[134,0,0,0,1],[135,0,0,0,2]],"highlights":[[27,0,0,1,0]],"recently":[[27,0,0,1,0]],"added":[[27,0,0,1,0]],"draft":[[27,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0]],"excludes":[[27,0,0,1,0]],"generation":[[27,0,0,1,0],[35,0,0,1,0],[46,0,0,1,0],[101,0,0,1,0],[117,0,0,1,0],[156,0,0,1,0]],"entirely":[[27,0,0,1,0],[60,0,0,1,0]],"tags":[[27,0,0,2,0],[123,0,0,1,0],[124,0,0,1,0],[151,0,0,1,0]],"form":[[27,0,0,1,0]],"facets":[[27,0,0,1,0]],"availablein":[[27,0,0,1,0],[123,0,0,1,0],[127,0,0,1,0]],"cross":[[27,0,0,1,0],[28,0,0,1,0],[29,0,0,1,0],[64,0,0,2,0],[69,0,0,1,0],[120,0,0,1,0],[122,0,0,0,1],[139,0,0,1,0]],"availability":[[27,0,0,1,0]],"layout":[[27,0,0,1,0],[55,0,0,1,0],[83,0,0,1,0]],"uis":[[27,0,0,1,0]],"support":[[27,0,0,1,0]],"width":[[27,0,0,1,0]],"lastmodified":[[27,0,0,1,0],[97,0,0,1,0],[105,0,0,1,0],[123,0,0,1,0]],"lastauthor":[[27,0,0,1,0],[97,0,0,1,0],[105,0,0,1,0],[123,0,0,1,0]],"filled":[[27,0,0,1,0]],"enrich":[[27,0,0,1,0],[97,0,0,1,0],[123,0,0,1,0]],"git":[[27,0,0,1,0],[48,0,0,0,1],[97,0,0,2,0],[105,0,0,1,0],[123,0,0,1,0]],"hand":[[27,0,0,1,0],[46,0,0,1,0]],"rules":[[28,0,1,2,0],[45,0,0,1,0],[63,0,0,1,0],[85,0,0,1,0],[117,1,1,1,0],[118,1,2,0,0],[119,1,3,0,0],[120,1,3,0,0],[121,1,1,0,0],[122,1,1,0,0],[123,1,1,0,0],[124,1,1,0,0],[125,1,1,0,0],[126,1,1,0,0],[127,1,1,0,0],[153,0,1,0,0]],"enforces":[[28,0,0,1,0]],"violations":[[28,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[69,0,0,1,0],[122,0,0,1,1]],"ci":[[28,0,0,1,0],[40,0,0,1,0],[48,0,0,1,0],[50,0,0,1,0],[63,1,1,2,0],[64,1,1,1,0],[65,1,1,1,0],[66,1,2,2,0],[67,1,1,2,0],[68,1,1,1,0],[69,1,1,2,0],[117,0,0,1,0],[126,0,0,1,0],[127,0,0,2,0],[146,0,0,1,0]],"they":[[28,0,0,1,0],[38,0,0,0,1],[39,0,0,1,0],[59,0,0,2,0],[67,0,0,1,0],[75,0,0,1,0],[114,0,0,1,0],[117,0,0,1,0],[118,0,0,1,0],[127,0,0,1,0],[163,0,0,1,0]],"reach":[[28,0,0,1,0],[32,0,0,1,0],[67,0,0,1,0],[117,0,0,1,0]],"relevant":[[28,0,0,1,0]],"field":[[28,0,0,3,0],[29,0,0,1,0],[54,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[69,0,0,2,0],[76,0,0,1,0],[119,0,0,4,0],[122,0,0,1,2],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,0]],"top":[[28,0,0,1,0],[53,0,0,1,0],[64,0,0,1,0],[108,0,0,1,0],[119,0,0,1,0],[129,0,0,1,0],[154,0,0,1,0],[163,0,0,1,0]],"warn":[[28,0,0,1,0],[101,0,0,1,0],[119,0,0,1,0],[121,0,0,2,0],[122,0,0,0,1]],"fail":[[28,0,0,1,0],[35,0,0,0,1],[36,0,0,0,1],[63,0,0,2,0],[64,0,0,1,0],[65,0,0,2,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[117,0,0,1,0],[127,0,0,1,0]],"parse":[[28,0,0,2,0],[64,0,0,2,0],[69,0,0,1,0],[77,0,0,1,0],[119,0,0,3,0],[122,0,0,0,1],[162,0,0,1,0]],"meta":[[28,0,0,1,0],[64,0,0,1,0],[101,0,0,2,0],[119,0,0,1,0],[121,0,0,3,0],[122,0,0,0,1],[125,0,1,0,0],[127,0,0,1,0],[136,0,0,1,2]],"doesn":[[28,0,0,2,0],[64,0,0,1,0],[66,0,0,1,0],[120,0,0,1,0],[163,0,0,1,0]],"invalid":[[28,0,0,1,0],[64,0,0,1,0],[69,0,0,1,0],[120,0,0,1,0],[122,0,0,1,1]],"link":[[28,0,0,3,0],[29,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[55,0,0,0,2],[56,0,0,1,0],[63,0,0,2,0],[64,0,0,3,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,4,0],[73,0,0,1,0],[98,0,0,1,0],[111,0,0,1,0],[117,0,0,2,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,1,5,0],[121,0,0,1,0],[122,0,0,1,2],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[134,0,0,1,0],[137,0,0,1,0],[141,0,0,2,0],[148,0,0,2,0],[149,0,0,1,0]],"exist":[[28,0,0,1,0],[64,0,0,1,0],[120,0,0,1,0]],"unresolved":[[28,0,0,2,0],[64,0,0,2,0],[69,0,0,1,0],[120,0,0,1,0],[122,0,0,0,1],[127,0,0,1,0]],"placeholder":[[28,0,0,2,0],[64,0,0,1,0],[69,0,0,1,0],[120,0,0,1,0],[122,0,0,0,1],[127,0,0,1,0],[150,0,0,2,0]],"doc":[[28,0,0,1,0]],"contains":[[28,0,0,1,0],[53,0,0,1,0],[61,0,0,1,0],[99,0,0,1,0],[111,0,0,1,0],[112,0,0,3,0],[120,0,0,1,0],[132,0,0,1,0]],"scoped":[[28,0,0,1,0],[46,0,0,1,0],[49,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[61,0,0,2,0],[62,0,0,1,0],[64,0,0,1,0],[74,0,0,1,0],[84,0,0,1,0],[91,0,0,1,0],[96,0,0,1,0],[99,0,0,1,0],[120,0,0,1,0],[128,0,0,1,0],[129,0,0,3,0],[132,0,0,1,0],[135,0,0,0,1]],"another":[[28,0,0,1,0],[45,0,0,0,1],[106,0,0,1,0],[120,0,0,1,0]],"extend":[[28,0,0,1,0],[64,0,0,1,0],[69,0,0,1,0],[101,0,0,1,0],[126,0,0,1,0]],"gives":[[29,0,1,0,0],[55,0,0,1,0],[84,0,0,1,0],[133,0,0,1,0]],"consistent":[[29,0,0,1,0]],"rest":[[29,0,0,1,0],[70,0,0,1,0],[100,0,0,1,0]],"configuration":[[29,0,0,1,0]],"drives":[[29,0,0,1,0],[76,0,0,1,0],[91,0,0,1,0],[129,0,0,1,0]],"position":[[29,0,0,1,0],[76,0,0,1,0]],"filtering":[[29,0,0,1,0],[44,0,0,1,0]],"checks":[[29,0,0,1,0],[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[63,0,0,1,0],[111,0,0,2,0],[117,0,0,1,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,2,0],[121,0,0,1,0],[122,0,0,1,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0]],"tarball":[[30,0,0,1,0],[31,0,0,1,0],[32,0,0,2,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,1,1,0],[36,0,1,1,0],[37,0,0,1,0],[38,0,0,2,0],[39,0,0,1,0],[40,0,0,1,0],[48,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[111,0,0,1,0]],"plus":[[30,0,0,1,0],[31,0,0,1,0],[32,0,0,1,0],[33,0,0,1,0],[34,0,0,1,0],[35,0,0,1,0],[36,0,0,1,0],[37,0,0,1,0],[38,0,0,1,0],[39,0,0,1,0],[40,0,0,1,0],[81,0,0,2,0],[85,0,0,1,0],[89,0,0,1,0],[91,0,0,1,0],[93,0,0,1,0],[98,0,0,1,0],[106,0,0,1,0],[112,0,0,1,0],[144,0,0,1,0],[149,0,0,1,0],[159,0,0,1,0]],"publish":[[30,0,0,1,0],[31,0,0,0,4],[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[92,0,0,1,0]],"library":[[30,0,0,1,0],[32,0,0,1,0],[35,0,0,1,0],[38,0,0,0,2],[86,0,0,1,0],[90,0,0,0,2],[101,0,0,1,0],[103,0,1,1,0],[117,0,0,2,0],[118,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[121,0,1,1,0],[122,0,1,1,0],[123,0,0,1,0],[124,0,0,1,0],[125,0,0,1,0],[126,0,0,1,0],[127,0,0,1,0],[130,0,0,0,2],[131,0,0,0,3],[142,0,0,0,2],[159,0,0,0,1],[160,0,0,0,1]],"want":[[30,0,0,1,0],[41,0,0,1,0],[44,0,0,1,0],[51,0,0,1,0],[59,0,0,1,0],[82,0,0,1,0],[84,0,0,1,0],[87,0,0,2,0],[106,0,0,1,0],[150,0,0,1,0],[153,0,0,2,0],[161,0,0,1,0]],"ides":[[30,0,0,1,0]],"hitting":[[30,0,0,1,0]],"network":[[30,0,0,1,0],[75,0,0,1,0],[161,0,0,1,0]],"prepack":[[30,0,0,1,0],[35,0,0,1,0]],"include":[[30,0,0,1,0],[34,0,0,2,2],[35,0,1,0,0],[36,0,1,0,0],[37,0,0,1,0],[44,0,0,1,0],[49,0,0,1,0],[52,0,0,2,0],[62,0,0,1,0],[96,0,0,3,0],[97,0,0,2,0],[99,0,0,0,1],[148,0,0,1,0],[151,0,0,1,0],[157,0,0,1,0]],"published":[[30,0,0,1,0],[35,0,1,0,0],[36,0,1,0,0],[38,0,0,1,0],[72,0,0,1,0],[98,0,0,1,0],[114,0,0,1,0]],"ships":[[30,0,0,1,0],[89,0,0,1,0],[152,0,0,1,0]],"auto":[[30,0,0,1,0],[32,0,0,1,0],[38,0,0,1,0],[73,0,0,1,0],[75,0,0,1,1],[81,0,0,1,0],[93,0,0,1,0],[141,0,0,1,0]],"discover":[[30,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[81,0,0,1,0],[111,0,0,1,0]],"website":[[30,0,0,1,0],[32,0,0,2,0],[33,0,0,1,0],[39,0,0,1,0],[71,0,0,0,2],[72,0,0,2,0],[75,0,0,1,0],[77,0,0,1,0],[79,0,0,4,0],[80,0,0,1,0],[81,0,0,2,0],[82,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[87,0,0,1,0],[93,0,0,2,0],[96,0,0,1,0],[98,0,0,1,0],[114,0,0,1,0],[128,0,0,1,0],[132,0,0,1,0],[141,0,0,1,0]],"everyone":[[30,0,0,1,0]],"else":[[30,0,0,1,0],[69,0,0,1,0],[157,0,0,1,0]],"flow":[[31,0,1,0,0],[42,0,1,0,0],[93,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0]],"repo":[[31,0,0,0,1],[32,0,0,1,0],[35,0,0,0,2],[36,0,0,0,3],[38,0,0,1,0],[42,0,0,0,1],[43,0,0,1,0],[48,0,0,1,0],[51,0,0,1,0],[87,0,0,2,0],[90,0,0,1,0],[96,0,0,1,0],[99,0,0,0,3],[110,0,0,1,0],[141,0,0,1,0]],"packages":[[31,0,0,0,2],[33,0,0,1,2],[34,0,0,1,1],[37,0,0,0,2],[72,0,0,1,0],[79,0,0,0,1],[87,0,0,1,0],[93,0,0,2,1],[98,0,0,1,1],[141,0,0,0,1]],"lt":[[31,0,0,0,4],[75,0,0,0,1],[79,0,0,0,2]],"gt":[[31,0,0,0,4],[75,0,0,0,1],[79,0,0,0,2]],"consume":[[31,0,0,0,2],[92,0,0,1,0]],"node":[[31,0,0,0,1],[32,0,0,2,0],[33,0,0,1,0],[35,0,0,0,1],[38,0,0,1,1],[56,0,0,1,1],[73,0,0,1,0],[75,0,0,1,1],[79,0,0,1,1],[81,0,0,2,0],[93,0,0,1,0],[101,0,0,2,0],[103,0,0,1,0],[111,0,0,1,0],[121,0,0,1,0],[128,0,0,1,0],[133,0,0,1,0],[141,0,0,1,0],[143,0,0,0,1],[156,0,0,0,1],[157,0,0,1,0]],"modules":[[31,0,0,0,1],[32,0,0,2,0],[33,0,0,1,0],[38,0,0,1,1],[73,0,0,1,0],[75,0,0,1,1],[79,0,0,1,1],[81,0,0,2,0],[93,0,0,1,0],[101,0,0,2,0],[111,0,0,1,0],[121,0,0,1,0],[128,0,0,1,0],[141,0,0,1,0],[150,0,0,1,0]],"claude":[[31,0,0,0,1],[32,0,0,1,0],[73,0,0,1,0],[75,0,0,0,1],[79,0,0,0,1],[93,0,0,1,0],[113,0,0,2,0],[134,0,0,1,0],[141,0,0,1,0]],"codex":[[31,0,0,0,1],[32,0,0,1,0],[73,0,0,1,0],[75,0,0,0,1],[79,0,0,0,1],[93,0,0,1,0],[141,0,0,1,0]],"cursor":[[31,0,0,0,1],[32,0,0,1,0],[73,0,0,1,0],[75,0,0,0,1],[79,0,0,0,1],[93,0,0,1,0],[141,0,0,1,0]],"copilot":[[31,0,0,0,1],[32,0,0,1,0],[73,0,0,1,0],[75,0,0,0,1],[79,0,0,0,1],[93,0,0,1,0],[141,0,0,1,0]],"convention":[[32,0,0,2,0],[128,0,0,1,0]],"absolute":[[32,0,0,1,0],[54,0,0,1,0],[59,0,0,2,0],[75,0,0,0,1],[141,0,0,1,0]],"urls":[[32,0,0,1,0],[46,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[59,0,0,1,0],[61,0,0,3,0],[62,0,0,1,0],[64,0,0,1,0],[75,0,0,0,1],[92,0,0,0,1],[96,0,0,1,0],[120,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0],[137,0,0,1,0],[148,0,0,1,0],[150,0,0,1,0],[157,0,0,1,0]],"fetches":[[32,0,0,1,0]],"over":[[32,0,0,1,0],[35,0,0,1,0],[44,0,0,1,0],[73,0,0,2,0],[75,0,0,1,0],[154,0,0,1,0],[161,0,0,1,0]],"http":[[32,0,0,2,0],[49,0,0,0,4],[61,0,0,0,8],[73,0,0,2,0],[75,0,0,1,3],[79,0,0,2,3],[80,0,0,1,0],[81,0,0,2,0],[82,0,0,1,0],[92,0,0,1,1]],"hosted":[[32,0,0,1,0],[75,0,0,1,0],[84,0,0,2,0],[103,0,0,1,0],[111,0,0,3,0],[113,0,0,1,0],[128,0,0,2,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,2,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0]],"able":[[32,0,0,1,0]],"major":[[32,0,0,1,0]],"pkg":[[32,0,0,1,0],[75,0,0,0,1],[79,0,0,0,1],[81,0,0,1,0],[128,0,0,1,0],[141,0,0,1,0]],"anyway":[[32,0,0,1,0]],"filesystem":[[32,0,0,2,0],[141,0,0,1,0],[158,0,0,1,0],[161,0,0,2,0]],"solves":[[32,0,0,1,0]],"openai":[[32,0,0,1,0],[160,0,0,0,1]],"github":[[32,0,0,1,0],[48,0,0,1,2],[65,0,1,1,1],[66,0,0,1,0],[101,0,0,1,0],[127,0,0,2,0]],"aider":[[32,0,0,1,0]],"devin":[[32,0,0,1,0]],"others":[[32,0,0,1,0],[81,0,0,1,0]],"working":[[32,0,0,1,0],[38,0,0,2,1],[75,0,0,1,0],[81,0,0,1,0],[146,0,0,1,0]],"supported":[[32,0,0,1,0]],"closest":[[32,0,0,1,0]],"wins":[[32,0,0,1,0]],"natural":[[32,0,0,1,0],[113,0,0,1,0]],"tell":[[32,0,0,1,0],[38,0,1,0,0],[52,0,0,1,0]],"about":[[32,0,0,1,0],[53,0,0,0,1]],"discoverable":[[32,0,0,2,0],[98,0,0,1,0]],"offline":[[32,0,0,1,0],[33,0,0,1,0],[73,0,0,1,0],[75,0,0,0,2],[79,0,0,1,2],[80,0,0,1,0],[81,0,0,1,0],[82,0,0,1,0],[93,0,1,1,0],[96,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,2,0],[142,0,0,1,1],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0]],"relative":[[33,0,0,1,0],[44,0,0,0,1],[54,0,0,1,0],[59,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[75,0,0,1,0],[77,0,0,1,0],[96,0,0,3,0],[97,0,0,2,0],[98,0,0,1,0],[121,0,0,1,0],[128,0,0,2,0],[129,0,0,1,0],[141,0,0,2,0],[142,0,0,0,1],[152,0,0,1,0]],"quickstart":[[33,0,0,1,1],[45,0,0,0,1],[53,0,0,0,1],[55,0,0,0,3],[56,0,0,1,0],[61,0,0,0,3],[78,0,0,1,0],[82,0,0,1,0],[88,1,1,0,0],[89,1,1,0,0],[90,1,1,0,0],[91,1,1,0,0],[92,1,1,0,1],[93,1,1,0,0],[94,1,1,0,0],[106,0,0,0,1],[107,0,0,0,2],[111,0,0,1,0],[130,0,0,0,4],[136,0,0,0,5],[142,0,0,0,2],[157,0,0,0,1],[158,0,0,0,1]],"meaningful":[[33,0,0,1,0]],"my":[[33,0,0,2,4],[37,0,0,0,2],[38,0,0,0,1],[43,0,0,0,1],[45,0,0,0,1],[53,0,0,0,1],[90,0,0,0,2],[93,0,0,2,1],[98,0,0,0,1],[130,0,0,0,1],[131,0,0,0,2],[141,0,0,0,1],[142,0,0,0,1],[159,0,0,0,1],[160,0,0,0,1]],"local":[[33,0,0,1,0],[61,0,0,2,0],[67,0,1,0,0],[111,0,0,1,0],[146,0,0,1,0],[152,0,0,1,0],[157,0,0,1,0],[163,0,0,1,0]],"skips":[[33,0,0,1,0],[72,0,0,1,0],[73,0,0,2,0],[74,0,0,1,0],[96,0,0,1,0],[98,0,0,1,0]],"those":[[33,0,0,1,0],[51,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[72,0,0,1,0],[77,0,0,1,0],[86,0,0,1,0],[93,0,0,1,0],[98,0,0,1,0],[111,0,0,1,0],[145,0,0,1,0]],"make":[[33,0,0,1,0],[46,0,1,0,0],[47,0,1,0,0],[57,0,0,1,0],[58,0,0,1,0],[70,0,0,1,0],[139,0,0,1,0],[163,0,0,1,0]],"sense":[[33,0,0,1,0],[70,0,0,1,0]],"bash":[[33,0,0,0,1],[34,0,0,0,1],[37,0,0,0,1],[43,0,0,0,1],[48,0,0,0,1],[49,0,0,0,1],[53,0,0,0,1],[61,0,0,0,2],[66,0,0,0,1],[67,0,0,0,1],[68,0,0,0,1],[91,0,0,0,1],[93,0,0,0,1],[95,0,0,0,1],[96,0,0,0,1],[98,0,0,0,1],[101,0,0,0,1],[102,0,0,0,1],[116,0,0,0,1],[161,0,1,0,1]],"summary":[[33,0,0,0,1],[43,0,0,0,2],[45,0,0,0,2],[51,0,0,1,0],[53,0,0,0,1],[66,0,0,1,0],[76,0,0,1,0],[96,0,0,2,0],[99,0,0,0,1],[122,0,0,0,1],[129,0,0,1,0],[131,0,0,0,1],[141,0,0,1,0]],"filter":[[34,0,1,0,0],[44,0,0,0,1],[152,0,0,0,1]],"monorepo":[[34,0,0,1,0]],"many":[[34,0,0,1,0],[67,0,0,1,0],[87,0,0,1,0]],"slice":[[34,0,0,1,0],[76,0,0,1,0],[155,0,0,1,0]],"repeatable":[[34,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[101,0,0,1,0]],"filters":[[34,0,0,1,0],[37,0,0,1,0],[99,0,0,0,1]],"overview":[[34,0,0,1,0]],"too":[[34,0,0,1,0],[54,0,0,1,0],[59,0,0,1,0]],"applied":[[34,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0]],"c15t":[[34,0,0,0,1]],"internal":[[34,0,0,0,1],[64,0,0,1,0],[85,0,0,1,0],[101,0,0,1,0]],"control":[[35,0,0,1,0],[44,0,0,1,0],[56,0,0,1,0],[60,0,1,1,0],[100,0,0,1,0],[104,0,0,1,0],[128,0,0,1,0],[134,0,0,1,0],[137,0,0,1,0],[139,0,1,1,0]],"validation":[[35,0,0,1,0],[79,0,0,1,0],[87,0,0,1,0]],"script":[[35,0,0,2,0],[44,0,0,2,0],[55,0,0,0,1],[61,0,0,1,0],[74,0,0,1,0],[100,0,0,3,0],[136,0,0,0,3],[137,0,0,1,0]],"point":[[35,0,0,1,0],[38,0,0,2,0],[61,0,0,2,0],[104,0,0,1,0],[128,0,0,1,0],[140,0,0,1,0],[152,0,0,1,0]],"tsup":[[35,0,0,1,1]],"scripts":[[35,0,0,1,2],[44,0,0,2,5],[103,0,0,1,0]],"dist":[[35,0,0,0,1],[38,0,0,1,0]],"readme":[[35,0,0,0,1],[38,0,0,1,0],[116,0,0,1,0]],"rm":[[35,0,0,0,3],[148,0,0,0,2]],"promises":[[35,0,0,0,1],[143,0,0,0,1]],"convertallmdx":[[35,0,0,0,2],[44,0,0,0,2],[103,0,0,1,0],[104,0,0,1,1],[105,0,1,0,1],[109,0,0,1,0],[131,0,0,0,2],[142,0,0,1,0]],"generateagentsmd":[[35,0,0,0,1],[36,0,0,0,1],[103,0,0,1,0],[128,0,0,2,1],[141,0,1,0,2],[142,0,1,0,0]],"defaultremarkplugins":[[35,0,0,0,2],[36,0,0,0,1],[44,0,0,0,2],[103,0,0,1,0],[105,0,0,1,2],[106,0,0,0,1],[107,0,0,0,1],[109,0,0,0,2],[131,0,0,0,2],[147,0,0,0,1],[148,0,0,1,0],[151,0,0,0,1],[152,0,0,0,2],[153,0,0,1,0]],"process":[[35,0,0,0,2],[36,0,0,0,2],[44,0,0,0,1],[100,0,0,0,1],[105,0,0,1,0],[143,0,0,0,2],[146,0,0,0,3],[152,0,0,0,1]],"cwd":[[35,0,0,0,2],[44,0,0,0,1],[100,0,0,0,1],[152,0,0,0,1]],"recursive":[[35,0,0,0,1],[143,0,0,0,1]],"force":[[35,0,0,0,2]],"outdir":[[35,0,0,0,1],[36,0,0,0,2],[44,0,0,0,2],[99,0,0,0,1],[100,0,0,0,1],[105,0,0,1,1],[131,0,0,1,4],[132,0,0,1,1],[141,0,0,4,1],[156,0,0,1,3]],"remarkplugins":[[35,0,0,0,1],[36,0,0,0,1],[44,0,0,0,2],[105,0,0,1,1],[107,0,0,0,1],[109,0,0,0,1],[131,0,0,0,1],[151,0,0,0,1],[152,0,0,0,1]],"fast":[[35,0,0,0,1],[36,0,0,0,1],[63,0,0,1,0],[127,0,0,1,0],[163,0,0,1,0]],"bad":[[35,0,0,0,1],[36,0,0,0,1]],"length":[[36,0,0,0,1],[143,0,0,0,1]],"urlpath":[[36,0,0,0,2],[45,0,0,0,2],[46,0,0,0,1],[55,0,0,0,1],[56,0,0,0,1],[134,0,0,0,1],[136,0,0,0,1],[143,0,0,0,2]],"stderr":[[36,0,0,0,1],[99,0,0,1,0],[143,0,0,0,1]],"exit":[[36,0,0,0,1],[95,0,0,1,0],[96,0,0,1,0],[97,0,0,2,0],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,3,0],[102,0,0,1,0],[103,0,0,1,0],[143,0,0,0,1]],"verify":[[37,0,1,0,0],[49,0,1,0,0],[61,0,1,0,0],[92,0,0,0,1]],"publishing":[[37,0,1,0,0],[84,0,0,2,0]],"pack":[[37,0,0,1,1]],"dry":[[37,0,0,1,1]],"check":[[37,0,0,2,0],[45,0,0,1,0],[49,0,0,1,0],[61,0,0,2,0],[110,0,0,1,0],[113,0,0,1,0],[119,0,0,1,0]],"cd":[[37,0,0,0,1],[116,0,0,0,1]],"consuming":[[38,0,1,0,0]],"projects":[[38,0,1,0,0],[115,0,0,1,0]],"discovered":[[38,0,0,1,0],[93,0,0,1,0]],"depends":[[38,0,0,1,0],[75,0,0,1,0],[77,0,0,1,0],[81,0,0,1,0]],"directory":[[38,0,0,1,0],[72,0,0,1,0],[77,0,0,1,0],[96,0,0,1,0],[105,0,0,2,0]],"consumer":[[38,0,0,1,0]],"yours":[[38,0,0,1,0],[80,0,0,1,0]],"recommend":[[38,0,0,1,0]],"snippet":[[38,0,0,1,0]],"consumers":[[38,0,0,1,0]],"their":[[38,0,0,1,0]],"pattern":[[38,0,0,1,0],[111,0,0,2,0]],"re":[[38,0,0,0,1],[101,0,0,1,0],[148,0,0,0,2],[163,0,0,1,0]],"version":[[38,0,0,0,1],[84,0,1,0,0],[124,0,0,1,0],[140,0,1,2,0]],"matched":[[38,0,0,0,1]],"installed":[[38,0,0,0,1],[39,0,0,1,0],[73,0,0,1,0]],"stay":[[38,0,0,0,1],[157,0,0,1,0]],"accurate":[[38,0,0,0,1]],"updates":[[38,0,0,0,1],[127,0,0,1,0]],"understand":[[39,0,0,1,0],[94,0,0,1,0]],"dependency":[[39,0,0,1,0],[84,0,0,1,0],[157,0,0,1,0]],"itself":[[39,0,0,1,0]],"web":[[39,0,0,1,0],[56,0,0,1,0],[111,0,0,1,0],[133,0,0,2,0],[134,0,0,1,0]],"access":[[39,0,0,1,0]],"ide":[[39,0,0,1,0]],"assistants":[[39,0,0,1,0]],"air":[[39,0,0,1,0]],"gapped":[[39,0,0,1,0]],"environments":[[39,0,0,1,0],[54,0,0,1,0]],"goal":[[39,0,0,1,0]],"emit":[[39,0,0,1,0],[72,0,0,1,0]],"shapes":[[39,0,0,1,0],[72,0,0,1,0]],"produce":[[41,0,0,1,0],[45,0,0,1,0],[96,0,0,1,0],[137,0,0,1,0],[142,0,0,1,0]],"astro":[[41,0,0,1,0],[44,0,0,1,0],[54,0,0,0,1],[57,0,0,2,0],[72,0,0,1,0],[76,0,0,1,0],[79,0,0,1,0],[84,0,0,2,0],[136,0,0,1,0]],"handles":[[41,0,0,1,0],[51,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[87,0,0,1,0],[130,0,0,0,1]],"pub":[[42,0,0,0,3]],"sitemap":[[42,0,0,0,1],[46,0,0,3,0],[47,0,0,1,0],[49,0,0,4,2],[52,0,0,2,0],[53,0,0,0,2],[54,0,0,3,4],[57,0,0,3,0],[58,0,0,2,0],[59,0,1,2,5],[61,0,0,1,3],[62,0,0,5,0],[71,0,0,0,1],[72,0,0,3,0],[74,0,0,3,0],[77,0,0,1,0],[79,0,0,0,1],[91,0,0,2,0],[92,0,0,0,2],[96,0,0,2,0],[99,0,0,4,2],[128,0,0,2,0],[129,0,0,4,0],[132,0,0,2,2],[134,0,0,1,0],[135,0,0,2,4],[137,0,0,1,0],[138,0,0,1,0]],"xml":[[42,0,0,0,1],[46,0,0,1,0],[49,0,0,2,2],[52,0,0,1,0],[53,0,0,0,1],[54,0,0,3,2],[57,0,0,1,0],[58,0,0,1,0],[59,0,1,1,3],[61,0,0,0,2],[62,0,0,2,0],[72,0,0,1,0],[74,0,0,1,0],[91,0,0,1,0],[92,0,0,0,1],[96,0,0,1,0],[99,0,0,1,1],[128,0,0,1,0],[129,0,0,2,0],[132,0,0,1,1],[135,0,0,0,2]],"gen":[[42,0,0,0,4]],"discovery":[[42,0,0,0,1],[43,0,0,1,0],[46,0,0,2,0],[49,0,0,1,0],[52,0,0,1,0],[54,0,1,0,0],[74,0,0,1,0],[75,0,0,0,1],[77,0,0,1,0],[81,0,0,1,0],[132,0,0,1,0],[134,0,0,1,0],[141,0,0,1,0]],"off":[[43,0,1,0,0],[96,0,0,1,0],[97,0,0,1,0],[101,0,0,1,0]],"single":[[43,0,0,2,0],[79,0,0,1,0],[80,0,0,2,0],[81,0,0,1,0],[82,0,0,1,0],[97,0,0,1,0],[99,0,0,1,0]],"together":[[43,0,0,1,0],[45,0,0,1,0],[127,0,0,1,0]],"generates":[[43,0,0,1,0],[81,0,0,1,0]],"builds":[[43,0,0,1,0],[44,0,0,1,0],[81,0,0,1,0],[146,0,0,1,0],[154,0,0,1,0]],"resolves":[[43,0,0,1,0],[81,0,0,1,0]],"paths":[[43,0,0,1,0],[44,0,0,0,1],[53,0,0,1,0],[58,0,0,1,0],[65,0,0,0,1],[67,0,0,1,0],[72,0,0,1,0],[101,0,0,1,0],[103,0,0,1,0],[128,0,0,1,0],[138,0,0,1,0],[142,0,0,0,1],[157,0,0,1,0],[163,0,0,1,0]],"listed":[[43,0,0,1,0]],"inspected":[[43,0,0,1,0]],"detail":[[43,0,0,1,0]],"under":[[43,0,0,1,0],[46,0,0,1,0],[53,0,0,1,0],[67,0,0,1,0],[77,0,0,1,0],[96,0,0,1,0],[101,0,0,1,0],[111,0,0,2,0],[121,0,0,1,0],[132,0,0,1,0],[141,0,0,1,0],[156,0,0,1,0]],"base":[[43,0,0,0,1],[44,0,0,1,0],[53,0,0,0,1],[61,0,0,2,0],[91,0,0,0,1],[96,0,0,2,0],[103,0,0,1,0],[146,0,1,2,2]],"simplest":[[44,0,0,1,0]],"setup":[[44,0,0,1,0],[46,0,0,1,0],[54,0,0,1,0],[65,0,0,0,1],[146,0,0,1,0]],"stage":[[44,0,0,1,0],[45,0,0,1,0],[77,0,0,1,0],[106,0,0,1,0]],"rerun":[[44,0,0,1,0]],"independently":[[44,0,0,1,0],[76,0,0,1,0]],"splitting":[[44,0,0,1,0],[156,0,0,1,0]],"separate":[[44,0,0,1,0],[91,0,0,1,0],[155,0,0,1,0]],"canonical":[[44,0,0,1,0],[46,0,0,2,0],[52,0,0,2,0],[55,0,0,2,1],[56,0,0,2,0],[57,0,0,1,0],[61,0,0,1,0],[62,0,0,2,0],[96,0,0,1,0],[129,0,0,1,0],[134,0,0,3,0],[136,0,0,1,1],[137,0,0,3,0]],"remarkinclude":[[44,0,0,1,2],[105,0,0,1,2],[109,0,0,2,2],[131,0,0,0,2],[147,0,0,0,1],[151,0,1,0,1],[153,0,0,1,0]],"enables":[[44,0,0,1,0]],"foo":[[44,0,0,1,0],[72,0,0,1,0],[76,0,0,1,0],[137,0,0,3,0]],"style":[[44,0,0,1,0],[159,0,0,1,0]],"partial":[[44,0,0,1,0],[151,0,0,1,0]],"expansion":[[44,0,0,1,0]],"basepath":[[44,0,0,1,2],[152,0,1,1,1]],"swap":[[44,0,0,1,0]],"remarktypetabletomarkdown":[[44,0,0,1,3],[147,0,0,0,1],[148,0,0,1,1],[152,0,1,0,3]],"needed":[[44,0,0,1,0],[59,0,0,1,0],[135,0,0,1,0],[152,0,0,1,0]],"plugins":[[44,0,0,1,0],[71,0,0,1,0],[76,0,0,1,0],[103,0,0,1,0],[109,0,1,1,0],[147,1,1,0,0],[148,1,1,0,0],[149,1,1,0,0],[150,1,1,0,0],[151,1,2,0,0],[152,1,2,0,0],[153,1,1,1,0]],"mdxtomarkdownoptions":[[44,0,0,0,2]],"reporoot":[[44,0,0,0,4]],"resolve":[[44,0,0,0,1],[61,0,0,1,0],[77,0,0,1,0],[91,0,0,1,0],[142,0,0,1,0],[152,0,0,1,0]],"typetableplugin":[[44,0,0,0,2]],"nonnullable":[[44,0,0,0,1]],"enrichfrontmatterfromgit":[[44,0,0,0,1],[105,0,0,1,1],[106,0,0,0,1]],"configure":[[45,0,1,0,0]],"let":[[45,0,0,1,0],[79,0,0,1,0]],"catches":[[45,0,0,1,0],[64,0,1,0,0],[119,0,0,1,0],[120,0,0,1,0]],"typos":[[45,0,0,1,0]],"resolution":[[45,0,0,1,0],[143,0,0,1,0],[150,0,0,2,0]],"definedocsconfig":[[45,0,0,0,2]],"export":[[45,0,0,0,1],[56,0,0,0,1],[59,0,0,0,1],[148,0,0,1,0]],"bullets":[[45,0,0,0,1]],"beststartingpoints":[[45,0,0,0,1]],"pieces":[[46,0,0,1,0]],"robots":[[46,0,0,2,0],[47,0,0,1,0],[49,0,0,1,0],[51,0,0,1,0],[52,0,0,2,0],[53,0,0,1,1],[54,0,0,1,1],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,3,0],[58,0,0,2,0],[59,0,1,2,2],[60,0,0,1,0],[61,0,0,2,0],[62,0,0,4,0],[71,0,0,0,1],[72,0,0,2,0],[74,0,0,2,0],[77,0,0,1,0],[91,0,0,1,0],[92,0,0,0,1],[96,0,0,2,0],[99,0,0,3,1],[128,0,0,1,0],[129,0,0,1,0],[132,0,0,1,1],[134,0,0,1,0],[135,0,0,1,2],[137,0,0,1,0],[138,0,0,1,0]],"available":[[46,0,0,1,0],[103,0,0,1,0]],"ld":[[46,0,0,2,0],[51,0,0,1,0],[52,0,0,2,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,1,3,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,2,0],[62,0,0,2,0],[103,0,0,1,0],[136,0,0,1,4],[137,0,0,2,0]],"alternate":[[46,0,0,1,0],[52,0,0,1,0],[55,0,0,1,1],[62,0,0,1,0],[103,0,0,1,0],[136,0,0,1,1],[137,0,0,1,0]],"known":[[46,0,0,1,0],[56,0,0,1,0],[77,0,0,1,0],[92,0,0,0,1],[137,0,0,1,0],[138,0,0,1,0]],"ai":[[46,0,0,1,0],[56,0,0,1,0],[60,0,0,1,0],[62,0,0,1,0],[75,0,0,0,1],[76,0,0,1,0],[79,0,0,0,1],[84,0,0,1,0],[92,0,0,0,1],[129,0,0,1,0],[134,0,0,3,0],[137,0,0,2,0],[138,0,0,1,0],[139,0,0,1,0],[160,0,0,1,5],[161,0,0,1,0]],"user":[[46,0,0,1,0],[56,0,0,2,0],[60,0,0,2,0],[61,0,0,0,2],[62,0,0,1,0],[76,0,0,1,0],[92,0,0,0,1],[134,0,0,3,0],[137,0,0,2,0],[138,0,0,1,0],[139,0,0,2,0]],"direct":[[46,0,0,1,0],[56,0,0,1,0],[92,0,0,0,1],[137,0,0,1,0]],"preserve":[[46,0,0,1,0],[92,0,0,0,1]],"last":[[46,0,0,1,0],[52,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[69,0,0,1,0],[134,0,0,1,0],[137,0,0,1,0],[150,0,0,1,0]],"updated":[[46,0,0,1,0],[52,0,0,1,0],[56,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[134,0,0,1,0],[137,0,0,1,0]],"provides":[[46,0,0,1,0],[86,0,0,1,0]],"roll":[[46,0,0,1,0]],"request":[[46,0,0,3,4],[47,0,0,2,0],[54,0,0,1,1],[56,0,0,2,6],[59,0,0,1,3],[61,0,0,1,0],[65,0,0,0,1],[76,0,0,1,0],[103,0,0,1,0],[133,0,0,1,0],[134,0,0,1,4],[135,0,0,1,2],[162,0,0,1,0]],"detection":[[46,0,0,1,0]],"aliases":[[46,0,0,1,0],[56,0,0,1,0],[137,0,0,1,0]],"escaping":[[46,0,0,1,0]],"guide":[[46,0,0,1,0],[51,0,0,1,0],[137,0,0,1,0]],"optimize":[[46,0,0,1,0],[50,0,0,1,0],[51,1,1,0,0],[52,1,1,0,0],[53,1,1,0,0],[54,1,1,0,0],[55,1,1,0,0],[56,1,1,0,0],[57,1,1,0,0],[58,1,1,0,0],[59,1,1,0,0],[60,1,1,0,0],[61,1,1,0,0],[62,1,1,0,0],[94,0,0,1,0],[137,0,0,1,0]],"core":[[46,0,0,1,0],[94,0,0,1,0]],"hook":[[46,0,0,2,0],[47,0,0,1,0],[49,0,0,1,0],[67,0,1,1,0]],"any":[[46,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[84,0,0,1,0],[101,0,0,1,0],[127,0,0,1,0],[130,0,0,0,1],[133,0,0,1,0],[151,0,0,1,0],[153,0,0,1,0],[159,0,0,1,0]],"put":[[46,0,0,1,0],[56,0,0,1,0]],"normal":[[46,0,0,1,0],[47,0,0,1,0],[92,0,0,0,1]],"browsers":[[46,0,0,1,0],[139,0,0,1,0]],"continue":[[46,0,0,1,0]],"receive":[[46,0,0,2,0],[52,0,0,1,0]],"oriented":[[46,0,0,1,0],[56,0,0,1,0],[61,0,0,1,0],[134,0,0,2,0]],"requests":[[46,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[61,0,0,1,0],[76,0,0,1,0],[92,0,0,0,1],[134,0,0,1,0]],"charset":[[46,0,0,1,0],[49,0,0,1,0],[56,0,0,1,0],[61,0,0,1,0],[92,0,0,0,1],[134,0,0,1,0]],"utf":[[46,0,0,1,0],[49,0,0,1,0],[56,0,0,1,0],[61,0,0,1,0],[92,0,0,0,1],[134,0,0,1,0]],"implementing":[[46,0,0,1,0]],"codebase":[[46,0,0,1,0]],"response":[[46,0,0,1,6],[49,0,0,2,0],[56,0,0,1,1],[57,0,0,1,0],[59,0,0,0,1],[103,0,0,1,0],[133,0,0,2,0],[134,0,0,1,3],[137,0,0,2,0],[160,0,0,3,1]],"intercept":[[46,0,0,1,0],[47,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0]],"createagentmarkdownresponse":[[46,0,0,0,2],[56,0,0,1,2],[60,0,0,1,0],[92,0,0,0,1],[133,0,0,0,1],[134,0,1,0,1],[137,0,0,1,0]],"method":[[46,0,0,0,2],[56,0,0,0,2],[134,0,0,0,2]],"headers":[[46,0,0,0,4],[56,0,0,1,2],[60,0,0,1,0],[62,0,0,1,0],[134,0,0,1,2],[137,0,0,2,0],[162,0,0,1,0]],"object":[[46,0,0,0,1],[56,0,0,0,1],[97,0,0,1,0],[99,0,0,1,0],[126,0,0,0,1],[134,0,0,0,1],[137,0,0,1,0],[143,0,0,1,0]],"fromentries":[[46,0,0,0,1],[56,0,0,0,1],[134,0,0,0,1]],"requestorigin":[[46,0,0,0,1],[54,0,0,0,5],[56,0,0,0,1],[59,0,0,1,5],[134,0,0,0,1],[135,0,0,1,2]],"origin":[[46,0,0,0,1],[54,0,0,0,1],[56,0,0,0,1],[57,0,0,1,0],[58,0,0,1,0],[59,0,1,1,1],[61,0,0,1,0],[134,0,0,0,1],[135,0,0,1,2],[137,0,0,1,0]],"readmarkdownfile":[[46,0,0,0,1],[56,0,0,1,1],[134,0,0,1,1]],"readgeneratedfile":[[46,0,0,0,1],[56,0,0,0,1],[134,0,0,0,1]],"filepath":[[46,0,0,0,1],[56,0,0,0,1],[134,0,0,0,1]],"status":[[46,0,0,0,2]],"sponse":[[47,0,0,1,0]],"wiring":[[47,0,0,1,0],[127,0,0,1,0],[144,0,0,1,0]],"test":[[47,0,0,1,0],[111,0,0,2,0]],"remote":[[48,0,1,0,0]],"malformed":[[48,0,0,1,0]],"format":[[48,0,0,1,1],[65,0,0,1,1],[66,0,0,2,1],[97,0,0,2,0],[101,0,0,2,0],[113,0,0,1,0],[127,0,0,2,0],[155,0,0,1,0]],"inline":[[48,0,0,1,0],[65,0,0,1,0],[95,0,0,1,0]],"annotations":[[48,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0]],"pr":[[48,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0]],"automation":[[48,0,0,1,0]],"stats":[[48,0,0,1,0],[99,0,0,0,1]],"we":[[48,0,0,1,0],[111,0,1,0,0],[112,0,1,0,0],[113,0,1,0,0]],"expect":[[48,0,0,1,0]],"orgs":[[48,0,0,1,0]],"hosting":[[48,0,0,1,0],[86,0,0,1,0]],"repos":[[48,0,0,1,0],[87,0,0,1,0]],"documents":[[48,0,0,1,0],[87,0,0,1,0]],"pulls":[[48,0,0,1,0]],"clone":[[48,0,0,0,1]],"depth":[[48,0,0,0,1]],"com":[[48,0,0,0,1]],"acme":[[48,0,0,0,1]],"clean":[[49,0,0,1,0],[104,0,0,1,0],[108,0,0,1,0],[148,0,0,0,1],[150,0,0,1,0]],"home":[[49,0,0,1,0]],"mention":[[49,0,0,1,0]],"merge":[[49,0,0,1,0],[74,0,0,1,0],[91,0,0,1,0],[99,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0],[135,0,0,0,1]],"serving":[[49,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[74,0,0,1,0],[99,0,0,1,0],[132,0,0,1,0]],"server":[[49,0,0,1,0],[56,0,0,1,0],[57,0,0,3,0],[76,0,0,1,0]],"running":[[49,0,0,1,0],[67,0,0,1,0],[80,0,0,1,0]],"curl":[[49,0,0,0,4],[61,0,0,0,7],[92,0,0,0,1]],"localhost":[[49,0,0,0,4],[61,0,0,1,8],[92,0,0,0,1]],"evals":[[50,0,0,1,0],[51,0,0,2,0],[110,1,1,0,0],[111,1,1,0,0],[112,1,1,0,0],[113,1,1,0,0],[114,1,1,0,0],[115,1,1,0,0],[116,1,2,1,3],[129,0,0,1,0]],"set":[[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,1,0],[89,0,0,1,0],[114,0,0,1,0],[123,0,0,1,0],[139,0,0,1,0]],"mirrors":[[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,1,0],[62,0,0,2,0],[85,0,0,1,0],[105,0,0,1,0],[111,0,0,1,0]],"sitemaps":[[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,2,0],[62,0,0,1,0]],"audit":[[51,0,0,1,0],[52,0,0,1,0],[53,0,0,1,0],[54,0,0,1,0],[55,0,0,1,0],[56,0,0,1,0],[57,0,0,1,0],[58,0,0,1,0],[59,0,0,1,0],[60,0,0,1,0],[61,0,0,5,1],[62,0,0,1,0]],"find":[[51,0,0,1,0],[55,0,0,0,1],[93,0,0,1,0],[161,0,0,1,0]],"fetch":[[51,0,0,1,0],[56,0,0,0,2],[57,0,0,1,0],[73,0,0,1,0],[75,0,0,1,1],[81,0,0,1,0]],"cite":[[51,0,0,1,0],[159,0,0,1,0]],"wires":[[51,0,0,1,0]],"based":[[51,0,0,1,0]],"benchmark":[[51,0,0,1,0],[111,0,1,2,0],[112,0,1,0,0],[113,0,0,1,0],[115,0,0,1,0],[129,0,0,1,0]],"question":[[51,0,0,1,0],[115,0,1,0,0]],"around":[[51,0,0,1,0],[160,0,0,1,0]],"larger":[[51,0,0,1,0],[115,0,0,2,0]],"corpus":[[51,0,0,1,0],[111,0,0,1,0],[115,0,0,2,0]],"scaling":[[51,0,0,1,0]],"four":[[52,0,0,1,0],[111,0,0,1,0],[128,0,0,1,0]],"layers":[[52,0,0,1,0],[154,0,0,1,0]],"exists":[[52,0,0,1,0]],"retrieval":[[52,0,0,1,0]],"mirror":[[52,0,0,1,0],[53,0,0,1,0],[128,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0]],"instead":[[52,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[161,0,0,1,0]],"structured":[[52,0,0,1,0],[74,0,0,1,0],[129,0,0,1,0]],"extract":[[52,0,0,1,0]],"identity":[[52,0,0,1,0]],"guessing":[[52,0,0,1,0]],"dom":[[52,0,0,1,0]],"attribution":[[52,0,0,1,0]],"freshness":[[52,0,0,1,0],[53,0,0,1,0],[132,0,0,1,0]],"bridge":[[53,0,0,1,0]],"between":[[53,0,0,1,0],[153,0,0,1,0]],"descriptions":[[53,0,0,1,0],[129,0,0,1,0],[145,0,0,2,0]],"dates":[[53,0,0,1,0],[129,0,0,1,0],[132,0,0,1,0]],"regenerators":[[54,0,0,1,0],[57,0,0,1,0],[59,0,0,1,0]],"rather":[[54,0,0,1,0]],"few":[[54,0,0,1,0],[76,0,0,1,0]],"staging":[[54,0,0,1,0],[59,0,0,1,0],[135,0,0,1,0]],"honest":[[54,0,0,1,0]],"rebuilding":[[54,0,0,1,0]],"marketing":[[54,0,0,1,0],[74,0,0,1,0],[91,0,0,1,0],[99,0,0,1,0],[129,0,0,1,0]],"blog":[[54,0,0,1,0],[74,0,0,1,0],[91,0,0,1,0],[99,0,0,1,0],[129,0,0,1,0]],"changelog":[[54,0,0,1,0],[74,0,0,1,0],[91,0,0,1,0],[99,0,0,1,0],[101,0,0,2,0],[121,0,0,2,0],[122,0,0,0,1],[124,0,1,0,0],[129,0,0,1,0]],"through":[[54,0,0,1,0],[77,0,0,1,0],[91,0,0,1,0],[120,0,0,1,0],[134,0,0,1,0],[157,0,0,1,0]],"regenerator":[[54,0,0,1,0]],"merges":[[54,0,0,1,0]],"rebased":[[54,0,0,1,0],[137,0,0,1,0]],"straight":[[54,0,0,1,0]],"versions":[[54,0,0,1,0]],"etc":[[54,0,0,1,1],[93,0,0,1,0],[99,0,0,1,0],[136,0,0,1,0],[141,0,0,1,0]],"audits":[[54,0,0,1,0]],"especially":[[54,0,0,1,0]],"audited":[[54,0,0,1,0]],"endpoint":[[54,0,0,0,1],[57,0,0,1,0]],"cloudflare":[[54,0,0,0,1],[56,0,0,1,1],[57,0,0,1,0],[76,0,0,1,0],[133,0,0,1,0],[157,0,0,1,0],[160,0,0,1,2],[162,0,0,1,0]],"worker":[[54,0,0,0,1],[57,0,0,1,0]],"createrobotstxtresponse":[[54,0,0,0,2],[59,0,0,0,3],[133,0,0,0,1],[135,0,1,0,1],[137,0,0,1,0]],"createsitemapmarkdownresponse":[[54,0,0,0,2],[59,0,0,0,2],[133,0,0,0,1],[135,0,1,0,0],[137,0,0,1,0]],"createsitemapxmlresponse":[[54,0,0,0,3],[59,0,0,0,2],[133,0,0,0,1],[135,0,1,0,1],[137,0,0,1,0]],"pathname":[[54,0,0,0,5],[59,0,0,0,1]],"marketingpages":[[54,0,0,0,1],[135,0,0,0,1]],"blogpages":[[54,0,0,0,1]],"org":[[55,0,0,1,0],[136,0,0,0,1],[137,0,0,1,0],[146,0,0,1,0]],"head":[[55,0,0,1,0],[136,0,0,1,3],[137,0,0,1,0]],"renderjsonld":[[55,0,0,1,2],[133,0,0,0,1],[137,0,0,1,0]],"typed":[[55,0,0,1,0],[64,0,0,1,0],[69,0,0,1,0],[136,0,0,0,1]],"renderjsonldscript":[[55,0,0,1,2],[133,0,0,0,1],[137,0,0,1,0]],"expects":[[55,0,0,1,0],[61,0,0,1,0]],"modified":[[55,0,0,1,0]],"date":[[55,0,0,1,0],[124,0,0,2,0]],"breadcrumbs":[[55,0,0,1,0]],"scraping":[[55,0,0,1,0]],"agentmanifest":[[55,0,0,0,4]],"jsonld":[[55,0,0,0,1]],"rel":[[55,0,0,0,2],[56,0,0,1,0],[134,0,0,1,0],[136,0,0,0,2]],"handlers":[[56,0,0,1,0],[76,0,0,1,0],[84,0,0,1,0]],"null":[[56,0,0,1,1],[59,0,0,0,2],[60,0,0,1,0],[134,0,0,3,0],[139,0,0,1,0],[143,0,0,0,1]],"values":[[56,0,0,1,0],[100,0,0,1,0]],"respected":[[56,0,0,1,0]],"gptbot":[[56,0,0,1,0],[134,0,0,1,0]],"claudebot":[[56,0,0,1,0],[134,0,0,1,0]],"bingbot":[[56,0,0,1,0],[134,0,0,1,0]],"amazonbot":[[56,0,0,1,0],[134,0,0,1,0]],"metaexternalagent":[[56,0,0,1,0],[134,0,0,1,0]],"perplexitybot":[[56,0,0,1,0],[134,0,0,1,0]],"mistralbot":[[56,0,0,1,0],[134,0,0,1,0]],"applebot":[[56,0,0,1,0],[134,0,0,1,0]],"bytespider":[[56,0,0,1,0],[134,0,0,1,0]],"youbot":[[56,0,0,1,0],[134,0,0,1,0]],"such":[[56,0,0,1,0]],"injected":[[56,0,0,1,0]],"discard":[[56,0,0,1,0]],"vary":[[56,0,0,1,0],[60,0,0,1,0],[134,0,0,1,0],[137,0,0,1,0],[139,0,0,1,0]],"cache":[[56,0,0,1,0],[60,0,1,2,0],[134,0,0,1,0],[137,0,0,1,0],[139,0,1,2,0]],"max":[[56,0,0,1,0],[60,0,0,1,0],[65,0,0,1,1],[67,0,0,0,1],[101,0,0,1,0],[134,0,0,1,0],[139,0,0,1,0]],"age":[[56,0,0,1,0],[60,0,0,1,0],[134,0,0,1,0],[139,0,0,1,0]],"revalidate":[[56,0,0,1,0],[60,0,0,1,0],[134,0,0,1,0],[139,0,0,1,0]],"async":[[56,0,0,1,2],[134,0,0,1,1]],"vercel":[[56,0,0,1,1],[61,0,0,1,1],[132,0,0,1,0],[133,0,0,1,0],[157,0,0,1,0],[160,0,0,0,2],[161,0,0,1,0],[162,0,0,1,0]],"edge":[[56,0,0,2,1],[57,0,0,1,0],[85,0,0,1,0],[133,0,0,2,0],[154,0,0,1,0],[157,0,0,1,0],[163,0,0,1,0]],"workers":[[56,0,0,1,0],[57,0,0,1,0],[76,0,0,1,0],[133,0,0,1,0],[160,0,0,0,1]],"logic":[[56,0,0,1,0],[76,0,0,1,0],[143,0,0,1,0]],"wherever":[[56,0,0,1,0],[76,0,0,1,0]],"usually":[[56,0,0,1,0],[57,0,0,1,0],[69,0,0,1,0],[89,0,0,1,0],[105,0,0,1,0],[127,0,0,1,0],[153,0,0,1,0]],"handlerequest":[[56,0,0,0,1]],"promise":[[56,0,0,0,1]],"disk":[[56,0,0,0,1],[73,0,0,1,0],[74,0,0,1,0],[106,0,0,1,0],[110,0,0,1,0]],"kv":[[56,0,0,0,1],[57,0,0,1,0],[162,0,0,2,0]],"r2":[[56,0,0,0,1],[57,0,0,1,0]],"asset":[[56,0,0,0,2],[57,0,0,2,0],[58,0,0,1,0]],"binding":[[56,0,0,0,1],[57,0,0,1,0],[160,0,0,1,0]],"nuxt":[[57,0,0,1,0]],"catch":[[57,0,0,1,0],[67,0,0,1,0],[118,0,0,1,0]],"express":[[57,0,0,1,0]],"hono":[[57,0,0,1,0]],"fastify":[[57,0,0,1,0]],"rebase":[[57,0,0,1,0]],"either":[[57,0,0,1,0],[58,0,0,1,0],[69,0,0,1,0],[96,0,0,1,0]],"delete":[[57,0,0,1,0],[58,0,0,1,0],[69,0,0,1,0]],"always":[[57,0,0,1,0],[58,0,0,1,0],[113,0,0,1,0],[131,0,0,1,0]],"sure":[[57,0,0,1,0],[58,0,0,1,0],[139,0,0,1,0]],"registered":[[57,0,0,1,0],[58,0,0,1,0]],"ahead":[[57,0,0,1,0],[58,0,0,1,0]],"rewrite":[[58,0,0,1,0]],"leaves":[[58,0,0,1,0],[76,0,0,1,0],[134,0,0,1,0]],"artifact":[[58,0,0,1,0],[66,0,0,1,0],[71,0,0,1,0],[82,0,0,1,0],[98,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[138,0,0,1,0]],"alone":[[58,0,0,1,0],[134,0,0,1,0]],"loc":[[59,0,0,1,0],[135,0,0,1,0]],"requires":[[59,0,0,1,0]],"directive":[[59,0,0,1,0],[60,0,0,1,0],[134,0,0,1,0],[139,0,0,1,0]],"conventionally":[[59,0,0,1,0]],"cannot":[[59,0,0,1,0]],"assets":[[59,0,0,2,0]],"previews":[[59,0,0,1,0]],"advertise":[[59,0,0,1,0]],"right":[[59,0,0,1,0],[111,0,0,1,0],[113,0,0,1,0],[155,0,0,2,0],[158,0,0,1,0]],"rebuild":[[59,0,0,1,0]],"served":[[59,0,0,1,0],[73,0,0,1,0]],"rewriting":[[59,0,0,1,0],[138,0,0,1,0]],"handleagentartifact":[[59,0,0,0,1]],"switch":[[59,0,0,0,1]],"case":[[59,0,0,0,6]],"sitemapurlpath":[[59,0,0,0,1],[135,0,0,0,1]],"cdn":[[60,0,1,2,0],[139,0,1,2,0]],"adds":[[60,0,0,1,0],[105,0,0,1,0],[113,0,0,1,0]],"pair":[[60,0,0,1,0],[87,0,0,1,0],[109,0,0,1,0],[142,0,0,1,0]],"detected":[[60,0,0,1,0],[134,0,0,1,0]],"shard":[[60,0,0,1,0]],"entries":[[60,0,0,1,0],[137,0,0,1,0]],"will":[[60,0,0,1,0],[76,0,0,1,0],[92,0,0,1,0]],"cached":[[60,0,0,1,0],[139,0,0,1,0]],"vice":[[60,0,0,1,0]],"versa":[[60,0,0,1,0]],"override":[[60,0,0,1,0],[134,0,0,1,0],[136,0,0,0,1],[138,0,0,1,0],[139,0,0,1,0],[146,0,0,1,0],[152,0,0,1,0]],"cachecontrol":[[60,0,0,2,0],[134,0,0,2,0],[139,0,0,2,0]],"omit":[[60,0,0,1,0],[134,0,0,1,0],[139,0,0,1,0],[153,0,0,1,0]],"useful":[[60,0,0,1,0],[143,0,0,1,0]],"caching":[[60,0,0,1,0],[139,0,0,1,0]],"band":[[60,0,0,1,0]],"locally":[[61,0,1,0,0]],"expected":[[61,0,0,1,0]],"results":[[61,0,0,1,0],[155,0,0,1,0],[157,0,0,1,2]],"existing":[[61,0,0,1,0],[153,0,0,1,0]],"application":[[61,0,0,1,0],[137,0,0,1,0]],"against":[[61,0,0,2,0],[88,0,0,1,0],[89,0,0,1,0],[90,0,0,1,0],[91,0,0,1,0],[92,0,0,1,0],[93,0,0,1,0],[94,0,0,1,0],[101,0,0,1,0],[110,0,0,1,0],[121,0,0,1,0]],"reports":[[61,0,0,1,0],[91,0,0,1,0]],"broken":[[61,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[77,0,0,1,0]],"whether":[[61,0,0,1,0],[111,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0]],"production":[[61,0,0,1,0],[162,0,0,1,0]],"matches":[[61,0,0,1,0],[77,0,0,1,0],[80,0,0,1,0],[157,0,0,2,0],[163,0,0,1,0]],"chatgpt":[[61,0,0,0,1],[134,0,0,1,0]],"minimal":[[62,0,1,0,0]],"checklist":[[62,0,1,0,0]],"bodies":[[62,0,0,1,0],[162,0,0,1,0]],"requested":[[62,0,0,1,0],[137,0,0,1,0]],"validate":[[63,1,1,0,0],[64,1,1,0,0],[65,1,1,0,0],[66,1,1,0,0],[67,1,1,0,0],[68,1,1,0,0],[69,1,1,1,0],[77,0,0,1,0],[101,0,0,1,0],[106,0,0,1,0],[127,0,0,1,0]],"issues":[[63,0,0,1,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,2,0],[68,0,0,1,0],[69,0,0,1,0],[117,0,0,1,0]],"prs":[[63,0,0,2,0],[64,0,0,1,0],[65,0,0,1,0],[66,0,0,1,0],[67,0,0,1,0],[68,0,0,1,0],[69,0,0,1,0],[117,0,0,1,0]],"exits":[[63,0,0,1,0]],"zero":[[63,0,0,1,0],[80,0,0,1,0],[101,0,0,1,0]],"errors":[[63,0,0,1,0],[65,0,0,1,0],[99,0,0,1,0],[101,0,0,3,0],[122,0,0,0,1],[127,0,0,1,0]],"would":[[63,0,0,1,0],[141,0,0,1,0]],"otherwise":[[63,0,0,1,0],[140,0,0,1,0]],"blow":[[63,0,0,1,0]],"later":[[63,0,0,1,0]],"rule":[[64,0,0,2,0],[101,0,0,1,0],[119,0,0,1,0],[120,0,0,1,0],[122,0,0,1,1]],"pointing":[[64,0,0,1,0],[141,0,0,1,0]],"placeholders":[[64,0,0,1,0],[147,0,0,1,0],[148,0,0,1,0],[150,0,0,1,0]],"left":[[64,0,0,1,0]],"actions":[[65,0,1,0,1],[127,0,0,1,0]],"upgrades":[[65,0,0,1,0],[119,0,0,1,0]],"strict":[[65,0,0,1,0],[126,0,0,1,0]],"makes":[[65,0,0,1,0]],"remaining":[[65,0,0,1,0]],"job":[[65,0,0,1,0],[68,0,0,1,0],[84,0,0,1,0]],"pull":[[65,0,0,0,1]],"jobs":[[65,0,0,0,1]],"ubuntu":[[65,0,0,0,1]],"latest":[[65,0,0,0,1]],"checkout":[[65,0,0,0,1]],"v4":[[65,0,0,0,1]],"oven":[[65,0,0,0,1]],"sh":[[65,0,0,0,1],[67,0,0,0,1]],"v2":[[65,0,0,0,1]],"providers":[[66,0,1,0,0]],"speak":[[66,0,0,1,0]],"includes":[[66,0,0,1,0],[68,0,0,1,0],[109,0,0,1,0],[110,0,0,1,0],[144,0,0,1,0]],"counts":[[66,0,0,1,0]],"pipe":[[66,0,0,1,0],[126,0,0,0,1]],"provider":[[66,0,0,1,0],[154,0,0,1,0],[160,0,1,1,0]],"reporter":[[66,0,0,1,0]],"post":[[66,0,0,1,0]],"comment":[[66,0,0,1,0]],"upload":[[66,0,0,1,0]],"report":[[66,0,0,0,1],[101,0,0,2,0]],"pre":[[67,0,1,1,0],[161,0,0,1,0]],"push":[[67,0,1,1,0]],"husky":[[67,0,0,1,0]],"limiting":[[67,0,0,1,0]],"scan":[[67,0,0,1,0]],"changed":[[67,0,0,1,0]],"repeated":[[67,0,0,1,0]],"ignore":[[67,0,0,1,0],[101,0,0,3,0],[121,0,0,2,0]],"globs":[[67,0,0,1,0]],"skip":[[67,0,0,1,0],[77,0,0,1,0],[101,0,0,1,0],[153,0,0,1,0]],"stale":[[67,0,0,1,0],[69,0,0,1,0],[127,0,0,1,0],[140,0,0,1,0]],"usr":[[67,0,0,0,1]],"bin":[[67,0,0,0,1]],"env":[[67,0,0,0,1],[146,0,0,1,3],[160,0,0,1,0]],"noisily":[[68,0,0,1,0]],"specifically":[[68,0,0,1,0]],"problems":[[68,0,0,1,0]],"line":[[68,0,0,1,0]],"much":[[68,0,0,1,0]],"easier":[[68,0,0,1,0]],"debug":[[68,0,0,1,0]],"fix":[[69,0,1,1,0],[153,0,0,1,0]],"lot":[[69,0,0,1,0]],"bug":[[69,0,0,2,0],[77,0,0,1,0],[127,0,0,1,0]],"move":[[69,0,0,1,0],[127,0,0,1,0]],"mental":[[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[78,0,0,1,0],[82,0,0,1,0],[130,0,0,0,2],[142,0,0,0,1]],"model":[[70,0,0,1,0],[71,0,0,1,0],[72,0,0,1,0],[73,0,0,1,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[78,0,0,1,0],[82,0,0,1,0],[113,0,0,3,0],[116,0,0,0,1],[130,0,0,0,2],[142,0,0,0,1],[159,0,0,2,0],[160,0,0,1,1]],"modes":[[70,0,0,1,0],[71,0,0,1,0],[72,0,1,2,0],[73,0,0,2,0],[74,0,0,1,0],[75,0,0,1,0],[76,0,0,1,0],[77,0,0,1,0],[78,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0]],"takes":[[70,0,0,1,0],[80,0,0,1,0]],"input":[[70,0,0,1,0]],"take":[[70,0,0,1,0],[79,0,0,1,0]],"piece":[[70,0,0,1,0]],"turns":[[71,0,0,1,0],[147,0,0,1,0],[159,0,0,1,0]],"gets":[[71,0,0,1,0],[108,0,0,1,0],[129,0,1,0,0]],"sequence":[[71,0,0,1,0],[131,0,1,0,0]],"consumes":[[71,0,0,1,0]],"tb":[[71,0,0,0,1],[148,0,0,0,1]],"fm":[[71,0,0,0,4]],"parser":[[71,0,0,0,1]],"strip":[[71,0,0,0,1],[148,0,0,2,0]],"idx":[[71,0,0,0,3]],"serves":[[72,0,0,1,0]],"beneath":[[72,0,0,1,0]],"designed":[[72,0,0,1,0]],"tarballs":[[72,0,0,1,0],[84,0,0,1,0]],"alongside":[[72,0,0,1,0],[87,0,0,1,0],[98,0,0,1,0]],"via":[[73,0,0,1,0],[79,0,0,0,1],[81,0,0,1,0],[84,0,0,3,0],[85,0,0,1,0],[101,0,0,1,0],[104,0,0,1,0],[154,0,0,1,0],[160,0,1,0,0]],"follow":[[73,0,0,1,0],[75,0,0,1,0]],"broad":[[73,0,0,1,0],[114,0,0,1,0],[145,0,0,1,0]],"useless":[[73,0,0,1,0]],"bm25":[[73,0,0,1,0],[77,0,0,1,0],[91,0,0,1,0],[155,0,0,1,0]],"ranked":[[73,0,0,1,0]],"inverted":[[73,0,0,1,0]],"stored":[[73,0,0,1,0],[74,0,0,1,0]],"separately":[[73,0,0,1,0],[74,0,0,1,0],[160,0,0,2,0]],"grep":[[73,0,0,1,0],[74,0,0,1,0],[161,0,0,1,0]],"ngs":[[74,0,0,1,0]],"mapping":[[74,0,0,1,0]],"locations":[[74,0,0,1,0]],"built":[[74,0,0,1,0],[84,0,0,1,0],[157,0,0,1,0]],"agree":[[74,0,0,1,0]],"being":[[75,0,0,1,0]],"told":[[75,0,0,1,0]],"there":[[75,0,0,1,0],[108,0,0,1,0]],"flows":[[75,0,0,2,0]],"complement":[[75,0,0,1,0]],"wants":[[75,0,0,1,0]],"publishes":[[75,0,0,1,0]],"pick":[[75,0,0,1,0],[80,0,0,1,0]],"answers":[[75,0,0,0,1],[79,0,0,0,1],[155,0,0,1,0],[159,0,1,0,0]],"vocabulary":[[76,0,1,0,0],[155,0,1,0,0],[157,0,0,1,0],[163,0,0,1,0]],"terms":[[76,0,0,1,0],[157,0,0,1,0]],"throughout":[[76,0,0,1,0]],"verb":[[76,0,0,1,0]],"declaring":[[76,0,0,1,0]],"belongs":[[76,0,0,1,0]],"noun":[[76,0,0,3,0]],"chunk":[[76,0,0,1,0],[155,0,0,4,0],[158,0,0,0,1]],"scores":[[76,0,0,1,0]],"weigh":[[76,0,0,1,0],[155,0,0,1,0]],"advertises":[[76,0,0,1,0]],"asks":[[76,0,0,1,0]],"implement":[[76,0,0,1,0]],"intercepts":[[76,0,0,1,0]],"endpoints":[[76,0,0,1,0]],"fixed":[[77,0,0,1,0]],"previous":[[77,0,0,1,0]],"finds":[[77,0,0,1,0],[152,0,0,1,0]],"problem":[[77,0,0,1,0]],"fronted":[[79,0,0,1,0]],"bring":[[79,0,0,1,0]],"handle":[[79,0,0,1,0]],"outputs":[[79,0,0,1,0],[87,0,0,1,0]],"choose":[[80,0,1,0,0],[84,0,0,1,0],[111,0,0,1,0],[113,0,0,1,0]],"most":[[80,0,0,1,0],[109,0,0,1,0],[113,0,0,1,0],[146,0,0,1,0]],"teams":[[80,0,0,1,0]],"arrive":[[80,0,0,1,0]],"reasons":[[80,0,0,1,0]],"journey":[[80,0,0,1,0]],"familiar":[[81,0,0,1,0]],"five":[[82,0,0,1,0],[88,0,0,1,0],[91,0,0,1,0],[130,0,0,0,1]],"minutes":[[82,0,0,1,0],[88,0,0,1,0]],"comparing":[[82,0,0,1,0]],"methodology":[[82,0,0,1,0],[83,1,1,0,0],[84,1,1,0,0],[85,1,1,0,0],[86,1,1,0,0],[87,1,1,0,0]],"differs":[[82,0,0,1,0],[83,0,0,1,0],[84,0,0,1,0],[85,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0]],"fumadocs":[[82,0,0,1,0],[83,0,0,1,0],[84,0,0,2,0],[85,0,0,1,0],[86,0,0,1,0],[87,0,0,2,0]],"starlight":[[82,0,0,1,0],[83,0,0,1,0],[84,0,0,3,0],[85,0,0,1,0],[86,0,0,1,0],[87,0,0,2,0]],"mintlify":[[82,0,0,1,0],[83,0,0,1,0],[84,0,0,3,0],[85,0,0,1,0],[86,0,0,1,0],[87,0,0,1,0]],"theming":[[83,0,0,1,0],[86,0,0,1,0]],"tool":[[84,0,0,1,0],[161,0,1,1,0]],"router":[[84,0,0,1,0],[111,0,0,1,0],[112,0,0,2,0],[113,0,0,1,0],[136,0,0,1,1]],"waku":[[84,0,0,1,0]],"supports":[[84,0,0,1,0]],"community":[[84,0,0,1,0]],"pagefind":[[84,0,0,1,0]],"saas":[[84,0,0,1,0]],"headless":[[84,0,0,1,0]],"calls":[[84,0,0,1,0],[104,0,0,1,0],[128,0,0,2,0]],"assistant":[[84,0,0,1,0]],"layer":[[84,0,0,1,0],[132,0,0,1,0],[139,0,0,1,0],[163,0,0,1,0]],"behind":[[84,0,0,1,0],[129,0,0,1,0]],"main":[[84,0,0,1,0],[102,0,0,0,1]],"polished":[[84,0,0,1,0]],"quickly":[[84,0,0,1,0]],"consider":[[84,0,0,1,0]],"platform":[[84,0,0,1,0]],"managed":[[84,0,0,1,0]],"analytics":[[84,0,0,1,0],[86,0,0,1,0]],"features":[[84,0,0,1,0]],"service":[[84,0,0,1,0]],"opt":[[84,0,0,1,0]],"agnostic":[[84,0,0,1,0]],"bundles":[[84,0,0,2,0],[111,0,0,1,0]],"grounded":[[85,0,0,1,0],[154,0,0,2,0],[155,0,0,1,0],[156,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[159,0,1,1,0],[160,0,0,1,0],[161,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0]],"answer":[[85,0,0,1,0],[110,0,0,1,0],[113,0,0,1,0],[154,0,0,2,0],[155,0,0,1,0],[156,0,0,2,0],[157,0,0,1,0],[158,0,0,1,0],[159,0,0,2,0],[160,0,0,2,0],[161,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0]],"streaming":[[85,0,0,1,0],[154,0,0,2,0],[155,0,0,1,0],[156,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0],[160,0,1,1,0],[161,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0]],"orchestration":[[85,0,0,1,0]],"whole":[[85,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0]],"prebuilt":[[86,0,0,1,0]],"combination":[[87,0,1,0,0]],"shines":[[87,0,1,0,0]],"experience":[[87,0,0,1,0]],"private":[[87,0,0,1,0]],"templated":[[87,0,0,1,0]],"executable":[[89,0,0,1,0]],"focused":[[89,0,0,1,0]],"welcome":[[90,0,0,0,1],[145,0,0,1,0]],"walks":[[91,0,0,1,0]],"store":[[91,0,0,1,0],[155,0,0,1,0],[162,0,0,1,0]],"excerpts":[[91,0,0,1,0],[155,0,0,1,0]],"found":[[91,0,0,1,0],[134,0,0,1,0]],"integrating":[[92,0,0,0,1]],"using":[[92,0,0,0,1]],"changes":[[92,0,0,0,1]],"now":[[94,0,0,1,0],[143,0,0,1,0]],"primitives":[[94,0,0,1,0]],"flags":[[95,0,0,1,0],[96,0,0,1,0],[97,0,0,1,0],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,1,0],[102,0,0,1,0],[103,0,0,1,0],[117,0,0,1,0],[130,0,0,0,1]],"codes":[[95,0,0,1,0],[96,0,0,1,0],[97,0,0,2,0],[98,0,0,1,0],[99,0,0,1,0],[100,0,0,1,0],[101,0,0,2,0],[102,0,0,1,0],[103,0,0,1,0]],"validates":[[95,0,0,1,0],[117,0,0,1,0]],"help":[[95,0,0,1,0],[97,0,0,1,0],[101,0,0,1,0],[102,0,1,0,3]],"usage":[[95,0,0,1,0],[97,0,0,2,0],[101,0,0,2,0],[102,0,0,1,1]],"flag":[[96,0,0,1,0],[101,0,0,1,0],[130,0,0,0,1],[142,0,0,0,1]],"dir":[[96,0,0,4,0],[97,0,0,1,0],[101,0,0,2,0]],"containing":[[96,0,0,1,0],[128,0,0,1,0],[141,0,0,1,0]],"ignored":[[96,0,0,1,0],[101,0,0,1,0],[141,0,0,1,0],[148,0,0,1,0]],"written":[[96,0,0,2,0],[141,0,0,3,0]],"glob":[[96,0,0,4,0],[97,0,0,3,0],[101,0,0,2,0],[121,0,0,1,0]],"none":[[96,0,0,2,0],[97,0,0,2,0]],"lob":[[97,0,0,1,0]],"history":[[97,0,0,1,0],[105,0,0,1,0]],"fmt":[[97,0,0,1,0],[101,0,0,1,0]],"prints":[[97,0,0,1,0],[99,0,0,1,0]],"result":[[97,0,0,1,0],[106,0,0,0,3],[121,0,0,0,1],[122,0,1,0,0],[132,0,0,1,4],[143,0,0,1,0],[156,0,0,1,0],[158,0,0,1,0]],"stdout":[[97,0,0,1,0]],"alias":[[97,0,0,1,0]],"print":[[97,0,0,1,0],[99,0,0,1,0],[101,0,0,1,0]],"subdirs":[[98,0,0,1,0]],"preserved":[[98,0,0,1,0],[108,0,0,1,0]],"anchored":[[98,0,0,1,0]],"describing":[[99,0,0,1,0]],"was":[[99,0,0,1,0],[113,0,0,1,0]],"varies":[[99,0,0,1,0]],"agentsmd":[[99,0,0,1,0]],"llmstxt":[[99,0,0,1,1]],"absent":[[99,0,0,1,0]],"abs":[[99,0,0,0,12]],"docsdir":[[99,0,0,0,1]],"docsllmstxt":[[99,0,0,0,1]],"llmsfulltxt":[[99,0,0,0,1]],"searchindex":[[99,0,0,0,1]],"searchcontent":[[99,0,0,0,1]],"docssitemapxml":[[99,0,0,0,1]],"docssitemapmd":[[99,0,0,0,1]],"docsrobotstxt":[[99,0,0,0,1]],"agentreadabilitymanifest":[[99,0,0,0,1]],"inference":[[100,0,1,0,0]],"loaded":[[100,0,0,1,0]],"explicitly":[[100,0,0,1,0],[129,0,0,1,0],[146,0,0,1,0]],"importing":[[100,0,0,1,0]],"inferred":[[100,0,0,2,0],[108,0,0,1,0]],"union":[[100,0,0,1,0]],"generatellmstxt":[[100,0,0,0,2],[103,0,0,1,0],[128,0,0,2,1],[131,0,0,0,2],[141,0,0,3,0]],"honored":[[100,0,0,0,1]],"positional":[[101,0,0,1,0]],"subdirectory":[[101,0,0,1,0],[121,0,0,1,0],[141,0,0,1,0]],"validated":[[101,0,0,1,0],[121,0,0,1,0]],"pretty":[[101,0,0,2,0]],"annotation":[[101,0,0,1,0]],"unlimited":[[101,0,0,1,0]],"count":[[101,0,0,1,0]],"exceeds":[[101,0,0,1,0]],"within":[[101,0,0,1,0]],"budget":[[101,0,0,2,0]],"exceeded":[[101,0,0,1,0]],"partials":[[101,0,0,1,0],[109,0,0,1,0],[121,0,0,1,0]],"plug":[[101,0,0,1,0]],"valibot":[[101,0,0,1,0],[121,0,0,3,0],[126,0,0,1,1]],"schemas":[[101,0,0,1,0],[117,0,0,1,0],[121,0,0,3,0],[123,0,1,0,0],[124,0,1,0,0],[125,0,1,0,0],[126,0,1,0,1]],"show":[[102,0,0,1,0]],"thin":[[103,0,0,1,0],[160,0,0,1,0]],"wrapper":[[103,0,0,1,0]],"convertmdxtomarkdown":[[103,0,0,1,0],[104,0,0,0,1],[106,0,1,0,1]],"writemdxfileasmarkdown":[[103,0,0,1,0],[104,0,0,0,1],[107,0,1,0,1]],"generatellmfullcontextfiles":[[103,0,0,1,0],[128,0,0,1,1],[131,0,0,1,2]],"generateagentreadabilityartifacts":[[103,0,0,1,0],[128,0,0,1,1],[131,0,0,1,2],[132,0,1,0,2],[133,0,0,1,0]],"helpers":[[103,0,0,1,0],[133,0,1,1,0],[134,0,1,0,0],[135,0,1,1,0],[136,0,1,0,0],[137,0,2,0,0],[138,0,2,0,0],[139,0,1,0,0],[140,0,1,0,0],[154,0,0,1,0],[155,0,0,1,0],[156,0,0,1,0],[157,0,0,1,0],[158,0,0,1,0],[159,0,0,1,0],[160,0,0,1,0],[161,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0]],"sites":[[103,0,0,1,0],[132,0,0,1,0]],"generatedocssearchfiles":[[103,0,0,1,0],[156,0,0,0,2]],"lintdocs":[[103,0,0,1,0],[117,0,0,0,1],[121,0,0,0,2],[126,0,0,0,2]],"individual":[[103,0,0,1,0],[153,0,0,1,0]],"happy":[[103,0,0,1,0],[130,0,0,0,1]],"precedence":[[103,0,0,1,0],[146,0,1,0,0]],"internally":[[104,0,0,1,0]],"memory":[[104,0,0,1,0],[106,0,0,1,0],[162,0,0,1,0],[163,0,0,1,0]],"batch":[[105,0,0,1,0]],"option":[[105,0,0,1,0],[121,0,0,1,0],[141,0,0,1,0]],"destination":[[105,0,0,1,0]],"matters":[[105,0,0,1,0],[113,0,0,1,0],[147,0,0,1,0],[150,0,1,0,0]],"concurrent":[[105,0,0,1,0],[108,0,0,1,0]],"large":[[105,0,0,1,0]],"parallel":[[105,0,0,1,0]],"parsed":[[106,0,0,1,0]],"yourself":[[106,0,0,1,0]],"writing":[[106,0,0,1,0]],"feed":[[106,0,0,1,0],[150,0,0,1,0]],"touching":[[106,0,0,1,0],[154,0,0,1,0]],"console":[[106,0,0,0,2]],"log":[[106,0,0,0,2]],"srcpath":[[107,0,0,0,1]],"outpath":[[107,0,0,0,1]],"blocks":[[108,0,0,2,0],[119,0,0,1,0],[144,0,0,1,0],[148,0,0,1,0]],"synthesized":[[108,0,0,1,0]],"sometimes":[[108,0,0,1,0]],"compacted":[[108,0,0,1,0]],"global":[[108,0,0,1,0]],"pairing":[[109,0,1,0,0]],"setups":[[109,0,0,1,0]],"expand":[[109,0,0,1,0],[157,0,0,1,0]],"ast":[[109,0,0,1,0]],"sees":[[109,0,0,1,0],[150,0,0,1,0],[151,0,0,1,0]],"rationale":[[109,0,0,1,0]],"benchmarks":[[110,0,0,1,0],[111,0,0,1,0],[112,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[115,0,0,2,0],[116,0,0,1,0]],"changing":[[110,0,0,1,0],[111,0,0,1,0],[112,0,0,1,0],[113,0,0,1,0],[114,0,0,1,0],[115,0,0,1,0],[116,0,0,1,0]],"treats":[[110,0,0,1,0]],"eval":[[110,0,0,1,0],[115,0,0,1,0]],"harnesses":[[110,0,0,1,0]],"real":[[110,0,0,1,0]],"models":[[110,0,0,1,0]],"final":[[110,0,0,1,0],[120,0,0,1,0],[146,0,0,1,0],[150,0,0,1,0]],"installs":[[111,0,0,1,0]],"packed":[[111,0,0,1,0]],"sandbox":[[111,0,0,1,0]],"task":[[111,0,0,1,0]],"simulates":[[111,0,0,1,0]],"depending":[[111,0,0,1,0]],"nine":[[111,0,0,1,0]],"split":[[111,0,0,1,0]],"lists":[[111,0,0,1,0],[129,0,0,1,0]],"part":[[111,0,0,1,0]],"intended":[[111,0,0,1,0],[112,0,0,1,0],[113,0,0,2,0]],"monolith":[[112,0,0,1,0],[113,0,0,1,0]],"learned":[[113,0,1,0,0]],"monolithic":[[113,0,0,1,0],[115,0,0,1,0]],"tested":[[113,0,0,2,0]],"passed":[[113,0,0,1,0]],"six":[[113,0,0,1,0]],"fixtures":[[113,0,0,1,0]],"opus":[[113,0,0,2,0]],"gpt":[[113,0,0,2,0],[116,0,0,0,1],[160,0,0,0,1]],"readout":[[113,0,0,1,0]],"reliable":[[113,0,0,1,0]],"cheap":[[113,0,0,1,0],[156,0,0,1,0],[163,0,0,1,0]],"synthesis":[[113,0,0,1,0]],"tasks":[[113,0,0,1,0]],"promising":[[113,0,0,2,0]],"dependent":[[113,0,0,1,0]],"often":[[113,0,0,1,0]],"answered":[[113,0,0,2,0]],"correctly":[[113,0,0,3,0]],"following":[[113,0,0,1,0]],"stricter":[[113,0,0,1,0]],"selection":[[113,0,0,1,0],[153,0,1,0,0]],"summaries":[[113,0,0,1,0]],"prior":[[113,0,0,1,0]],"knowledge":[[113,0,0,1,0]],"prove":[[113,0,0,1,0]],"proposed":[[113,0,0,1,0]],"made":[[113,0,0,1,0]],"organize":[[114,0,0,1,0],[145,0,0,1,0]],"suffer":[[115,0,0,1,0]],"because":[[115,0,0,1,0],[150,0,0,2,0]],"token":[[115,0,0,1,0],[157,0,0,1,0]],"cost":[[115,0,0,1,0],[153,0,0,1,0]],"truncation":[[115,0,0,1,0]],"harness":[[115,0,0,1,0],[116,0,0,1,0]],"revisit":[[115,0,0,1,0]],"tradeoff":[[115,0,0,1,0]],"adding":[[115,0,0,1,0]],"detailed":[[116,0,0,1,0]],"repository":[[116,0,0,1,0]],"documented":[[117,0,0,1,0]],"covers":[[117,0,0,1,0],[144,0,0,1,0],[146,0,0,1,0]],"severity":[[119,0,0,1,0],[120,0,0,1,0],[122,0,0,0,1]],"won":[[119,0,0,1,0]],"treat":[[119,0,0,1,0],[127,0,0,1,0]],"highest":[[119,0,0,1,0],[157,0,0,1,0]],"priority":[[119,0,0,1,0]],"similar":[[120,0,0,1,0],[148,0,0,1,0]],"linting":[[120,0,0,1,0]],"walking":[[120,0,0,1,0]],"changelogdir":[[121,0,0,1,0]],"patterns":[[121,0,0,2,0]],"unknownfieldseverity":[[121,0,0,1,1]],"changelogfrontmatter":[[121,0,0,1,0]],"failures":[[122,0,0,1,0]],"reported":[[122,0,0,1,0]],"lintresult":[[122,0,0,0,1]],"kind":[[122,0,0,0,1]],"filesscanned":[[122,0,0,0,1]],"yes":[[123,0,0,1,0],[124,0,0,3,0],[125,0,0,1,0]],"produced":[[123,0,0,1,0]],"semver":[[124,0,0,1,0]],"iso":[[124,0,0,1,0]],"parseable":[[124,0,0,1,0]],"improvement":[[124,0,0,1,0]],"retired":[[124,0,0,1,0]],"deprecation":[[124,0,0,1,0]],"defaultopen":[[125,0,0,1,0]],"combined":[[125,0,0,1,0]],"replace":[[126,0,0,1,0],[135,0,0,1,0],[148,0,0,1,0]],"provide":[[126,0,0,1,0]],"customfrontmatter":[[126,0,0,0,2]],"minlength":[[126,0,0,0,1]],"picklist":[[126,0,0,0,1]],"beginner":[[126,0,0,0,1]],"advanced":[[126,0,0,0,1]],"practical":[[127,0,1,0,0]],"template":[[127,0,0,1,0],[150,0,0,1,0]],"pipelines":[[127,0,0,1,0],[144,0,0,1,0]],"websites":[[128,0,0,2,0],[129,0,0,1,0],[130,0,0,1,0],[131,0,0,1,0],[132,0,0,1,0],[133,0,0,1,0],[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0],[137,0,0,1,0],[138,0,0,1,0],[139,0,0,1,0],[140,0,0,1,0],[141,0,0,1,0],[142,0,0,1,0],[143,0,0,1,0],[144,0,0,1,0],[145,0,0,1,0],[146,0,0,1,0]],"flavors":[[128,0,0,1,0]],"derived":[[128,0,0,1,0]],"pairs":[[128,0,0,1,0],[139,0,0,1,0]],"finer":[[128,0,0,1,0]],"renderrobotstxt":[[128,0,0,0,1],[132,0,0,0,2]],"rendersitemapmarkdown":[[128,0,0,0,1],[132,0,0,0,2]],"rendersitemapxml":[[128,0,0,0,1],[132,0,0,0,2]],"purpose":[[129,0,0,1,0],[162,0,0,1,0]],"best":[[129,0,0,1,0],[130,0,0,0,1]],"starting":[[129,0,0,1,0],[130,0,0,0,1]],"lastmod":[[129,0,0,1,0]],"mergeable":[[129,0,0,1,0]],"crawl":[[129,0,0,1,0]],"policy":[[129,0,0,1,0]],"allows":[[129,0,0,1,0]],"common":[[129,0,0,1,0],[162,0,0,1,0]],"crawlers":[[129,0,0,1,0]],"longer":[[129,0,0,1,0]],"thing":[[130,0,0,0,1],[131,0,0,0,1],[142,0,0,0,1]],"well":[[130,0,0,0,1],[131,0,0,0,1],[142,0,0,0,1]],"boring":[[130,0,0,0,1]],"parts":[[130,0,0,0,1]],"documentation":[[130,0,0,0,1]],"minute":[[130,0,0,0,1]],"typical":[[131,0,1,0,0]],"letting":[[132,0,0,1,0]],"returned":[[132,0,0,1,0]],"writefile":[[132,0,0,0,3],[143,0,0,0,2]],"objects":[[133,0,0,1,0],[162,0,0,1,0]],"module":[[133,0,0,1,0]],"acceptsmarkdownheader":[[133,0,0,0,1],[137,0,0,1,0],[138,0,0,1,0]],"createdocshead":[[133,0,0,0,1],[136,0,1,0,2],[137,0,0,1,0]],"createmarkdownresponseheaders":[[133,0,0,0,1],[137,0,0,1,0]],"enrichmarkdownfrontmatter":[[133,0,0,0,1],[137,0,0,1,0]],"isagentreadabilityartifactpath":[[133,0,0,0,1],[138,0,0,1,0]],"isagentuseragent":[[133,0,0,0,1],[137,0,0,1,0],[138,0,0,1,0]],"rendermissingmarkdown":[[133,0,0,0,1],[137,0,0,1,0]],"resolvemarkdownmirrortarget":[[133,0,0,0,1],[137,0,0,1,0]],"fall":[[134,0,0,1,0],[135,0,0,1,0],[136,0,0,1,0]],"ua":[[134,0,0,1,0]],"enriches":[[134,0,0,1,0]],"useragentpattern":[[134,0,0,1,0]],"regex":[[134,0,0,1,0],[138,0,0,1,0]],"cover":[[134,0,0,1,0]],"oai":[[134,0,0,1,0]],"searchbot":[[134,0,0,1,0]],"anthropic":[[134,0,0,1,0]],"ccbot":[[134,0,0,1,0]],"google":[[134,0,0,1,0]],"extended":[[134,0,0,1,0]],"directives":[[135,0,0,1,0]],"reflect":[[135,0,0,1,0]],"hacks":[[135,0,0,1,0]],"rebasing":[[135,0,0,0,1]],"og":[[136,0,0,1,2],[137,0,0,1,0]],"neutral":[[136,0,0,1,0]],"arrays":[[136,0,0,1,0]],"caller":[[136,0,0,1,0]],"key":[[136,0,0,0,1]],"ldjson":[[136,0,0,0,1]],"jsonldmetakey":[[136,0,0,0,1]],"lower":[[137,0,1,0,0],[138,0,1,0,0]],"escaped":[[137,0,0,1,0]],"crlf":[[137,0,0,1,0]],"tolerant":[[137,0,0,1,0],[157,0,0,1,0]],"used":[[137,0,0,1,0],[141,0,0,1,0]],"detect":[[137,0,0,2,0],[138,0,0,2,0]],"asking":[[137,0,0,1,0],[138,0,0,1,0]],"crawler":[[137,0,0,1,0],[138,0,0,1,0]],"avoid":[[138,0,0,1,0]],"uas":[[139,0,0,1,0]],"shards":[[139,0,0,1,0]],"pollinate":[[139,0,0,1,0]],"asserts":[[140,0,0,1,0]],"throws":[[140,0,0,1,0]],"clear":[[140,0,0,1,0]],"loudly":[[140,0,0,1,0]],"producing":[[140,0,0,1,0]],"rely":[[141,0,0,1,0]],"singular":[[141,0,0,1,0]],"segment":[[141,0,0,1,0]],"productinfo":[[141,0,0,1,0]],"agentguidance":[[141,0,0,1,0]],"intentionally":[[141,0,0,1,0],[153,0,0,1,0]],"mislead":[[141,0,0,1,0]],"docssubdir":[[141,0,0,1,0]],"holds":[[141,0,0,1,0]],"prefix":[[141,0,0,1,0],[157,0,0,1,0]],"outputpath":[[141,0,0,1,0]],"driving":[[143,0,0,1,0]],"mkdir":[[143,0,0,0,2]],"stringify":[[143,0,0,0,1]],"sidebars":[[144,0,0,1,0]],"call":[[144,0,0,1,0]],"come":[[145,0,0,1,0]],"principles":[[145,0,0,1,0]],"sharding":[[145,0,0,1,0]],"remains":[[145,0,0,1,0]],"flavor":[[145,0,0,1,0]],"decide":[[145,0,0,1,0]],"load":[[145,0,0,1,0],[156,0,0,2,0]],"beats":[[145,0,0,1,0]],"our":[[145,0,0,1,0]],"environment":[[146,0,0,1,0]],"variables":[[146,0,0,1,0]],"layered":[[146,0,0,1,0]],"lets":[[146,0,0,1,0]],"wide":[[146,0,0,1,0]],"platforms":[[146,0,0,1,0]],"hardcoded":[[146,0,0,1,0]],"portless":[[146,0,0,0,1]],"stripped":[[147,0,0,1,0]],"remarkremoveimports":[[148,0,0,1,1]],"statements":[[148,0,0,1,0]],"remarkremovejsxcomments":[[148,0,0,1,1]],"comments":[[148,0,0,1,0]],"remarkresolvedocplaceholders":[[148,0,0,1,1],[150,0,0,1,0]],"remarkaudiencetomarkdown":[[148,0,0,1,1]],"remove":[[148,0,0,1,0]],"remarksectiontomarkdown":[[148,0,0,1,1]],"containers":[[148,0,0,1,0]],"remarkcallouttomarkdown":[[148,0,0,1,1]],"remarkcardstomarkdown":[[148,0,0,1,1]],"bulleted":[[148,0,0,1,0]],"remarkdetailstomarkdown":[[148,0,0,1,1]],"remarkmermaidtomarkdown":[[148,0,0,1,1]],"remarkcommandtabstomarkdown":[[148,0,0,1,1]],"remarkstepstomarkdown":[[148,0,0,1,1]],"remarktabstomarkdown":[[148,0,0,1,1]],"remarkaccordiontomarkdown":[[148,0,0,1,1]],"remarktopicswitchertomarkdown":[[148,0,0,1,1]],"labeled":[[148,0,0,1,0],[149,0,0,1,0]],"remarkfiletreetomarkdown":[[148,0,0,1,1],[149,0,0,1,0]],"remarkprompttomarkdown":[[148,0,0,1,1],[149,0,0,1,0]],"mdast":[[148,0,0,0,1]],"ri":[[148,0,0,0,2]],"rj":[[148,0,0,0,2]],"rd":[[148,0,0,0,2]],"rau":[[148,0,0,0,2]],"rs":[[148,0,0,0,2]],"rc":[[148,0,0,0,2]],"rcd":[[148,0,0,0,2]],"rdt":[[148,0,0,0,2]],"rct":[[148,0,0,0,2]],"rst":[[148,0,0,0,2]],"rt":[[148,0,0,0,2]],"rtt":[[148,0,0,0,2]],"ra":[[148,0,0,0,2]],"rts":[[148,0,0,0,2]],"rft":[[148,0,0,0,2]],"rp":[[148,0,0,0,2]],"remarkexampletomarkdown":[[148,0,0,0,1],[149,0,0,1,0]],"go":[[150,0,0,2,0]],"some":[[150,0,0,1,0]],"imported":[[150,0,0,1,0]],"flatteners":[[150,0,0,3,0]],"assume":[[150,0,0,1,0]],"strings":[[150,0,0,1,0]],"literals":[[150,0,0,1,0]],"reorder":[[150,0,0,1,0]],"casually":[[150,0,0,1,0]],"flattener":[[150,0,0,2,0],[151,0,0,1,0],[153,0,0,1,0]],"transform":[[150,0,0,1,0]],"contracted":[[150,0,0,1,0]],"insert":[[150,0,0,1,0]],"composition":[[151,0,0,1,0]],"expands":[[151,0,0,1,0]],"pipelineexampleoptions":[[152,0,0,0,1]],"types":[[152,0,0,0,1]],"composed":[[153,0,0,1,0]],"fragments":[[153,0,0,1,0]],"processing":[[153,0,0,1,0]],"almost":[[153,0,0,1,0]],"never":[[153,0,0,1,0]],"reordering":[[153,0,0,1,0]],"ones":[[153,0,0,1,0]],"exposes":[[154,0,0,1,0],[161,0,0,1,0]],"queries":[[154,0,0,1,0]],"database":[[154,0,0,1,0]],"document":[[155,0,0,2,0]],"jump":[[155,0,0,1,0]],"ranking":[[155,0,0,1,0]],"tunable":[[155,0,0,1,0]],"generator":[[155,0,0,1,0],[156,0,0,1,0]],"compact":[[155,0,0,1,0]],"tuple":[[155,0,0,1,0]],"term":[[155,0,0,1,0]],"postings":[[155,0,0,1,0]],"refs":[[155,0,0,2,0]],"actual":[[155,0,0,1,0]],"separated":[[155,0,0,1,0]],"loading":[[155,0,0,1,0]],"lazily":[[155,0,0,1,0]],"indexing":[[156,0,1,0,0]],"hover":[[156,0,0,1,0]],"snippets":[[157,0,0,1,0]],"query":[[157,0,0,1,0],[159,0,0,1,0],[160,0,0,0,1],[162,0,0,1,0]],"lightweight":[[157,0,0,1,0]],"stemming":[[157,0,0,1,0]],"typo":[[157,0,0,1,0]],"fallbacks":[[157,0,0,1,0]],"synonym":[[157,0,0,1,0]],"weight":[[157,0,0,1,0]],"keys":[[157,0,0,1,0],[163,0,0,1,0]],"precise":[[157,0,0,1,0]],"synonyms":[[157,0,0,1,1]],"searchdocs":[[157,0,0,0,3]],"docssearchindex":[[157,0,0,0,2]],"docssearchcontentstore":[[157,0,0,0,2]],"indexjson":[[157,0,0,0,2]],"contentjson":[[157,0,0,0,2]],"getting":[[157,0,0,0,1]],"doubles":[[158,0,0,1,0]],"virtual":[[158,0,0,1,0],[161,0,0,1,0]],"readers":[[158,0,0,1,0]],"picked":[[158,0,0,1,0]],"readdocscontentfile":[[158,0,0,1,2]],"entire":[[158,0,0,1,0]],"readdocscontentchunk":[[158,0,0,1,2]],"listdocscontentfiles":[[158,0,0,0,2]],"allfiles":[[158,0,0,0,1]],"wholepage":[[158,0,0,0,1]],"onechunk":[[158,0,0,0,1]],"createanswercontext":[[159,0,0,1,2],[160,0,0,1,0]],"retrieved":[[159,0,0,2,0]],"chunks":[[159,0,0,1,0],[161,0,0,1,0],[163,0,0,1,0]],"instructs":[[159,0,0,1,0]],"sources":[[159,0,0,1,1],[160,0,0,2,1]],"references":[[159,0,0,1,0]],"say":[[159,0,0,1,0]],"insufficient":[[159,0,0,1,0]],"productname":[[159,0,0,0,1],[160,0,0,0,1]],"wrappers":[[160,0,0,1,0]],"stream":[[160,0,0,1,0]],"matching":[[160,0,0,1,0],[163,0,0,1,0]],"citation":[[160,0,0,1,0]],"display":[[160,0,0,1,0]],"embed":[[160,0,0,1,0]],"streamed":[[160,0,0,1,0]],"adapter":[[160,0,0,1,0],[161,0,0,1,0]],"createcloudflaredocsadapter":[[160,0,0,1,0]],"gateway":[[160,0,0,1,2]],"streamdocsanswer":[[160,0,0,0,4]],"sdk":[[160,0,0,0,1],[161,0,0,1,0]],"adapters":[[161,0,1,0,0]],"explore":[[161,0,0,1,0]],"shell":[[161,0,0,1,0]],"receiving":[[161,0,0,1,0]],"selected":[[161,0,0,1,0]],"ls":[[161,0,0,1,0]],"cat":[[161,0,0,1,0]],"rg":[[161,0,0,1,0]],"execution":[[161,0,0,1,0]],"disabled":[[161,0,0,1,0]],"createdocsbashtool":[[161,0,0,1,2]],"createdocsbashtools":[[161,0,0,1,1]],"compatible":[[161,0,0,1,0]],"abuse":[[162,0,1,0,0]],"guards":[[162,0,1,0,0]],"reusable":[[162,0,0,1,0]],"utilities":[[162,0,0,1,0]],"validatedocsquery":[[162,0,0,1,0]],"trim":[[162,0,0,1,0]],"cap":[[162,0,0,1,0]],"readjsonwithlimit":[[162,0,0,1,0]],"reject":[[162,0,0,1,0]],"oversized":[[162,0,0,1,0]],"getclientidentifier":[[162,0,0,1,0]],"proxy":[[162,0,0,1,0]],"ip":[[162,0,0,1,0]],"creatememoryratelimiter":[[162,0,0,1,0]],"implements":[[162,0,0,1,0]],"ratelimiter":[[162,0,0,2,0]],"demos":[[162,0,0,2,0]],"limiter":[[162,0,0,1,0]],"adapt":[[162,0,0,1,0]],"interface":[[162,0,0,1,0]],"redis":[[162,0,0,1,0]],"durable":[[162,0,0,1,0]],"embeddings":[[163,0,1,2,0]],"messages":[[163,0,0,1,0]],"users":[[163,0,0,1,0]],"faster":[[163,0,0,1,0]],"performance":[[163,0,0,1,0]],"optimization":[[163,0,0,1,0]],"grow":[[163,0,0,1,0]],"past":[[163,0,0,1,0]],"tens":[[163,0,0,1,0]],"thousands":[[163,0,0,1,0]],"cold":[[163,0,0,1,0]],"hit":[[163,0,0,1,0]],"noticeable":[[163,0,0,1,0]],"even":[[163,0,0,1,0]],"lexical":[[163,0,0,1,0]],"complementary":[[163,0,0,1,0]],"replacements":[[163,0,0,1,0]]},"averageChunkLength":88.72560975609755}
diff --git a/apps/example/src/lib/docs-head.ts b/apps/example/src/lib/docs-head.ts
index 6fbc7ba..95a89be 100644
--- a/apps/example/src/lib/docs-head.ts
+++ b/apps/example/src/lib/docs-head.ts
@@ -5,10 +5,10 @@ import {
} from "leadtype/llm/readability";
import agentReadability from "@/generated/agent-readability.json";
-const manifest: AgentReadabilityManifest = {
+const manifest = {
...agentReadability,
version: 1,
-};
+} as unknown as AgentReadabilityManifest;
export function createDocsHead(urlPath: string): DocsHead {
return createDocsHeadCore({ urlPath, manifest });
diff --git a/apps/example/src/lib/docs.ts b/apps/example/src/lib/docs.ts
index b16718f..d0b7070 100644
--- a/apps/example/src/lib/docs.ts
+++ b/apps/example/src/lib/docs.ts
@@ -1,7 +1,14 @@
-import type { DocsNavigation, DocsNavigationGroup } from "leadtype/llm";
+import type {
+ DocsNavigation,
+ DocsNavigationGroup,
+ DocsNavigationPage,
+} from "leadtype/llm";
import docsNavigation from "@/generated/docs-nav.json";
-const navigation = docsNavigation as DocsNavigation;
+const TRAILING_SLASH_PATTERN = /\/$/;
+
+export const docsNavigationManifest =
+ docsNavigation as unknown as DocsNavigation;
export interface NavigationRoute {
description: string;
@@ -55,13 +62,47 @@ function flattenGroupPages(group: DocsNavigationGroup): DocsSidebarLink[] {
* `group:` frontmatter on each `/docs/*.mdx`. This is exactly how an external
* consumer like c15t/c15t would wire its sidebar.
*/
-export const docsSidebarSections: DocsSidebarSection[] = navigation.groups.map(
- (group) => ({
+export const docsSidebarSections: DocsSidebarSection[] =
+ docsNavigationManifest.groups.map((group) => ({
title: group.title,
description: group.description,
links: flattenGroupPages(group),
- })
-);
+ }));
+
+function findPageInGroup(
+ group: DocsNavigationGroup,
+ pathname: string
+): DocsNavigationPage | undefined {
+ const directPage = group.pages.find((page) => page.urlPath === pathname);
+ if (directPage) {
+ return directPage;
+ }
+
+ for (const child of group.children) {
+ const page = findPageInGroup(child, pathname);
+ if (page) {
+ return page;
+ }
+ }
+}
+
+export function findDocsNavigationPage(pathname: string) {
+ const normalizedPathname =
+ pathname.length > 1
+ ? pathname.replace(TRAILING_SLASH_PATTERN, "")
+ : pathname;
+
+ for (const group of docsNavigationManifest.groups) {
+ const page = findPageInGroup(group, normalizedPathname);
+ if (page) {
+ return page;
+ }
+ }
+
+ return docsNavigationManifest.ungrouped.find(
+ (page) => page.urlPath === normalizedPathname
+ );
+}
export interface PackageSurface {
description: string;
diff --git a/apps/example/src/mdx-components.tsx b/apps/example/src/mdx-components.tsx
index 29cd75e..656a266 100644
--- a/apps/example/src/mdx-components.tsx
+++ b/apps/example/src/mdx-components.tsx
@@ -1,7 +1,8 @@
-import { slugifyDocsHeading } from "leadtype/search";
+import { slugifyDocsHeading } from "leadtype/llm/readability";
import type { MDXComponents } from "mdx/types";
-import type { ComponentPropsWithoutRef } from "react";
+import type { ComponentPropsWithoutRef, MouseEvent } from "react";
import { mdxComponents } from "@/components/docs-mdx";
+import { cn } from "@/lib/utils";
type HeadingProps = ComponentPropsWithoutRef<"h1">;
@@ -15,14 +16,58 @@ function textFromChildren(children: HeadingProps["children"]): string {
return "";
}
+async function copyHeadingUrl(
+ event: MouseEvent,
+ hash: string
+): Promise {
+ if (!(event.metaKey || event.ctrlKey || event.shiftKey || event.altKey)) {
+ event.preventDefault();
+ history.replaceState(null, "", hash);
+ document.querySelector(hash)?.scrollIntoView();
+ }
+
+ const url = new URL(window.location.href);
+ url.hash = hash;
+ await navigator.clipboard?.writeText(url.toString());
+}
+
function createHeading(level: 1 | 2 | 3 | 4 | 5 | 6) {
- const Heading = ({ children, id, ...props }: HeadingProps) => {
+ const Heading = ({ children, className, id, ...props }: HeadingProps) => {
const Component = `h${level}` as const;
- const headingId = id ?? slugifyDocsHeading(textFromChildren(children));
+ const headingText = textFromChildren(children);
+ const headingId = id ?? slugifyDocsHeading(headingText);
+ const hash = headingId ? `#${headingId}` : undefined;
return (
-
- {children}
+
+ {hash ? (
+ {
+ copyHeadingUrl(event, hash).catch(() => undefined);
+ }}
+ title="Copy link"
+ >
+ {children}
+
+ #
+
+
+ ) : (
+ children
+ )}
);
};
diff --git a/apps/example/src/styles.css b/apps/example/src/styles.css
index 4845978a..4b31cb5 100644
--- a/apps/example/src/styles.css
+++ b/apps/example/src/styles.css
@@ -119,6 +119,10 @@
@apply underline underline-offset-4;
}
+.docs-prose [data-docs-heading-anchor] {
+ @apply no-underline;
+}
+
.docs-prose
ul:not([data-leadtype-file-tree-list]):not(
[data-leadtype-topic-switcher-list]
diff --git a/apps/example/tests/e2e/smoke.e2e.ts b/apps/example/tests/e2e/smoke.e2e.ts
index b81e9f7..8fdeece 100644
--- a/apps/example/tests/e2e/smoke.e2e.ts
+++ b/apps/example/tests/e2e/smoke.e2e.ts
@@ -89,6 +89,14 @@ test("/docs/reference/search renders the search APIs reference", async ({
await expect(
page.getByRole("heading", { name: "Search", exact: true })
).toBeVisible();
+ const toc = page.getByRole("navigation", { name: "On this page" });
+ await expect(toc.getByRole("link", { name: "Runtime search" })).toBeVisible();
+ const runtimeSearch = toc.getByRole("link", { name: "Runtime search" });
+ await expect(runtimeSearch).toHaveAttribute(
+ "href",
+ "/docs/reference/search#runtime-search"
+ );
+ await expect(page.locator("#runtime-search")).toBeAttached();
});
test("/search returns local docs results and answer configuration", async ({
diff --git a/docs/authoring/components.mdx b/docs/authoring/components.mdx
index ff864be..fdcabb6 100644
--- a/docs/authoring/components.mdx
+++ b/docs/authoring/components.mdx
@@ -35,6 +35,71 @@ const components = {
};
```
+## Headings and table of contents
+
+Beyond the named-component contract above, leadtype emits a second contract that applies to every page. Each heading you write becomes an entry in the page's `toc` array on the navigation manifest, with an `id` computed by slugifying the heading text. Your MDX heading renderer must use the same slug for its HTML `id` attribute, or anchor links from the rendered "On this page" sidebar silently miss.
+
+### The slug contract
+
+Import `slugifyDocsHeading` and apply it inside your MDX heading components. The `/readability` subpath is the fs-free, browser-safe surface — safe to use in client components.
+
+```tsx
+import { slugifyDocsHeading } from "leadtype/llm/readability";
+import type { ComponentPropsWithoutRef } from "react";
+
+type HeadingProps = ComponentPropsWithoutRef<"h1">;
+
+function textFromChildren(children: HeadingProps["children"]): string {
+ if (typeof children === "string" || typeof children === "number") {
+ return String(children);
+ }
+ if (Array.isArray(children)) {
+ return children.map(textFromChildren).join(" ");
+ }
+ return "";
+}
+
+function createHeading(level: 1 | 2 | 3 | 4 | 5 | 6) {
+ return ({ children, id, ...props }: HeadingProps) => {
+ const Component = `h${level}` as const;
+ const headingId = id ?? slugifyDocsHeading(textFromChildren(children));
+ return (
+
+ {children}
+
+ );
+ };
+}
+```
+
+`slugifyDocsHeading` performs Unicode normalization and diacritic stripping, so a heading like "Café résumé" produces a stable, URL-safe `id`. Authors can still pin a specific anchor by passing an explicit `id` on the heading — the helper only runs when one is missing.
+
+### Where the TOC data lives
+
+`resolveDocsNavigation` returns a `toc: DocsTableOfContentsItem[]` on every page. The default range is `h2`–`h3`, which keeps the page-level `h1` out and stops short of deep subsection noise.
+
+```ts
+const navigation = await resolveDocsNavigation({
+ srcDir: ".",
+ baseUrl: "https://leadtype.dev",
+ groups: docsConfig.groups,
+ toc: { minLevel: 2, maxLevel: 4 },
+});
+```
+
+For the standalone APIs (`resolveDocsTableOfContents`, `extractDocsTableOfContents`), see [LLM reference → Tables of contents](/docs/reference/llm#tables-of-contents).
+
+### Rendering the sidebar
+
+Same stance as the named components above: leadtype defines the contract, your app renders. Look up the current page in the manifest and pass `currentPage.toc` to whatever sidebar component fits your design system.
+
+For a complete React reference — scroll-spy, active highlighting, hash sync, sticky positioning — see [`apps/example/src/components/table-of-contents.tsx`](https://github.com/inthhq/leadtype/blob/main/apps/example/src/components/table-of-contents.tsx). Copy it, fork it, or build your own from the `DocsTableOfContentsItem[]` shape.
+
+### Troubleshooting
+
+- **TOC links don't scroll anywhere.** Your heading renderer is emitting `id` attributes that don't match the extracted slugs. Wire `slugifyDocsHeading` into your MDX heading components as shown above.
+- **A page's TOC is empty.** Every heading on that page is outside the `minLevel`/`maxLevel` range. Defaults exclude `h1` (the page title) and anything deeper than `h3`.
+
## Component reference
Each section below shows the authored MDX and a live render.
diff --git a/docs/reference/llm.mdx b/docs/reference/llm.mdx
index d92a4a8..0328d9c 100644
--- a/docs/reference/llm.mdx
+++ b/docs/reference/llm.mdx
@@ -15,6 +15,7 @@ The `leadtype/llm` entry point produces four flavors of agent-facing output, all
```ts
import {
+ extractDocsTableOfContents,
generateAgentReadabilityArtifacts,
generateAgentsMd,
generateLLMFullContextFiles,
@@ -23,6 +24,7 @@ import {
renderSitemapMarkdown,
renderSitemapXml,
resolveDocsNavigation,
+ resolveDocsTableOfContents,
} from "leadtype/llm";
```
@@ -374,6 +376,32 @@ await writeFile(
Now your sidebar can import a static manifest with the same group tree the LLM files use.
+## Tables of contents
+
+For the heading slug contract and renderer wiring, see [Components → Headings and table of contents](/docs/authoring/components#headings-and-table-of-contents). This section covers the build-time APIs only.
+
+`resolveDocsNavigation` includes a `toc` array on every page by default. The default range is `h2`–`h3`, which keeps page-level `h1` titles out of sidebars.
+
+```ts
+const navigation = await resolveDocsNavigation({
+ srcDir: ".",
+ baseUrl: "https://leadtype.dev",
+ groups: docsConfig.groups,
+ toc: { minLevel: 2, maxLevel: 4 },
+});
+```
+
+If you only need TOC data and not the full group tree, call `resolveDocsTableOfContents`:
+
+```ts
+const pages = await resolveDocsTableOfContents({
+ srcDir: ".",
+ baseUrl: "https://leadtype.dev",
+});
+```
+
+For custom pipelines, `extractDocsTableOfContents` accepts a markdown or MDX string plus page URL metadata and returns plain JSON. It ignores frontmatter and fenced code blocks, and it uses the same `slugifyDocsHeading` helper that rendered headings must use to keep `id` attributes in sync.
+
## Group design
The `groups` you pass to these APIs come from `docs.config.ts`. Two principles:
diff --git a/packages/leadtype/src/index.ts b/packages/leadtype/src/index.ts
index eb7e62c..4803d47 100644
--- a/packages/leadtype/src/index.ts
+++ b/packages/leadtype/src/index.ts
@@ -9,6 +9,13 @@ export {
type CuratedLink,
type DocsConfig,
type DocsGroup,
+ type DocsTableOfContentsItem,
+ type DocsTableOfContentsOptions,
+ type DocsTableOfContentsPage,
defineDocsConfig,
+ extractDocsTableOfContents,
type ProductInfo,
+ type ResolveDocsTableOfContentsConfig,
+ resolveDocsTableOfContents,
+ slugifyDocsHeading,
} from "./llm";
diff --git a/packages/leadtype/src/internal/docs-heading.ts b/packages/leadtype/src/internal/docs-heading.ts
new file mode 100644
index 0000000..e720c36
--- /dev/null
+++ b/packages/leadtype/src/internal/docs-heading.ts
@@ -0,0 +1,11 @@
+const DIACRITIC_PATTERN = /[\u0300-\u036f]/g;
+
+function normalizeHeadingText(input: string): string {
+ return input.normalize("NFKD").replace(DIACRITIC_PATTERN, "").toLowerCase();
+}
+
+export function slugifyDocsHeading(input: string): string {
+ return normalizeHeadingText(input)
+ .replace(/[^\p{L}\p{N}]+/gu, "-")
+ .replace(/^-+|-+$/g, "");
+}
diff --git a/packages/leadtype/src/llm/index.ts b/packages/leadtype/src/llm/index.ts
index db2f42e..34a2de3 100644
--- a/packages/leadtype/src/llm/index.ts
+++ b/packages/leadtype/src/llm/index.ts
@@ -7,7 +7,9 @@ export {
type CuratedLink,
type DocsConfig,
type DocsGroup,
+ type DocsTableOfContentsPage,
defineDocsConfig,
+ extractDocsTableOfContents,
generateAgentReadabilityArtifacts,
generateAgentsMd,
generateLLMFullContextFiles,
@@ -17,7 +19,9 @@ export {
type MarkdownDoc,
type ProductInfo,
type ResolveDocsNavigationConfig,
+ type ResolveDocsTableOfContentsConfig,
resolveDocsNavigation,
+ resolveDocsTableOfContents,
type SourceDoc,
} from "./llm";
// Runtime + shared types and helpers.
@@ -42,6 +46,8 @@ export {
type DocsNavigation,
type DocsNavigationGroup,
type DocsNavigationPage,
+ type DocsTableOfContentsItem,
+ type DocsTableOfContentsOptions,
type EnrichMarkdownFrontmatterConfig,
enrichMarkdownFrontmatter,
isAgentReadabilityArtifactPath,
@@ -59,4 +65,5 @@ export {
renderSitemapMarkdown,
renderSitemapXml,
resolveMarkdownMirrorTarget,
+ slugifyDocsHeading,
} from "./readability";
diff --git a/packages/leadtype/src/llm/llm.test.ts b/packages/leadtype/src/llm/llm.test.ts
index 135c591..fd26342 100644
--- a/packages/leadtype/src/llm/llm.test.ts
+++ b/packages/leadtype/src/llm/llm.test.ts
@@ -4,10 +4,12 @@ import { tmpdir } from "node:os";
import path from "node:path";
import { afterEach, describe, expect, it } from "vitest";
import {
+ extractDocsTableOfContents,
generateAgentReadabilityArtifacts,
generateLLMFullContextFiles,
generateLlmsTxt,
resolveDocsNavigation,
+ resolveDocsTableOfContents,
} from "./llm";
import {
acceptsMarkdownHeader,
@@ -977,6 +979,77 @@ describe("createDocsHead", () => {
});
});
+describe("extractDocsTableOfContents", () => {
+ it("extracts nested h2/h3 entries and ignores frontmatter and code fences", () => {
+ const toc = extractDocsTableOfContents(
+ [
+ "---",
+ "title: Example",
+ "---",
+ "# Page title",
+ "## Install [`leadtype`](/docs/quickstart)",
+ "### Configure",
+ "```md",
+ "## Not a heading",
+ "```",
+ "#### Too deep",
+ "## Café API: Quick Start!",
+ ].join("\n"),
+ {
+ urlPath: "/docs/example",
+ absoluteUrl: "https://leadtype.dev/docs/example",
+ }
+ );
+
+ expect(toc).toEqual([
+ {
+ id: "install-leadtype",
+ title: "Install leadtype",
+ level: 2,
+ urlPath: "/docs/example",
+ urlWithHash: "/docs/example#install-leadtype",
+ absoluteUrlWithHash:
+ "https://leadtype.dev/docs/example#install-leadtype",
+ children: [
+ {
+ id: "configure",
+ title: "Configure",
+ level: 3,
+ urlPath: "/docs/example",
+ urlWithHash: "/docs/example#configure",
+ absoluteUrlWithHash: "https://leadtype.dev/docs/example#configure",
+ children: [],
+ },
+ ],
+ },
+ {
+ id: "cafe-api-quick-start",
+ title: "Café API Quick Start!",
+ level: 2,
+ urlPath: "/docs/example",
+ urlWithHash: "/docs/example#cafe-api-quick-start",
+ absoluteUrlWithHash:
+ "https://leadtype.dev/docs/example#cafe-api-quick-start",
+ children: [],
+ },
+ ]);
+ });
+
+ it("respects custom heading level ranges", () => {
+ const toc = extractDocsTableOfContents(
+ ["# Page", "## Section", "### Child", "#### Detail"].join("\n"),
+ {
+ urlPath: "/docs/example",
+ absoluteUrl: "https://leadtype.dev/docs/example",
+ },
+ { minLevel: 3, maxLevel: 4 }
+ );
+
+ expect(toc.map((item) => item.title)).toEqual(["Child"]);
+ expect(toc[0]?.children.map((item) => item.title)).toEqual(["Detail"]);
+ });
+});
+
describe("resolveDocsNavigation", () => {
it("returns the group tree, attached pages, and unknown-group references", async () => {
const projectDir = await createTempProject();
@@ -984,6 +1057,7 @@ describe("resolveDocsNavigation", () => {
{
relativePath: "frameworks/react.mdx",
frontmatter: "title: React\ndescription: React.\ngroup: react",
+ body: "## Install\n\n### Configure",
},
{
relativePath: "frameworks/next.mdx",
@@ -1026,6 +1100,18 @@ describe("resolveDocsNavigation", () => {
const reactPages = nav.groups[0]?.children[0]?.pages.map((p) => p.title);
expect(reactPages).toContain("React");
expect(reactPages).toContain("Rate Limit");
+ const reactPage = nav.groups[0]?.children[0]?.pages.find(
+ (page) => page.title === "React"
+ );
+ expect(reactPage?.toc[0]).toMatchObject({
+ id: "install",
+ title: "Install",
+ urlWithHash: "/docs/frameworks/react#install",
+ });
+ expect(reactPage?.toc[0]?.children[0]).toMatchObject({
+ id: "configure",
+ title: "Configure",
+ });
const ungroupedTitles = nav.ungrouped.map((p) => p.title);
expect(ungroupedTitles).toContain("Ungrouped");
@@ -1035,4 +1121,58 @@ describe("resolveDocsNavigation", () => {
slug: "mystery",
});
});
+
+ it("can disable TOC extraction while preserving page shape", async () => {
+ const projectDir = await createTempProject();
+ await seedDocs(projectDir, [
+ {
+ relativePath: "quickstart.mdx",
+ frontmatter:
+ "title: Quickstart\ndescription: Start.\ngroup: get-started",
+ body: "## Install",
+ },
+ ]);
+
+ const nav = await resolveDocsNavigation({
+ srcDir: projectDir,
+ groups: [{ slug: "get-started", title: "Get Started" }],
+ toc: false,
+ });
+
+ expect(nav.groups[0]?.pages[0]?.toc).toEqual([]);
+ });
+});
+
+describe("resolveDocsTableOfContents", () => {
+ it("returns TOC pages without requiring navigation groups", async () => {
+ const projectDir = await createTempProject();
+ await seedDocs(projectDir, [
+ {
+ relativePath: "quickstart.mdx",
+ frontmatter: "title: Quickstart\ndescription: Start.",
+ body: "## Install\n\n## Run",
+ },
+ ]);
+
+ const pages = await resolveDocsTableOfContents({
+ srcDir: projectDir,
+ baseUrl: "https://leadtype.dev",
+ });
+
+ expect(pages).toHaveLength(1);
+ expect(pages[0]).toMatchObject({
+ title: "Quickstart",
+ urlPath: "/docs/quickstart",
+ toc: [
+ {
+ title: "Install",
+ urlWithHash: "/docs/quickstart#install",
+ },
+ {
+ title: "Run",
+ urlWithHash: "/docs/quickstart#run",
+ },
+ ],
+ });
+ });
});
diff --git a/packages/leadtype/src/llm/llm.ts b/packages/leadtype/src/llm/llm.ts
index 8f9bb23..1066d6e 100644
--- a/packages/leadtype/src/llm/llm.ts
+++ b/packages/leadtype/src/llm/llm.ts
@@ -9,6 +9,7 @@ import {
} from "node:fs/promises";
import path from "node:path";
import matter from "gray-matter";
+import { slugifyDocsHeading } from "../internal/docs-heading";
import {
GENERIC_DOC_TITLES,
normalizeBaseUrl,
@@ -25,17 +26,29 @@ import {
type DocsNavigation,
type DocsNavigationGroup,
type DocsNavigationPage,
+ type DocsTableOfContentsItem,
+ type DocsTableOfContentsOptions,
renderRobotsTxt,
renderSitemapMarkdown,
renderSitemapXml,
} from "./readability";
+export { slugifyDocsHeading } from "../internal/docs-heading";
+
const DOCS_DIRNAME = "docs";
const AGENT_READABILITY_MANIFEST_FILE = "agent-readability.json";
const ROBOTS_FILE = "robots.txt";
const SITEMAP_MARKDOWN_FILE = "sitemap.md";
const SITEMAP_XML_FILE = "sitemap.xml";
const SLUG_PATTERN = /^[a-z0-9]+(?:-[a-z0-9]+)*$/i;
+const DEFAULT_TOC_MIN_LEVEL = 2;
+const DEFAULT_TOC_MAX_LEVEL = 3;
+const FRONTMATTER_PATTERN = /^---\s*\n[\s\S]*?\n---\s*\n?/;
+const HEADING_PATTERN = /^(#{1,6})\s+(.+)$/;
+const FENCE_PATTERN = /^```/;
+const MARKDOWN_LINK_PATTERN = /\[([^\]]+)\]\(([^)]+)\)/g;
+const MARKDOWN_INLINE_PATTERN = /[`*_~>#:[\](){}|]/g;
+const WHITESPACE_PATTERN = /\s+/g;
function assertValidGroupSlug(slug: string, parentPath: string[]): string {
if (!SLUG_PATTERN.test(slug)) {
@@ -60,11 +73,22 @@ export type SourceDoc = {
groups: string[];
};
+type SourceDocWithContent = SourceDoc & {
+ content: string;
+};
+
export type MarkdownDoc = SourceDoc & {
content: string;
lastModified: string;
};
+export type DocsTableOfContentsPage = Pick<
+ SourceDoc,
+ "absoluteUrl" | "description" | "relativePath" | "title" | "urlPath"
+> & {
+ toc: DocsTableOfContentsItem[];
+};
+
export type CuratedLink = {
urlPath: string;
title?: string;
@@ -154,6 +178,13 @@ export type ResolveDocsNavigationConfig = {
srcDir: string;
baseUrl?: string;
groups: DocsGroup[];
+ toc?: boolean | DocsTableOfContentsOptions;
+};
+
+export type ResolveDocsTableOfContentsConfig = {
+ srcDir: string;
+ baseUrl?: string;
+ options?: DocsTableOfContentsOptions;
};
type ResolvedGroup = {
@@ -291,6 +322,123 @@ function renderLink(link: RenderedLink): string {
return `- [${link.title}](${link.url}): ${link.description}`;
}
+function withHash(url: string, anchor: string): string {
+ return anchor ? `${url}#${anchor}` : url;
+}
+
+function stripFrontmatter(input: string): string {
+ return input.replace(FRONTMATTER_PATTERN, "");
+}
+
+function cleanHeadingText(input: string): string {
+ return input
+ .replace(/\s+#+\s*$/, "")
+ .replace(MARKDOWN_LINK_PATTERN, "$1")
+ .replace(/<[^>]+>/g, " ")
+ .replace(MARKDOWN_INLINE_PATTERN, " ")
+ .replace(WHITESPACE_PATTERN, " ")
+ .trim();
+}
+
+function resolveTocOptions(
+ options: DocsTableOfContentsOptions = {}
+): Required {
+ const minLevel = options.minLevel ?? DEFAULT_TOC_MIN_LEVEL;
+ const maxLevel = options.maxLevel ?? DEFAULT_TOC_MAX_LEVEL;
+ if (minLevel > maxLevel) {
+ throw new Error(
+ `Invalid TOC range: minLevel (${minLevel}) must be less than or equal to maxLevel (${maxLevel}).`
+ );
+ }
+ return { minLevel, maxLevel };
+}
+
+function resolveNavigationTocOptions(
+ toc: ResolveDocsNavigationConfig["toc"]
+): DocsTableOfContentsOptions | false {
+ if (toc === false) {
+ return false;
+ }
+ return toc === true || toc === undefined ? {} : toc;
+}
+
+function isTocHeadingLevel(level: number): level is 1 | 2 | 3 | 4 | 5 | 6 {
+ return level >= 1 && level <= 6;
+}
+
+/**
+ * Extract a nested table of contents from markdown or MDX content. This helper
+ * is framework-neutral and intentionally returns plain JSON so any docs app can
+ * render it with its own router and component system.
+ */
+export function extractDocsTableOfContents(
+ content: string,
+ page: Pick,
+ options?: DocsTableOfContentsOptions
+): DocsTableOfContentsItem[] {
+ const { minLevel, maxLevel } = resolveTocOptions(options);
+ const items: DocsTableOfContentsItem[] = [];
+ const stack: DocsTableOfContentsItem[] = [];
+ let inCodeFence = false;
+
+ for (const line of stripFrontmatter(content).split("\n")) {
+ if (FENCE_PATTERN.test(line.trim())) {
+ inCodeFence = !inCodeFence;
+ continue;
+ }
+
+ if (inCodeFence) {
+ continue;
+ }
+
+ const headingMatch = HEADING_PATTERN.exec(line.trim());
+ if (!headingMatch) {
+ continue;
+ }
+
+ const marker = headingMatch[1];
+ const rawTitle = headingMatch[2];
+ if (!(marker && rawTitle)) {
+ continue;
+ }
+
+ const level = marker.length;
+ if (!isTocHeadingLevel(level) || level < minLevel || level > maxLevel) {
+ continue;
+ }
+
+ const title = cleanHeadingText(rawTitle);
+ if (!title) {
+ continue;
+ }
+
+ const id = slugifyDocsHeading(title);
+ const item: DocsTableOfContentsItem = {
+ id,
+ title,
+ level,
+ urlPath: page.urlPath,
+ urlWithHash: withHash(page.urlPath, id),
+ absoluteUrlWithHash: withHash(page.absoluteUrl, id),
+ children: [],
+ };
+
+ while (stack.length > 0 && (stack.at(-1)?.level ?? 0) >= level) {
+ stack.pop();
+ }
+
+ const parent = stack.at(-1);
+ if (parent) {
+ parent.children.push(item);
+ } else {
+ items.push(item);
+ }
+ stack.push(item);
+ }
+
+ return items;
+}
+
function pageToRenderedLink(doc: SourceDoc): RenderedLink {
const title =
doc.title && !GENERIC_DOC_TITLES.has(doc.title.toLowerCase())
@@ -351,9 +499,9 @@ async function collectFiles(
async function readSourceDocs(
srcDir: string,
baseUrl: string
-): Promise