[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-cline-mintlify":3,"mdc-m4rw9m-key":33,"related-org-cline-mintlify":2004,"related-repo-cline-mintlify":2202},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"mintlify","build Mintlify documentation sites","Comprehensive reference for building Mintlify documentation sites. Use when creating pages, configuring docs.json, adding components, setting up navigation, or working with API references. Routes to detailed reference files for all components and configuration options.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"cline","Cline","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcline.png",[12,16,19],{"name":13,"slug":14,"type":15},"Documentation","documentation","tag",{"name":17,"slug":18,"type":15},"Reference","reference",{"name":20,"slug":21,"type":15},"Technical Writing","technical-writing",10,"https:\u002F\u002Fgithub.com\u002Fcline\u002Fskills","2026-07-12T08:13:19.204796",null,4,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"A collection of skills used at Cline","https:\u002F\u002Fgithub.com\u002Fcline\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fmintlify","---\nname: mintlify\ndescription: Comprehensive reference for building Mintlify documentation sites. Use when creating pages, configuring docs.json, adding components, setting up navigation, or working with API references. Routes to detailed reference files for all components and configuration options.\n---\n\n# Mintlify reference\n\nReference for building documentation with Mintlify. This file covers essentials that apply to every task. For detailed reference on specific topics, read the files listed in the reference index below.\n\n## Reference index\n\nRead these files **only when your task requires them**. They are in the `reference\u002F` directory next to this file.\n\n| File | When to read |\n|------|-------------|\n| `reference\u002Fcomponents.md` | Adding or modifying components (callouts, cards, steps, tabs, accordions, code groups, fields, frames, icons, tooltips, badges, trees, mermaid, panels, prompts, colors, tiles, updates, views). |\n| `reference\u002Fconfiguration.md` | Changing docs.json settings (theme, colors, logo, fonts, appearance, navbar, footer, banner, redirects, SEO, integrations, API config). Also covers snippets, hidden pages, .mintignore, custom CSS\u002FJS, and the complete frontmatter fields table. |\n| `reference\u002Fnavigation.md` | Modifying site navigation structure (groups, tabs, anchors, dropdowns, products, versions, languages, OpenAPI in nav). |\n| `reference\u002Fapi-docs.md` | Setting up API documentation (OpenAPI, AsyncAPI, MDX manual API pages, extensions, playground config). |\n\n## Before you start\n\nRead the project's `docs.json` file first. It defines the site's navigation, theme, colors, and configuration.\n\nSearch for existing content before creating new pages. You may need to update an existing page, add a section, or link to existing content rather than duplicating.\n\nRead 2-3 similar pages to match the site's voice, structure, and formatting.\n\n## File format\n\nMintlify uses MDX files (`.mdx` or `.md`) with YAML frontmatter.\n\n```\nproject\u002F\n├── docs.json           # Site configuration (required)\n├── index.mdx\n├── quickstart.mdx\n├── guides\u002F\n│   └── example.mdx\n├── openapi.yml         # API specification (optional)\n├── images\u002F             # Static assets\n│   └── example.png\n└── snippets\u002F           # Reusable components\n    └── component.jsx\n```\n\n### File naming\n\n- Match existing patterns in the directory\n- If no existing files or mixed file naming patterns, use kebab-case: `getting-started.mdx`\n- Add new pages to `docs.json` navigation or they won't appear in the sidebar\n\n### Internal links\n\n- Use root-relative paths without file extensions: `\u002Fgetting-started\u002Fquickstart`\n- Do not use relative paths (`..\u002F`) or absolute URLs for internal pages\n\n### Images\n\nStore images in an `images\u002F` directory. Reference with root-relative paths. All images require descriptive alt text.\n\n```mdx\n![Dashboard showing analytics overview](\u002Fimages\u002Fdashboard.png)\n```\n\n## Page frontmatter\n\nEvery page requires `title` in its frontmatter. Include `description` and `keywords` for SEO.\n\n```yaml\n---\ntitle: \"Clear, descriptive title\"\ndescription: \"Concise summary for SEO and navigation.\"\nkeywords: [\"relevant\", \"search\", \"terms\"]\n---\n```\n\n### Common frontmatter fields\n\n| Field | Type | Required | Description |\n|-------|------|----------|-------------|\n| `title` | string | Yes | Page title in navigation and browser tabs. |\n| `description` | string | No | Brief description for SEO. Displays under the title. |\n| `sidebarTitle` | string | No | Short title for sidebar navigation. |\n| `icon` | string | No | Lucide, Font Awesome, or Tabler icon name. Also accepts a URL or file path. |\n| `tag` | string | No | Label next to page title in sidebar (e.g., \"NEW\"). |\n| `hidden` | boolean | No | Remove from sidebar. Page still accessible by URL. |\n| `mode` | string | No | Page layout: `default`, `wide`, `custom`, `frame`, `center`. |\n| `keywords` | array | No | Search terms for internal search and SEO. |\n| `api` | string | No | API endpoint for interactive playground (e.g., `\"POST \u002Fusers\"`). |\n| `openapi` | string | No | OpenAPI endpoint reference (e.g., `\"GET \u002Fendpoint\"`). |\n\n## Quick component reference\n\nBelow are the most commonly used components. For full props and all 24 components, read `reference\u002Fcomponents.md`.\n\n### Callouts\n\n```mdx\n\u003CNote>Supplementary information, safe to skip.\u003C\u002FNote>\n\u003CInfo>Helpful context such as permissions or prerequisites.\u003C\u002FInfo>\n\u003CTip>Recommendations or best practices.\u003C\u002FTip>\n\u003CWarning>Potentially destructive actions or important caveats.\u003C\u002FWarning>\n\u003CCheck>Success confirmation or completed status.\u003C\u002FCheck>\n\u003CDanger>Critical warnings about data loss or breaking changes.\u003C\u002FDanger>\n```\n\n### Steps\n\n```mdx\n\u003CSteps>\n  \u003CStep title=\"First step\">\n    Instructions for step one.\n  \u003C\u002FStep>\n  \u003CStep title=\"Second step\">\n    Instructions for step two.\n  \u003C\u002FStep>\n\u003C\u002FSteps>\n```\n\n### Tabs and code groups\n\n```mdx\n\u003CTabs>\n  \u003CTab title=\"npm\">\n    ```bash\n    npm install package-name\n    ```\n  \u003C\u002FTab>\n  \u003CTab title=\"yarn\">\n    ```bash\n    yarn add package-name\n    ```\n  \u003C\u002FTab>\n\u003C\u002FTabs>\n```\n\n```mdx\n\u003CCodeGroup>\n\n```javascript example.js\nconst greeting = \"Hello, world!\";\n```\n\n```python example.py\ngreeting = \"Hello, world!\"\n```\n\n\u003C\u002FCodeGroup>\n```\n\n### Cards and columns\n\n```mdx\n\u003CColumns cols={2}>\n  \u003CCard title=\"First card\" icon=\"rocket\" href=\"\u002Fquickstart\">\n    Card description text.\n  \u003C\u002FCard>\n  \u003CCard title=\"Second card\" icon=\"book\" href=\"\u002Fguides\">\n    Card description text.\n  \u003C\u002FCard>\n\u003C\u002FColumns>\n```\n\nUse `\u003CColumns>` to arrange cards (or other content) in a grid. `cols` accepts 1-4.\n\n### Accordions\n\n```mdx\n\u003CAccordionGroup>\n  \u003CAccordion title=\"First section\">Content one.\u003C\u002FAccordion>\n  \u003CAccordion title=\"Second section\">Content two.\u003C\u002FAccordion>\n\u003C\u002FAccordionGroup>\n```\n\n## CLI commands\n\nInstall the CLI with `npm i -g mint`.\n\n### Local development\n\n- `mint dev` — Start local preview at localhost:3000. `--no-open` skips browser launch. `--groups \u003Cnames>` mocks user groups.\n- `mint validate` — Strict build validation; exits non-zero on warnings or errors.\n- `mint export` — Export a static site zip for air-gapped deployment. `--output \u003Cfile>` sets the output path (default: `export.zip`).\n\n### Content quality\n\n- `mint broken-links` — Check for broken internal links. `--check-anchors` validates `#` anchors. `--check-external` checks external URLs. `--check-snippets` checks links inside `\u003CSnippet>` components.\n- `mint a11y` — Accessibility checks (alt text, color contrast). `--skip-contrast` or `--skip-alt-text` to narrow scope.\n\n### Analytics\n\n- `mint analytics stats` — KPI numbers (views, visitors, searches). Options: `--subdomain`, `--from`, `--to`, `--format` (table\u002Fplain\u002Fjson\u002Fgraph), `--agents`\u002F`--humans` to filter traffic, `--page` to filter to one path.\n- `mint analytics search` — Search analytics. `--query` filters by search term substring.\n- `mint analytics feedback` — Feedback analytics. `--type` (code or page).\n- `mint analytics conversation list` — List assistant conversations.\n- `mint analytics conversation view \u003Cid>` — View a single conversation.\n- `mint analytics conversation buckets list` — List conversation category buckets.\n- `mint analytics conversation buckets view \u003Cid>` — View conversations in a bucket.\n\n### Authentication\n\n- `mint login` — Authenticate your Mintlify account.\n- `mint logout` — Log out of your account.\n- `mint status` — Show current authentication status.\n\n### Configuration\n\n- `mint config set \u003Ckey> \u003Cvalue>` — Persist a config value. Valid keys: `subdomain`, `dateFrom`, `dateTo`.\n- `mint config get \u003Ckey>` — Read a stored config value.\n- `mint config clear \u003Ckey>` — Remove a stored config value.\n\n### Project setup\n\n- `mint new [directory]` — Scaffold a new Mintlify docs site. `--theme` and `--name` set initial config.\n- `mint workflow` — Add a workflow to the docs repository.\n\n### Maintenance\n\n- `mint update` — Update the CLI to the latest version.\n- `mint version` — Show installed CLI and client versions.\n\n## Writing standards\n\n- Second-person voice (\"you\").\n- Active voice, direct language.\n- Sentence case for headings (\"Getting started\", not \"Getting Started\").\n- Sentence case for code block titles.\n- All code blocks must have language tags.\n- All images must have descriptive alt text.\n- No marketing language, filler phrases, or emoji.\n- Keep code examples simple, practical, and tested.\n\n## Common mistakes\n\n- Missing language tag on a code block (use ` ```python `, not ` ``` `).\n- Using relative paths (`..\u002Fpage`) instead of root-relative (`\u002Fsection\u002Fpage`).\n- Forgetting to add new pages to `docs.json` navigation.\n- Images without alt text.\n- Adding file extensions to internal links (`\u002Fpage.mdx` instead of `\u002Fpage`).\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,53,60,82,178,184,197,202,207,213,234,246,253,286,292,319,325,338,357,363,392,544,550,885,891,902,908,964,970,1042,1048,1151,1191,1208,1214,1283,1304,1310,1349,1355,1367,1373,1440,1446,1526,1532,1681,1687,1723,1729,1786,1792,1832,1838,1863,1869,1912,1918,1998],{"type":39,"tag":40,"props":41,"children":43},"element","h1",{"id":42},"mintlify-reference",[44],{"type":45,"value":46},"text","Mintlify reference",{"type":39,"tag":48,"props":49,"children":50},"p",{},[51],{"type":45,"value":52},"Reference for building documentation with Mintlify. This file covers essentials that apply to every task. For detailed reference on specific topics, read the files listed in the reference index below.",{"type":39,"tag":54,"props":55,"children":57},"h2",{"id":56},"reference-index",[58],{"type":45,"value":59},"Reference index",{"type":39,"tag":48,"props":61,"children":62},{},[63,65,71,73,80],{"type":45,"value":64},"Read these files ",{"type":39,"tag":66,"props":67,"children":68},"strong",{},[69],{"type":45,"value":70},"only when your task requires them",{"type":45,"value":72},". They are in the ",{"type":39,"tag":74,"props":75,"children":77},"code",{"className":76},[],[78],{"type":45,"value":79},"reference\u002F",{"type":45,"value":81}," directory next to this file.",{"type":39,"tag":83,"props":84,"children":85},"table",{},[86,105],{"type":39,"tag":87,"props":88,"children":89},"thead",{},[90],{"type":39,"tag":91,"props":92,"children":93},"tr",{},[94,100],{"type":39,"tag":95,"props":96,"children":97},"th",{},[98],{"type":45,"value":99},"File",{"type":39,"tag":95,"props":101,"children":102},{},[103],{"type":45,"value":104},"When to read",{"type":39,"tag":106,"props":107,"children":108},"tbody",{},[109,127,144,161],{"type":39,"tag":91,"props":110,"children":111},{},[112,122],{"type":39,"tag":113,"props":114,"children":115},"td",{},[116],{"type":39,"tag":74,"props":117,"children":119},{"className":118},[],[120],{"type":45,"value":121},"reference\u002Fcomponents.md",{"type":39,"tag":113,"props":123,"children":124},{},[125],{"type":45,"value":126},"Adding or modifying components (callouts, cards, steps, tabs, accordions, code groups, fields, frames, icons, tooltips, badges, trees, mermaid, panels, prompts, colors, tiles, updates, views).",{"type":39,"tag":91,"props":128,"children":129},{},[130,139],{"type":39,"tag":113,"props":131,"children":132},{},[133],{"type":39,"tag":74,"props":134,"children":136},{"className":135},[],[137],{"type":45,"value":138},"reference\u002Fconfiguration.md",{"type":39,"tag":113,"props":140,"children":141},{},[142],{"type":45,"value":143},"Changing docs.json settings (theme, colors, logo, fonts, appearance, navbar, footer, banner, redirects, SEO, integrations, API config). Also covers snippets, hidden pages, .mintignore, custom CSS\u002FJS, and the complete frontmatter fields table.",{"type":39,"tag":91,"props":145,"children":146},{},[147,156],{"type":39,"tag":113,"props":148,"children":149},{},[150],{"type":39,"tag":74,"props":151,"children":153},{"className":152},[],[154],{"type":45,"value":155},"reference\u002Fnavigation.md",{"type":39,"tag":113,"props":157,"children":158},{},[159],{"type":45,"value":160},"Modifying site navigation structure (groups, tabs, anchors, dropdowns, products, versions, languages, OpenAPI in nav).",{"type":39,"tag":91,"props":162,"children":163},{},[164,173],{"type":39,"tag":113,"props":165,"children":166},{},[167],{"type":39,"tag":74,"props":168,"children":170},{"className":169},[],[171],{"type":45,"value":172},"reference\u002Fapi-docs.md",{"type":39,"tag":113,"props":174,"children":175},{},[176],{"type":45,"value":177},"Setting up API documentation (OpenAPI, AsyncAPI, MDX manual API pages, extensions, playground config).",{"type":39,"tag":54,"props":179,"children":181},{"id":180},"before-you-start",[182],{"type":45,"value":183},"Before you start",{"type":39,"tag":48,"props":185,"children":186},{},[187,189,195],{"type":45,"value":188},"Read the project's ",{"type":39,"tag":74,"props":190,"children":192},{"className":191},[],[193],{"type":45,"value":194},"docs.json",{"type":45,"value":196}," file first. It defines the site's navigation, theme, colors, and configuration.",{"type":39,"tag":48,"props":198,"children":199},{},[200],{"type":45,"value":201},"Search for existing content before creating new pages. You may need to update an existing page, add a section, or link to existing content rather than duplicating.",{"type":39,"tag":48,"props":203,"children":204},{},[205],{"type":45,"value":206},"Read 2-3 similar pages to match the site's voice, structure, and formatting.",{"type":39,"tag":54,"props":208,"children":210},{"id":209},"file-format",[211],{"type":45,"value":212},"File format",{"type":39,"tag":48,"props":214,"children":215},{},[216,218,224,226,232],{"type":45,"value":217},"Mintlify uses MDX files (",{"type":39,"tag":74,"props":219,"children":221},{"className":220},[],[222],{"type":45,"value":223},".mdx",{"type":45,"value":225}," or ",{"type":39,"tag":74,"props":227,"children":229},{"className":228},[],[230],{"type":45,"value":231},".md",{"type":45,"value":233},") with YAML frontmatter.",{"type":39,"tag":235,"props":236,"children":240},"pre",{"className":237,"code":239,"language":45},[238],"language-text","project\u002F\n├── docs.json           # Site configuration (required)\n├── index.mdx\n├── quickstart.mdx\n├── guides\u002F\n│   └── example.mdx\n├── openapi.yml         # API specification (optional)\n├── images\u002F             # Static assets\n│   └── example.png\n└── snippets\u002F           # Reusable components\n    └── component.jsx\n",[241],{"type":39,"tag":74,"props":242,"children":244},{"__ignoreMap":243},"",[245],{"type":45,"value":239},{"type":39,"tag":247,"props":248,"children":250},"h3",{"id":249},"file-naming",[251],{"type":45,"value":252},"File naming",{"type":39,"tag":254,"props":255,"children":256},"ul",{},[257,263,274],{"type":39,"tag":258,"props":259,"children":260},"li",{},[261],{"type":45,"value":262},"Match existing patterns in the directory",{"type":39,"tag":258,"props":264,"children":265},{},[266,268],{"type":45,"value":267},"If no existing files or mixed file naming patterns, use kebab-case: ",{"type":39,"tag":74,"props":269,"children":271},{"className":270},[],[272],{"type":45,"value":273},"getting-started.mdx",{"type":39,"tag":258,"props":275,"children":276},{},[277,279,284],{"type":45,"value":278},"Add new pages to ",{"type":39,"tag":74,"props":280,"children":282},{"className":281},[],[283],{"type":45,"value":194},{"type":45,"value":285}," navigation or they won't appear in the sidebar",{"type":39,"tag":247,"props":287,"children":289},{"id":288},"internal-links",[290],{"type":45,"value":291},"Internal links",{"type":39,"tag":254,"props":293,"children":294},{},[295,306],{"type":39,"tag":258,"props":296,"children":297},{},[298,300],{"type":45,"value":299},"Use root-relative paths without file extensions: ",{"type":39,"tag":74,"props":301,"children":303},{"className":302},[],[304],{"type":45,"value":305},"\u002Fgetting-started\u002Fquickstart",{"type":39,"tag":258,"props":307,"children":308},{},[309,311,317],{"type":45,"value":310},"Do not use relative paths (",{"type":39,"tag":74,"props":312,"children":314},{"className":313},[],[315],{"type":45,"value":316},"..\u002F",{"type":45,"value":318},") or absolute URLs for internal pages",{"type":39,"tag":247,"props":320,"children":322},{"id":321},"images",[323],{"type":45,"value":324},"Images",{"type":39,"tag":48,"props":326,"children":327},{},[328,330,336],{"type":45,"value":329},"Store images in an ",{"type":39,"tag":74,"props":331,"children":333},{"className":332},[],[334],{"type":45,"value":335},"images\u002F",{"type":45,"value":337}," directory. Reference with root-relative paths. All images require descriptive alt text.",{"type":39,"tag":235,"props":339,"children":343},{"className":340,"code":341,"language":342,"meta":243,"style":243},"language-mdx shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","![Dashboard showing analytics overview](\u002Fimages\u002Fdashboard.png)\n","mdx",[344],{"type":39,"tag":74,"props":345,"children":346},{"__ignoreMap":243},[347],{"type":39,"tag":348,"props":349,"children":352},"span",{"class":350,"line":351},"line",1,[353],{"type":39,"tag":348,"props":354,"children":355},{},[356],{"type":45,"value":341},{"type":39,"tag":54,"props":358,"children":360},{"id":359},"page-frontmatter",[361],{"type":45,"value":362},"Page frontmatter",{"type":39,"tag":48,"props":364,"children":365},{},[366,368,374,376,382,384,390],{"type":45,"value":367},"Every page requires ",{"type":39,"tag":74,"props":369,"children":371},{"className":370},[],[372],{"type":45,"value":373},"title",{"type":45,"value":375}," in its frontmatter. Include ",{"type":39,"tag":74,"props":377,"children":379},{"className":378},[],[380],{"type":45,"value":381},"description",{"type":45,"value":383}," and ",{"type":39,"tag":74,"props":385,"children":387},{"className":386},[],[388],{"type":45,"value":389},"keywords",{"type":45,"value":391}," for SEO.",{"type":39,"tag":235,"props":393,"children":397},{"className":394,"code":395,"language":396,"meta":243,"style":243},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","---\ntitle: \"Clear, descriptive title\"\ndescription: \"Concise summary for SEO and navigation.\"\nkeywords: [\"relevant\", \"search\", \"terms\"]\n---\n","yaml",[398],{"type":39,"tag":74,"props":399,"children":400},{"__ignoreMap":243},[401,410,441,466,536],{"type":39,"tag":348,"props":402,"children":403},{"class":350,"line":351},[404],{"type":39,"tag":348,"props":405,"children":407},{"style":406},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[408],{"type":45,"value":409},"---\n",{"type":39,"tag":348,"props":411,"children":413},{"class":350,"line":412},2,[414,419,425,430,436],{"type":39,"tag":348,"props":415,"children":417},{"style":416},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[418],{"type":45,"value":373},{"type":39,"tag":348,"props":420,"children":422},{"style":421},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[423],{"type":45,"value":424},":",{"type":39,"tag":348,"props":426,"children":427},{"style":421},[428],{"type":45,"value":429}," \"",{"type":39,"tag":348,"props":431,"children":433},{"style":432},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[434],{"type":45,"value":435},"Clear, descriptive title",{"type":39,"tag":348,"props":437,"children":438},{"style":421},[439],{"type":45,"value":440},"\"\n",{"type":39,"tag":348,"props":442,"children":444},{"class":350,"line":443},3,[445,449,453,457,462],{"type":39,"tag":348,"props":446,"children":447},{"style":416},[448],{"type":45,"value":381},{"type":39,"tag":348,"props":450,"children":451},{"style":421},[452],{"type":45,"value":424},{"type":39,"tag":348,"props":454,"children":455},{"style":421},[456],{"type":45,"value":429},{"type":39,"tag":348,"props":458,"children":459},{"style":432},[460],{"type":45,"value":461},"Concise summary for SEO and navigation.",{"type":39,"tag":348,"props":463,"children":464},{"style":421},[465],{"type":45,"value":440},{"type":39,"tag":348,"props":467,"children":468},{"class":350,"line":26},[469,473,477,482,487,492,496,501,505,510,514,518,522,527,531],{"type":39,"tag":348,"props":470,"children":471},{"style":416},[472],{"type":45,"value":389},{"type":39,"tag":348,"props":474,"children":475},{"style":421},[476],{"type":45,"value":424},{"type":39,"tag":348,"props":478,"children":479},{"style":421},[480],{"type":45,"value":481}," [",{"type":39,"tag":348,"props":483,"children":484},{"style":421},[485],{"type":45,"value":486},"\"",{"type":39,"tag":348,"props":488,"children":489},{"style":432},[490],{"type":45,"value":491},"relevant",{"type":39,"tag":348,"props":493,"children":494},{"style":421},[495],{"type":45,"value":486},{"type":39,"tag":348,"props":497,"children":498},{"style":421},[499],{"type":45,"value":500},",",{"type":39,"tag":348,"props":502,"children":503},{"style":421},[504],{"type":45,"value":429},{"type":39,"tag":348,"props":506,"children":507},{"style":432},[508],{"type":45,"value":509},"search",{"type":39,"tag":348,"props":511,"children":512},{"style":421},[513],{"type":45,"value":486},{"type":39,"tag":348,"props":515,"children":516},{"style":421},[517],{"type":45,"value":500},{"type":39,"tag":348,"props":519,"children":520},{"style":421},[521],{"type":45,"value":429},{"type":39,"tag":348,"props":523,"children":524},{"style":432},[525],{"type":45,"value":526},"terms",{"type":39,"tag":348,"props":528,"children":529},{"style":421},[530],{"type":45,"value":486},{"type":39,"tag":348,"props":532,"children":533},{"style":421},[534],{"type":45,"value":535},"]\n",{"type":39,"tag":348,"props":537,"children":539},{"class":350,"line":538},5,[540],{"type":39,"tag":348,"props":541,"children":542},{"style":406},[543],{"type":45,"value":409},{"type":39,"tag":247,"props":545,"children":547},{"id":546},"common-frontmatter-fields",[548],{"type":45,"value":549},"Common frontmatter fields",{"type":39,"tag":83,"props":551,"children":552},{},[553,579],{"type":39,"tag":87,"props":554,"children":555},{},[556],{"type":39,"tag":91,"props":557,"children":558},{},[559,564,569,574],{"type":39,"tag":95,"props":560,"children":561},{},[562],{"type":45,"value":563},"Field",{"type":39,"tag":95,"props":565,"children":566},{},[567],{"type":45,"value":568},"Type",{"type":39,"tag":95,"props":570,"children":571},{},[572],{"type":45,"value":573},"Required",{"type":39,"tag":95,"props":575,"children":576},{},[577],{"type":45,"value":578},"Description",{"type":39,"tag":106,"props":580,"children":581},{},[582,608,633,658,683,707,733,795,820,853],{"type":39,"tag":91,"props":583,"children":584},{},[585,593,598,603],{"type":39,"tag":113,"props":586,"children":587},{},[588],{"type":39,"tag":74,"props":589,"children":591},{"className":590},[],[592],{"type":45,"value":373},{"type":39,"tag":113,"props":594,"children":595},{},[596],{"type":45,"value":597},"string",{"type":39,"tag":113,"props":599,"children":600},{},[601],{"type":45,"value":602},"Yes",{"type":39,"tag":113,"props":604,"children":605},{},[606],{"type":45,"value":607},"Page title in navigation and browser tabs.",{"type":39,"tag":91,"props":609,"children":610},{},[611,619,623,628],{"type":39,"tag":113,"props":612,"children":613},{},[614],{"type":39,"tag":74,"props":615,"children":617},{"className":616},[],[618],{"type":45,"value":381},{"type":39,"tag":113,"props":620,"children":621},{},[622],{"type":45,"value":597},{"type":39,"tag":113,"props":624,"children":625},{},[626],{"type":45,"value":627},"No",{"type":39,"tag":113,"props":629,"children":630},{},[631],{"type":45,"value":632},"Brief description for SEO. Displays under the title.",{"type":39,"tag":91,"props":634,"children":635},{},[636,645,649,653],{"type":39,"tag":113,"props":637,"children":638},{},[639],{"type":39,"tag":74,"props":640,"children":642},{"className":641},[],[643],{"type":45,"value":644},"sidebarTitle",{"type":39,"tag":113,"props":646,"children":647},{},[648],{"type":45,"value":597},{"type":39,"tag":113,"props":650,"children":651},{},[652],{"type":45,"value":627},{"type":39,"tag":113,"props":654,"children":655},{},[656],{"type":45,"value":657},"Short title for sidebar navigation.",{"type":39,"tag":91,"props":659,"children":660},{},[661,670,674,678],{"type":39,"tag":113,"props":662,"children":663},{},[664],{"type":39,"tag":74,"props":665,"children":667},{"className":666},[],[668],{"type":45,"value":669},"icon",{"type":39,"tag":113,"props":671,"children":672},{},[673],{"type":45,"value":597},{"type":39,"tag":113,"props":675,"children":676},{},[677],{"type":45,"value":627},{"type":39,"tag":113,"props":679,"children":680},{},[681],{"type":45,"value":682},"Lucide, Font Awesome, or Tabler icon name. Also accepts a URL or file path.",{"type":39,"tag":91,"props":684,"children":685},{},[686,694,698,702],{"type":39,"tag":113,"props":687,"children":688},{},[689],{"type":39,"tag":74,"props":690,"children":692},{"className":691},[],[693],{"type":45,"value":15},{"type":39,"tag":113,"props":695,"children":696},{},[697],{"type":45,"value":597},{"type":39,"tag":113,"props":699,"children":700},{},[701],{"type":45,"value":627},{"type":39,"tag":113,"props":703,"children":704},{},[705],{"type":45,"value":706},"Label next to page title in sidebar (e.g., \"NEW\").",{"type":39,"tag":91,"props":708,"children":709},{},[710,719,724,728],{"type":39,"tag":113,"props":711,"children":712},{},[713],{"type":39,"tag":74,"props":714,"children":716},{"className":715},[],[717],{"type":45,"value":718},"hidden",{"type":39,"tag":113,"props":720,"children":721},{},[722],{"type":45,"value":723},"boolean",{"type":39,"tag":113,"props":725,"children":726},{},[727],{"type":45,"value":627},{"type":39,"tag":113,"props":729,"children":730},{},[731],{"type":45,"value":732},"Remove from sidebar. Page still accessible by URL.",{"type":39,"tag":91,"props":734,"children":735},{},[736,745,749,753],{"type":39,"tag":113,"props":737,"children":738},{},[739],{"type":39,"tag":74,"props":740,"children":742},{"className":741},[],[743],{"type":45,"value":744},"mode",{"type":39,"tag":113,"props":746,"children":747},{},[748],{"type":45,"value":597},{"type":39,"tag":113,"props":750,"children":751},{},[752],{"type":45,"value":627},{"type":39,"tag":113,"props":754,"children":755},{},[756,758,764,766,772,773,779,780,786,787,793],{"type":45,"value":757},"Page layout: ",{"type":39,"tag":74,"props":759,"children":761},{"className":760},[],[762],{"type":45,"value":763},"default",{"type":45,"value":765},", ",{"type":39,"tag":74,"props":767,"children":769},{"className":768},[],[770],{"type":45,"value":771},"wide",{"type":45,"value":765},{"type":39,"tag":74,"props":774,"children":776},{"className":775},[],[777],{"type":45,"value":778},"custom",{"type":45,"value":765},{"type":39,"tag":74,"props":781,"children":783},{"className":782},[],[784],{"type":45,"value":785},"frame",{"type":45,"value":765},{"type":39,"tag":74,"props":788,"children":790},{"className":789},[],[791],{"type":45,"value":792},"center",{"type":45,"value":794},".",{"type":39,"tag":91,"props":796,"children":797},{},[798,806,811,815],{"type":39,"tag":113,"props":799,"children":800},{},[801],{"type":39,"tag":74,"props":802,"children":804},{"className":803},[],[805],{"type":45,"value":389},{"type":39,"tag":113,"props":807,"children":808},{},[809],{"type":45,"value":810},"array",{"type":39,"tag":113,"props":812,"children":813},{},[814],{"type":45,"value":627},{"type":39,"tag":113,"props":816,"children":817},{},[818],{"type":45,"value":819},"Search terms for internal search and SEO.",{"type":39,"tag":91,"props":821,"children":822},{},[823,832,836,840],{"type":39,"tag":113,"props":824,"children":825},{},[826],{"type":39,"tag":74,"props":827,"children":829},{"className":828},[],[830],{"type":45,"value":831},"api",{"type":39,"tag":113,"props":833,"children":834},{},[835],{"type":45,"value":597},{"type":39,"tag":113,"props":837,"children":838},{},[839],{"type":45,"value":627},{"type":39,"tag":113,"props":841,"children":842},{},[843,845,851],{"type":45,"value":844},"API endpoint for interactive playground (e.g., ",{"type":39,"tag":74,"props":846,"children":848},{"className":847},[],[849],{"type":45,"value":850},"\"POST \u002Fusers\"",{"type":45,"value":852},").",{"type":39,"tag":91,"props":854,"children":855},{},[856,865,869,873],{"type":39,"tag":113,"props":857,"children":858},{},[859],{"type":39,"tag":74,"props":860,"children":862},{"className":861},[],[863],{"type":45,"value":864},"openapi",{"type":39,"tag":113,"props":866,"children":867},{},[868],{"type":45,"value":597},{"type":39,"tag":113,"props":870,"children":871},{},[872],{"type":45,"value":627},{"type":39,"tag":113,"props":874,"children":875},{},[876,878,884],{"type":45,"value":877},"OpenAPI endpoint reference (e.g., ",{"type":39,"tag":74,"props":879,"children":881},{"className":880},[],[882],{"type":45,"value":883},"\"GET \u002Fendpoint\"",{"type":45,"value":852},{"type":39,"tag":54,"props":886,"children":888},{"id":887},"quick-component-reference",[889],{"type":45,"value":890},"Quick component reference",{"type":39,"tag":48,"props":892,"children":893},{},[894,896,901],{"type":45,"value":895},"Below are the most commonly used components. For full props and all 24 components, read ",{"type":39,"tag":74,"props":897,"children":899},{"className":898},[],[900],{"type":45,"value":121},{"type":45,"value":794},{"type":39,"tag":247,"props":903,"children":905},{"id":904},"callouts",[906],{"type":45,"value":907},"Callouts",{"type":39,"tag":235,"props":909,"children":911},{"className":340,"code":910,"language":342,"meta":243,"style":243},"\u003CNote>Supplementary information, safe to skip.\u003C\u002FNote>\n\u003CInfo>Helpful context such as permissions or prerequisites.\u003C\u002FInfo>\n\u003CTip>Recommendations or best practices.\u003C\u002FTip>\n\u003CWarning>Potentially destructive actions or important caveats.\u003C\u002FWarning>\n\u003CCheck>Success confirmation or completed status.\u003C\u002FCheck>\n\u003CDanger>Critical warnings about data loss or breaking changes.\u003C\u002FDanger>\n",[912],{"type":39,"tag":74,"props":913,"children":914},{"__ignoreMap":243},[915,923,931,939,947,955],{"type":39,"tag":348,"props":916,"children":917},{"class":350,"line":351},[918],{"type":39,"tag":348,"props":919,"children":920},{},[921],{"type":45,"value":922},"\u003CNote>Supplementary information, safe to skip.\u003C\u002FNote>\n",{"type":39,"tag":348,"props":924,"children":925},{"class":350,"line":412},[926],{"type":39,"tag":348,"props":927,"children":928},{},[929],{"type":45,"value":930},"\u003CInfo>Helpful context such as permissions or prerequisites.\u003C\u002FInfo>\n",{"type":39,"tag":348,"props":932,"children":933},{"class":350,"line":443},[934],{"type":39,"tag":348,"props":935,"children":936},{},[937],{"type":45,"value":938},"\u003CTip>Recommendations or best practices.\u003C\u002FTip>\n",{"type":39,"tag":348,"props":940,"children":941},{"class":350,"line":26},[942],{"type":39,"tag":348,"props":943,"children":944},{},[945],{"type":45,"value":946},"\u003CWarning>Potentially destructive actions or important caveats.\u003C\u002FWarning>\n",{"type":39,"tag":348,"props":948,"children":949},{"class":350,"line":538},[950],{"type":39,"tag":348,"props":951,"children":952},{},[953],{"type":45,"value":954},"\u003CCheck>Success confirmation or completed status.\u003C\u002FCheck>\n",{"type":39,"tag":348,"props":956,"children":958},{"class":350,"line":957},6,[959],{"type":39,"tag":348,"props":960,"children":961},{},[962],{"type":45,"value":963},"\u003CDanger>Critical warnings about data loss or breaking changes.\u003C\u002FDanger>\n",{"type":39,"tag":247,"props":965,"children":967},{"id":966},"steps",[968],{"type":45,"value":969},"Steps",{"type":39,"tag":235,"props":971,"children":973},{"className":340,"code":972,"language":342,"meta":243,"style":243},"\u003CSteps>\n  \u003CStep title=\"First step\">\n    Instructions for step one.\n  \u003C\u002FStep>\n  \u003CStep title=\"Second step\">\n    Instructions for step two.\n  \u003C\u002FStep>\n\u003C\u002FSteps>\n",[974],{"type":39,"tag":74,"props":975,"children":976},{"__ignoreMap":243},[977,985,993,1001,1009,1017,1025,1033],{"type":39,"tag":348,"props":978,"children":979},{"class":350,"line":351},[980],{"type":39,"tag":348,"props":981,"children":982},{},[983],{"type":45,"value":984},"\u003CSteps>\n",{"type":39,"tag":348,"props":986,"children":987},{"class":350,"line":412},[988],{"type":39,"tag":348,"props":989,"children":990},{},[991],{"type":45,"value":992},"  \u003CStep title=\"First step\">\n",{"type":39,"tag":348,"props":994,"children":995},{"class":350,"line":443},[996],{"type":39,"tag":348,"props":997,"children":998},{},[999],{"type":45,"value":1000},"    Instructions for step one.\n",{"type":39,"tag":348,"props":1002,"children":1003},{"class":350,"line":26},[1004],{"type":39,"tag":348,"props":1005,"children":1006},{},[1007],{"type":45,"value":1008},"  \u003C\u002FStep>\n",{"type":39,"tag":348,"props":1010,"children":1011},{"class":350,"line":538},[1012],{"type":39,"tag":348,"props":1013,"children":1014},{},[1015],{"type":45,"value":1016},"  \u003CStep title=\"Second step\">\n",{"type":39,"tag":348,"props":1018,"children":1019},{"class":350,"line":957},[1020],{"type":39,"tag":348,"props":1021,"children":1022},{},[1023],{"type":45,"value":1024},"    Instructions for step two.\n",{"type":39,"tag":348,"props":1026,"children":1028},{"class":350,"line":1027},7,[1029],{"type":39,"tag":348,"props":1030,"children":1031},{},[1032],{"type":45,"value":1008},{"type":39,"tag":348,"props":1034,"children":1036},{"class":350,"line":1035},8,[1037],{"type":39,"tag":348,"props":1038,"children":1039},{},[1040],{"type":45,"value":1041},"\u003C\u002FSteps>\n",{"type":39,"tag":247,"props":1043,"children":1045},{"id":1044},"tabs-and-code-groups",[1046],{"type":45,"value":1047},"Tabs and code groups",{"type":39,"tag":235,"props":1049,"children":1051},{"className":340,"code":1050,"language":342,"meta":243,"style":243},"\u003CTabs>\n  \u003CTab title=\"npm\">\n    ```bash\n    npm install package-name\n    ```\n  \u003C\u002FTab>\n  \u003CTab title=\"yarn\">\n    ```bash\n    yarn add package-name\n    ```\n  \u003C\u002FTab>\n\u003C\u002FTabs>\n",[1052],{"type":39,"tag":74,"props":1053,"children":1054},{"__ignoreMap":243},[1055,1063,1071,1079,1087,1095,1103,1111,1118,1127,1134,1142],{"type":39,"tag":348,"props":1056,"children":1057},{"class":350,"line":351},[1058],{"type":39,"tag":348,"props":1059,"children":1060},{},[1061],{"type":45,"value":1062},"\u003CTabs>\n",{"type":39,"tag":348,"props":1064,"children":1065},{"class":350,"line":412},[1066],{"type":39,"tag":348,"props":1067,"children":1068},{},[1069],{"type":45,"value":1070},"  \u003CTab title=\"npm\">\n",{"type":39,"tag":348,"props":1072,"children":1073},{"class":350,"line":443},[1074],{"type":39,"tag":348,"props":1075,"children":1076},{},[1077],{"type":45,"value":1078},"    ```bash\n",{"type":39,"tag":348,"props":1080,"children":1081},{"class":350,"line":26},[1082],{"type":39,"tag":348,"props":1083,"children":1084},{},[1085],{"type":45,"value":1086},"    npm install package-name\n",{"type":39,"tag":348,"props":1088,"children":1089},{"class":350,"line":538},[1090],{"type":39,"tag":348,"props":1091,"children":1092},{},[1093],{"type":45,"value":1094},"    ```\n",{"type":39,"tag":348,"props":1096,"children":1097},{"class":350,"line":957},[1098],{"type":39,"tag":348,"props":1099,"children":1100},{},[1101],{"type":45,"value":1102},"  \u003C\u002FTab>\n",{"type":39,"tag":348,"props":1104,"children":1105},{"class":350,"line":1027},[1106],{"type":39,"tag":348,"props":1107,"children":1108},{},[1109],{"type":45,"value":1110},"  \u003CTab title=\"yarn\">\n",{"type":39,"tag":348,"props":1112,"children":1113},{"class":350,"line":1035},[1114],{"type":39,"tag":348,"props":1115,"children":1116},{},[1117],{"type":45,"value":1078},{"type":39,"tag":348,"props":1119,"children":1121},{"class":350,"line":1120},9,[1122],{"type":39,"tag":348,"props":1123,"children":1124},{},[1125],{"type":45,"value":1126},"    yarn add package-name\n",{"type":39,"tag":348,"props":1128,"children":1129},{"class":350,"line":22},[1130],{"type":39,"tag":348,"props":1131,"children":1132},{},[1133],{"type":45,"value":1094},{"type":39,"tag":348,"props":1135,"children":1137},{"class":350,"line":1136},11,[1138],{"type":39,"tag":348,"props":1139,"children":1140},{},[1141],{"type":45,"value":1102},{"type":39,"tag":348,"props":1143,"children":1145},{"class":350,"line":1144},12,[1146],{"type":39,"tag":348,"props":1147,"children":1148},{},[1149],{"type":45,"value":1150},"\u003C\u002FTabs>\n",{"type":39,"tag":235,"props":1152,"children":1154},{"className":340,"code":1153,"language":342,"meta":243,"style":243},"\u003CCodeGroup>\n\n```javascript example.js\nconst greeting = \"Hello, world!\";\n",[1155],{"type":39,"tag":74,"props":1156,"children":1157},{"__ignoreMap":243},[1158,1166,1175,1183],{"type":39,"tag":348,"props":1159,"children":1160},{"class":350,"line":351},[1161],{"type":39,"tag":348,"props":1162,"children":1163},{},[1164],{"type":45,"value":1165},"\u003CCodeGroup>\n",{"type":39,"tag":348,"props":1167,"children":1168},{"class":350,"line":412},[1169],{"type":39,"tag":348,"props":1170,"children":1172},{"emptyLinePlaceholder":1171},true,[1173],{"type":45,"value":1174},"\n",{"type":39,"tag":348,"props":1176,"children":1177},{"class":350,"line":443},[1178],{"type":39,"tag":348,"props":1179,"children":1180},{},[1181],{"type":45,"value":1182},"```javascript example.js\n",{"type":39,"tag":348,"props":1184,"children":1185},{"class":350,"line":26},[1186],{"type":39,"tag":348,"props":1187,"children":1188},{},[1189],{"type":45,"value":1190},"const greeting = \"Hello, world!\";\n",{"type":39,"tag":235,"props":1192,"children":1197},{"className":1193,"code":1194,"language":1195,"meta":1196,"style":243},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","greeting = \"Hello, world!\"\n","python","example.py",[1198],{"type":39,"tag":74,"props":1199,"children":1200},{"__ignoreMap":243},[1201],{"type":39,"tag":348,"props":1202,"children":1203},{"class":350,"line":351},[1204],{"type":39,"tag":348,"props":1205,"children":1206},{},[1207],{"type":45,"value":1194},{"type":39,"tag":247,"props":1209,"children":1211},{"id":1210},"cards-and-columns",[1212],{"type":45,"value":1213},"Cards and columns",{"type":39,"tag":235,"props":1215,"children":1217},{"className":340,"code":1216,"language":342,"meta":243,"style":243},"\u003CColumns cols={2}>\n  \u003CCard title=\"First card\" icon=\"rocket\" href=\"\u002Fquickstart\">\n    Card description text.\n  \u003C\u002FCard>\n  \u003CCard title=\"Second card\" icon=\"book\" href=\"\u002Fguides\">\n    Card description text.\n  \u003C\u002FCard>\n\u003C\u002FColumns>\n",[1218],{"type":39,"tag":74,"props":1219,"children":1220},{"__ignoreMap":243},[1221,1229,1237,1245,1253,1261,1268,1275],{"type":39,"tag":348,"props":1222,"children":1223},{"class":350,"line":351},[1224],{"type":39,"tag":348,"props":1225,"children":1226},{},[1227],{"type":45,"value":1228},"\u003CColumns cols={2}>\n",{"type":39,"tag":348,"props":1230,"children":1231},{"class":350,"line":412},[1232],{"type":39,"tag":348,"props":1233,"children":1234},{},[1235],{"type":45,"value":1236},"  \u003CCard title=\"First card\" icon=\"rocket\" href=\"\u002Fquickstart\">\n",{"type":39,"tag":348,"props":1238,"children":1239},{"class":350,"line":443},[1240],{"type":39,"tag":348,"props":1241,"children":1242},{},[1243],{"type":45,"value":1244},"    Card description text.\n",{"type":39,"tag":348,"props":1246,"children":1247},{"class":350,"line":26},[1248],{"type":39,"tag":348,"props":1249,"children":1250},{},[1251],{"type":45,"value":1252},"  \u003C\u002FCard>\n",{"type":39,"tag":348,"props":1254,"children":1255},{"class":350,"line":538},[1256],{"type":39,"tag":348,"props":1257,"children":1258},{},[1259],{"type":45,"value":1260},"  \u003CCard title=\"Second card\" icon=\"book\" href=\"\u002Fguides\">\n",{"type":39,"tag":348,"props":1262,"children":1263},{"class":350,"line":957},[1264],{"type":39,"tag":348,"props":1265,"children":1266},{},[1267],{"type":45,"value":1244},{"type":39,"tag":348,"props":1269,"children":1270},{"class":350,"line":1027},[1271],{"type":39,"tag":348,"props":1272,"children":1273},{},[1274],{"type":45,"value":1252},{"type":39,"tag":348,"props":1276,"children":1277},{"class":350,"line":1035},[1278],{"type":39,"tag":348,"props":1279,"children":1280},{},[1281],{"type":45,"value":1282},"\u003C\u002FColumns>\n",{"type":39,"tag":48,"props":1284,"children":1285},{},[1286,1288,1294,1296,1302],{"type":45,"value":1287},"Use ",{"type":39,"tag":74,"props":1289,"children":1291},{"className":1290},[],[1292],{"type":45,"value":1293},"\u003CColumns>",{"type":45,"value":1295}," to arrange cards (or other content) in a grid. ",{"type":39,"tag":74,"props":1297,"children":1299},{"className":1298},[],[1300],{"type":45,"value":1301},"cols",{"type":45,"value":1303}," accepts 1-4.",{"type":39,"tag":247,"props":1305,"children":1307},{"id":1306},"accordions",[1308],{"type":45,"value":1309},"Accordions",{"type":39,"tag":235,"props":1311,"children":1313},{"className":340,"code":1312,"language":342,"meta":243,"style":243},"\u003CAccordionGroup>\n  \u003CAccordion title=\"First section\">Content one.\u003C\u002FAccordion>\n  \u003CAccordion title=\"Second section\">Content two.\u003C\u002FAccordion>\n\u003C\u002FAccordionGroup>\n",[1314],{"type":39,"tag":74,"props":1315,"children":1316},{"__ignoreMap":243},[1317,1325,1333,1341],{"type":39,"tag":348,"props":1318,"children":1319},{"class":350,"line":351},[1320],{"type":39,"tag":348,"props":1321,"children":1322},{},[1323],{"type":45,"value":1324},"\u003CAccordionGroup>\n",{"type":39,"tag":348,"props":1326,"children":1327},{"class":350,"line":412},[1328],{"type":39,"tag":348,"props":1329,"children":1330},{},[1331],{"type":45,"value":1332},"  \u003CAccordion title=\"First section\">Content one.\u003C\u002FAccordion>\n",{"type":39,"tag":348,"props":1334,"children":1335},{"class":350,"line":443},[1336],{"type":39,"tag":348,"props":1337,"children":1338},{},[1339],{"type":45,"value":1340},"  \u003CAccordion title=\"Second section\">Content two.\u003C\u002FAccordion>\n",{"type":39,"tag":348,"props":1342,"children":1343},{"class":350,"line":26},[1344],{"type":39,"tag":348,"props":1345,"children":1346},{},[1347],{"type":45,"value":1348},"\u003C\u002FAccordionGroup>\n",{"type":39,"tag":54,"props":1350,"children":1352},{"id":1351},"cli-commands",[1353],{"type":45,"value":1354},"CLI commands",{"type":39,"tag":48,"props":1356,"children":1357},{},[1358,1360,1366],{"type":45,"value":1359},"Install the CLI with ",{"type":39,"tag":74,"props":1361,"children":1363},{"className":1362},[],[1364],{"type":45,"value":1365},"npm i -g mint",{"type":45,"value":794},{"type":39,"tag":247,"props":1368,"children":1370},{"id":1369},"local-development",[1371],{"type":45,"value":1372},"Local development",{"type":39,"tag":254,"props":1374,"children":1375},{},[1376,1403,1414],{"type":39,"tag":258,"props":1377,"children":1378},{},[1379,1385,1387,1393,1395,1401],{"type":39,"tag":74,"props":1380,"children":1382},{"className":1381},[],[1383],{"type":45,"value":1384},"mint dev",{"type":45,"value":1386}," — Start local preview at localhost:3000. ",{"type":39,"tag":74,"props":1388,"children":1390},{"className":1389},[],[1391],{"type":45,"value":1392},"--no-open",{"type":45,"value":1394}," skips browser launch. ",{"type":39,"tag":74,"props":1396,"children":1398},{"className":1397},[],[1399],{"type":45,"value":1400},"--groups \u003Cnames>",{"type":45,"value":1402}," mocks user groups.",{"type":39,"tag":258,"props":1404,"children":1405},{},[1406,1412],{"type":39,"tag":74,"props":1407,"children":1409},{"className":1408},[],[1410],{"type":45,"value":1411},"mint validate",{"type":45,"value":1413}," — Strict build validation; exits non-zero on warnings or errors.",{"type":39,"tag":258,"props":1415,"children":1416},{},[1417,1423,1425,1431,1433,1439],{"type":39,"tag":74,"props":1418,"children":1420},{"className":1419},[],[1421],{"type":45,"value":1422},"mint export",{"type":45,"value":1424}," — Export a static site zip for air-gapped deployment. ",{"type":39,"tag":74,"props":1426,"children":1428},{"className":1427},[],[1429],{"type":45,"value":1430},"--output \u003Cfile>",{"type":45,"value":1432}," sets the output path (default: ",{"type":39,"tag":74,"props":1434,"children":1436},{"className":1435},[],[1437],{"type":45,"value":1438},"export.zip",{"type":45,"value":852},{"type":39,"tag":247,"props":1441,"children":1443},{"id":1442},"content-quality",[1444],{"type":45,"value":1445},"Content quality",{"type":39,"tag":254,"props":1447,"children":1448},{},[1449,1500],{"type":39,"tag":258,"props":1450,"children":1451},{},[1452,1458,1460,1466,1468,1474,1476,1482,1484,1490,1492,1498],{"type":39,"tag":74,"props":1453,"children":1455},{"className":1454},[],[1456],{"type":45,"value":1457},"mint broken-links",{"type":45,"value":1459}," — Check for broken internal links. ",{"type":39,"tag":74,"props":1461,"children":1463},{"className":1462},[],[1464],{"type":45,"value":1465},"--check-anchors",{"type":45,"value":1467}," validates ",{"type":39,"tag":74,"props":1469,"children":1471},{"className":1470},[],[1472],{"type":45,"value":1473},"#",{"type":45,"value":1475}," anchors. ",{"type":39,"tag":74,"props":1477,"children":1479},{"className":1478},[],[1480],{"type":45,"value":1481},"--check-external",{"type":45,"value":1483}," checks external URLs. ",{"type":39,"tag":74,"props":1485,"children":1487},{"className":1486},[],[1488],{"type":45,"value":1489},"--check-snippets",{"type":45,"value":1491}," checks links inside ",{"type":39,"tag":74,"props":1493,"children":1495},{"className":1494},[],[1496],{"type":45,"value":1497},"\u003CSnippet>",{"type":45,"value":1499}," components.",{"type":39,"tag":258,"props":1501,"children":1502},{},[1503,1509,1511,1517,1518,1524],{"type":39,"tag":74,"props":1504,"children":1506},{"className":1505},[],[1507],{"type":45,"value":1508},"mint a11y",{"type":45,"value":1510}," — Accessibility checks (alt text, color contrast). ",{"type":39,"tag":74,"props":1512,"children":1514},{"className":1513},[],[1515],{"type":45,"value":1516},"--skip-contrast",{"type":45,"value":225},{"type":39,"tag":74,"props":1519,"children":1521},{"className":1520},[],[1522],{"type":45,"value":1523},"--skip-alt-text",{"type":45,"value":1525}," to narrow scope.",{"type":39,"tag":247,"props":1527,"children":1529},{"id":1528},"analytics",[1530],{"type":45,"value":1531},"Analytics",{"type":39,"tag":254,"props":1533,"children":1534},{},[1535,1599,1618,1637,1648,1659,1670],{"type":39,"tag":258,"props":1536,"children":1537},{},[1538,1544,1546,1552,1553,1559,1560,1566,1567,1573,1575,1581,1583,1589,1591,1597],{"type":39,"tag":74,"props":1539,"children":1541},{"className":1540},[],[1542],{"type":45,"value":1543},"mint analytics stats",{"type":45,"value":1545}," — KPI numbers (views, visitors, searches). Options: ",{"type":39,"tag":74,"props":1547,"children":1549},{"className":1548},[],[1550],{"type":45,"value":1551},"--subdomain",{"type":45,"value":765},{"type":39,"tag":74,"props":1554,"children":1556},{"className":1555},[],[1557],{"type":45,"value":1558},"--from",{"type":45,"value":765},{"type":39,"tag":74,"props":1561,"children":1563},{"className":1562},[],[1564],{"type":45,"value":1565},"--to",{"type":45,"value":765},{"type":39,"tag":74,"props":1568,"children":1570},{"className":1569},[],[1571],{"type":45,"value":1572},"--format",{"type":45,"value":1574}," (table\u002Fplain\u002Fjson\u002Fgraph), ",{"type":39,"tag":74,"props":1576,"children":1578},{"className":1577},[],[1579],{"type":45,"value":1580},"--agents",{"type":45,"value":1582},"\u002F",{"type":39,"tag":74,"props":1584,"children":1586},{"className":1585},[],[1587],{"type":45,"value":1588},"--humans",{"type":45,"value":1590}," to filter traffic, ",{"type":39,"tag":74,"props":1592,"children":1594},{"className":1593},[],[1595],{"type":45,"value":1596},"--page",{"type":45,"value":1598}," to filter to one path.",{"type":39,"tag":258,"props":1600,"children":1601},{},[1602,1608,1610,1616],{"type":39,"tag":74,"props":1603,"children":1605},{"className":1604},[],[1606],{"type":45,"value":1607},"mint analytics search",{"type":45,"value":1609}," — Search analytics. ",{"type":39,"tag":74,"props":1611,"children":1613},{"className":1612},[],[1614],{"type":45,"value":1615},"--query",{"type":45,"value":1617}," filters by search term substring.",{"type":39,"tag":258,"props":1619,"children":1620},{},[1621,1627,1629,1635],{"type":39,"tag":74,"props":1622,"children":1624},{"className":1623},[],[1625],{"type":45,"value":1626},"mint analytics feedback",{"type":45,"value":1628}," — Feedback analytics. ",{"type":39,"tag":74,"props":1630,"children":1632},{"className":1631},[],[1633],{"type":45,"value":1634},"--type",{"type":45,"value":1636}," (code or page).",{"type":39,"tag":258,"props":1638,"children":1639},{},[1640,1646],{"type":39,"tag":74,"props":1641,"children":1643},{"className":1642},[],[1644],{"type":45,"value":1645},"mint analytics conversation list",{"type":45,"value":1647}," — List assistant conversations.",{"type":39,"tag":258,"props":1649,"children":1650},{},[1651,1657],{"type":39,"tag":74,"props":1652,"children":1654},{"className":1653},[],[1655],{"type":45,"value":1656},"mint analytics conversation view \u003Cid>",{"type":45,"value":1658}," — View a single conversation.",{"type":39,"tag":258,"props":1660,"children":1661},{},[1662,1668],{"type":39,"tag":74,"props":1663,"children":1665},{"className":1664},[],[1666],{"type":45,"value":1667},"mint analytics conversation buckets list",{"type":45,"value":1669}," — List conversation category buckets.",{"type":39,"tag":258,"props":1671,"children":1672},{},[1673,1679],{"type":39,"tag":74,"props":1674,"children":1676},{"className":1675},[],[1677],{"type":45,"value":1678},"mint analytics conversation buckets view \u003Cid>",{"type":45,"value":1680}," — View conversations in a bucket.",{"type":39,"tag":247,"props":1682,"children":1684},{"id":1683},"authentication",[1685],{"type":45,"value":1686},"Authentication",{"type":39,"tag":254,"props":1688,"children":1689},{},[1690,1701,1712],{"type":39,"tag":258,"props":1691,"children":1692},{},[1693,1699],{"type":39,"tag":74,"props":1694,"children":1696},{"className":1695},[],[1697],{"type":45,"value":1698},"mint login",{"type":45,"value":1700}," — Authenticate your Mintlify account.",{"type":39,"tag":258,"props":1702,"children":1703},{},[1704,1710],{"type":39,"tag":74,"props":1705,"children":1707},{"className":1706},[],[1708],{"type":45,"value":1709},"mint logout",{"type":45,"value":1711}," — Log out of your account.",{"type":39,"tag":258,"props":1713,"children":1714},{},[1715,1721],{"type":39,"tag":74,"props":1716,"children":1718},{"className":1717},[],[1719],{"type":45,"value":1720},"mint status",{"type":45,"value":1722}," — Show current authentication status.",{"type":39,"tag":247,"props":1724,"children":1726},{"id":1725},"configuration",[1727],{"type":45,"value":1728},"Configuration",{"type":39,"tag":254,"props":1730,"children":1731},{},[1732,1764,1775],{"type":39,"tag":258,"props":1733,"children":1734},{},[1735,1741,1743,1749,1750,1756,1757,1763],{"type":39,"tag":74,"props":1736,"children":1738},{"className":1737},[],[1739],{"type":45,"value":1740},"mint config set \u003Ckey> \u003Cvalue>",{"type":45,"value":1742}," — Persist a config value. Valid keys: ",{"type":39,"tag":74,"props":1744,"children":1746},{"className":1745},[],[1747],{"type":45,"value":1748},"subdomain",{"type":45,"value":765},{"type":39,"tag":74,"props":1751,"children":1753},{"className":1752},[],[1754],{"type":45,"value":1755},"dateFrom",{"type":45,"value":765},{"type":39,"tag":74,"props":1758,"children":1760},{"className":1759},[],[1761],{"type":45,"value":1762},"dateTo",{"type":45,"value":794},{"type":39,"tag":258,"props":1765,"children":1766},{},[1767,1773],{"type":39,"tag":74,"props":1768,"children":1770},{"className":1769},[],[1771],{"type":45,"value":1772},"mint config get \u003Ckey>",{"type":45,"value":1774}," — Read a stored config value.",{"type":39,"tag":258,"props":1776,"children":1777},{},[1778,1784],{"type":39,"tag":74,"props":1779,"children":1781},{"className":1780},[],[1782],{"type":45,"value":1783},"mint config clear \u003Ckey>",{"type":45,"value":1785}," — Remove a stored config value.",{"type":39,"tag":247,"props":1787,"children":1789},{"id":1788},"project-setup",[1790],{"type":45,"value":1791},"Project setup",{"type":39,"tag":254,"props":1793,"children":1794},{},[1795,1821],{"type":39,"tag":258,"props":1796,"children":1797},{},[1798,1804,1806,1812,1813,1819],{"type":39,"tag":74,"props":1799,"children":1801},{"className":1800},[],[1802],{"type":45,"value":1803},"mint new [directory]",{"type":45,"value":1805}," — Scaffold a new Mintlify docs site. ",{"type":39,"tag":74,"props":1807,"children":1809},{"className":1808},[],[1810],{"type":45,"value":1811},"--theme",{"type":45,"value":383},{"type":39,"tag":74,"props":1814,"children":1816},{"className":1815},[],[1817],{"type":45,"value":1818},"--name",{"type":45,"value":1820}," set initial config.",{"type":39,"tag":258,"props":1822,"children":1823},{},[1824,1830],{"type":39,"tag":74,"props":1825,"children":1827},{"className":1826},[],[1828],{"type":45,"value":1829},"mint workflow",{"type":45,"value":1831}," — Add a workflow to the docs repository.",{"type":39,"tag":247,"props":1833,"children":1835},{"id":1834},"maintenance",[1836],{"type":45,"value":1837},"Maintenance",{"type":39,"tag":254,"props":1839,"children":1840},{},[1841,1852],{"type":39,"tag":258,"props":1842,"children":1843},{},[1844,1850],{"type":39,"tag":74,"props":1845,"children":1847},{"className":1846},[],[1848],{"type":45,"value":1849},"mint update",{"type":45,"value":1851}," — Update the CLI to the latest version.",{"type":39,"tag":258,"props":1853,"children":1854},{},[1855,1861],{"type":39,"tag":74,"props":1856,"children":1858},{"className":1857},[],[1859],{"type":45,"value":1860},"mint version",{"type":45,"value":1862}," — Show installed CLI and client versions.",{"type":39,"tag":54,"props":1864,"children":1866},{"id":1865},"writing-standards",[1867],{"type":45,"value":1868},"Writing standards",{"type":39,"tag":254,"props":1870,"children":1871},{},[1872,1877,1882,1887,1892,1897,1902,1907],{"type":39,"tag":258,"props":1873,"children":1874},{},[1875],{"type":45,"value":1876},"Second-person voice (\"you\").",{"type":39,"tag":258,"props":1878,"children":1879},{},[1880],{"type":45,"value":1881},"Active voice, direct language.",{"type":39,"tag":258,"props":1883,"children":1884},{},[1885],{"type":45,"value":1886},"Sentence case for headings (\"Getting started\", not \"Getting Started\").",{"type":39,"tag":258,"props":1888,"children":1889},{},[1890],{"type":45,"value":1891},"Sentence case for code block titles.",{"type":39,"tag":258,"props":1893,"children":1894},{},[1895],{"type":45,"value":1896},"All code blocks must have language tags.",{"type":39,"tag":258,"props":1898,"children":1899},{},[1900],{"type":45,"value":1901},"All images must have descriptive alt text.",{"type":39,"tag":258,"props":1903,"children":1904},{},[1905],{"type":45,"value":1906},"No marketing language, filler phrases, or emoji.",{"type":39,"tag":258,"props":1908,"children":1909},{},[1910],{"type":45,"value":1911},"Keep code examples simple, practical, and tested.",{"type":39,"tag":54,"props":1913,"children":1915},{"id":1914},"common-mistakes",[1916],{"type":45,"value":1917},"Common mistakes",{"type":39,"tag":254,"props":1919,"children":1920},{},[1921,1941,1961,1973,1978],{"type":39,"tag":258,"props":1922,"children":1923},{},[1924,1926,1932,1934,1940],{"type":45,"value":1925},"Missing language tag on a code block (use ",{"type":39,"tag":74,"props":1927,"children":1929},{"className":1928},[],[1930],{"type":45,"value":1931},"```python",{"type":45,"value":1933},", not ",{"type":39,"tag":74,"props":1935,"children":1937},{"className":1936},[],[1938],{"type":45,"value":1939},"```",{"type":45,"value":852},{"type":39,"tag":258,"props":1942,"children":1943},{},[1944,1946,1952,1954,1960],{"type":45,"value":1945},"Using relative paths (",{"type":39,"tag":74,"props":1947,"children":1949},{"className":1948},[],[1950],{"type":45,"value":1951},"..\u002Fpage",{"type":45,"value":1953},") instead of root-relative (",{"type":39,"tag":74,"props":1955,"children":1957},{"className":1956},[],[1958],{"type":45,"value":1959},"\u002Fsection\u002Fpage",{"type":45,"value":852},{"type":39,"tag":258,"props":1962,"children":1963},{},[1964,1966,1971],{"type":45,"value":1965},"Forgetting to add new pages to ",{"type":39,"tag":74,"props":1967,"children":1969},{"className":1968},[],[1970],{"type":45,"value":194},{"type":45,"value":1972}," navigation.",{"type":39,"tag":258,"props":1974,"children":1975},{},[1976],{"type":45,"value":1977},"Images without alt text.",{"type":39,"tag":258,"props":1979,"children":1980},{},[1981,1983,1989,1991,1997],{"type":45,"value":1982},"Adding file extensions to internal links (",{"type":39,"tag":74,"props":1984,"children":1986},{"className":1985},[],[1987],{"type":45,"value":1988},"\u002Fpage.mdx",{"type":45,"value":1990}," instead of ",{"type":39,"tag":74,"props":1992,"children":1994},{"className":1993},[],[1995],{"type":45,"value":1996},"\u002Fpage",{"type":45,"value":852},{"type":39,"tag":1999,"props":2000,"children":2001},"style",{},[2002],{"type":45,"value":2003},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2005,"total":2201},[2006,2025,2045,2062,2079,2095,2113,2125,2137,2155,2175,2188],{"slug":2007,"name":2007,"fn":2008,"description":2009,"org":2010,"tags":2011,"stars":22,"repoUrl":23,"updatedAt":2024},"amazon-location-service","integrate Amazon Location Service APIs","Integrates Amazon Location Service APIs for AWS applications. Use this skill when users want to add maps (interactive MapLibre or static images); geocode addresses to coordinates or reverse geocode coordinates to addresses; calculate routes, travel times, or service areas; find places and businesses through text search, nearby search, or autocomplete suggestions; retrieve detailed place information including hours, contacts, and addresses; monitor geographical boundaries with geofences; or track device locations. Covers authentication, SDK integration, and all Amazon Location Service capabilities.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2012,2015,2018,2021],{"name":2013,"slug":2014,"type":15},"API Development","api-development",{"name":2016,"slug":2017,"type":15},"AWS","aws",{"name":2019,"slug":2020,"type":15},"Maps","maps",{"name":2022,"slug":2023,"type":15},"Navigation","navigation","2026-07-12T08:13:53.294026",{"slug":2026,"name":2026,"fn":2027,"description":2028,"org":2029,"tags":2030,"stars":22,"repoUrl":23,"updatedAt":2044},"amplify-workflow","build full-stack apps with AWS Amplify","Build and deploy full-stack web and mobile apps with AWS Amplify Gen2 (TypeScript code-first). Covers auth (Cognito), data (AppSync\u002FDynamoDB including schema modeling, enum types, relationships, authorization rules), storage (S3), functions, APIs, and AI (Amplify AI Kit with Bedrock). Supports React, Next.js, Vue, Angular, React Native, Flutter, Swift, and Android. Always use this skill for Amplify Gen2 topics — even for questions you think you know — it contains validated, version-specific patterns that prevent common mistakes. TRIGGER when: user mentions Amplify Gen2; project has amplify\u002F directory or amplify_outputs; code imports @aws-amplify packages; user asks about defineBackend, defineAuth, defineData, defineStorage, or npx ampx. SKIP: Amplify Gen1 (amplify CLI v6), standalone SAM\u002FCDK without Amplify (use aws-serverless), direct Bedrock without Amplify AI Kit (use bedrock).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2031,2034,2035,2038,2041],{"name":2032,"slug":2033,"type":15},"Auth","auth",{"name":2016,"slug":2017,"type":15},{"name":2036,"slug":2037,"type":15},"Database","database",{"name":2039,"slug":2040,"type":15},"Frontend","frontend",{"name":2042,"slug":2043,"type":15},"TypeScript","typescript","2026-07-12T08:13:47.134012",{"slug":2046,"name":2046,"fn":2047,"description":2048,"org":2049,"tags":2050,"stars":22,"repoUrl":23,"updatedAt":2061},"analyzer","analyze queried data for trends","Analyze queried data for trends, week-over-week comparisons, distributions, funnels, cohorts, top-N lists, anomalies, sanity checks, and report-ready findings. Use after or alongside ClickHouse queries when the user wants insight rather than raw rows.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2051,2052,2055,2058],{"name":1531,"slug":1528,"type":15},{"name":2053,"slug":2054,"type":15},"ClickHouse","clickhouse",{"name":2056,"slug":2057,"type":15},"Data Analysis","data-analysis",{"name":2059,"slug":2060,"type":15},"Statistics","statistics","2026-07-12T08:14:05.606036",{"slug":2063,"name":2063,"fn":2064,"description":2065,"org":2066,"tags":2067,"stars":22,"repoUrl":23,"updatedAt":2078},"artifact-management","manage and organize analysis artifacts","Save, organize, and describe reusable analysis artifacts such as SQL, result snapshots, CSV exports, summaries, caveats, plots, and report-ready files. Use when users ask to save, export, share, cite, reproduce, or organize data-analysis outputs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2068,2069,2072,2075],{"name":2056,"slug":2057,"type":15},{"name":2070,"slug":2071,"type":15},"Productivity","productivity",{"name":2073,"slug":2074,"type":15},"Reporting","reporting",{"name":2076,"slug":2077,"type":15},"SQL","sql","2026-07-12T08:14:09.265555",{"slug":2080,"name":2080,"fn":2081,"description":2082,"org":2083,"tags":2084,"stars":22,"repoUrl":23,"updatedAt":2094},"attorney-assist","connect with attorneys for legal consultation","Connects the user with a LegalZoom attorney for legal consultation. Use when a user asks about attorneys, lawyers, or legal help, or when contract review reveals high risks or low-confidence findings.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2085,2088,2091],{"name":2086,"slug":2087,"type":15},"Contracts","contracts",{"name":2089,"slug":2090,"type":15},"Legal","legal",{"name":2092,"slug":2093,"type":15},"Risk Assessment","risk-assessment","2026-07-12T08:13:45.878361",{"slug":2096,"name":2096,"fn":2097,"description":2098,"org":2099,"tags":2100,"stars":22,"repoUrl":23,"updatedAt":2112},"building-pydantic-ai-agents","build AI agents with Pydantic AI","Build AI agents with Pydantic AI — tools, capabilities (including on-demand loading), structured output, streaming, testing, and multi-agent patterns. Use when the user mentions Pydantic AI, imports pydantic_ai, or asks to build an AI agent, add tools\u002Fcapabilities, defer capability loading, stream output, define agents from YAML, or test agent behavior.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2101,2104,2107,2110],{"name":2102,"slug":2103,"type":15},"Agents","agents",{"name":2105,"slug":2106,"type":15},"LLM","llm",{"name":2108,"slug":2109,"type":15},"Multi-Agent","multi-agent",{"name":2111,"slug":1195,"type":15},"Python","2026-07-12T08:14:01.893781",{"slug":2054,"name":2054,"fn":2114,"description":2115,"org":2116,"tags":2117,"stars":22,"repoUrl":23,"updatedAt":2124},"query ClickHouse databases via CLI","Connect to and query ClickHouse (a local server or a ClickHouse Cloud service) from the terminal using the official clickhousectl CLI, including the browser OAuth login flow. Use when the user wants to run SQL against ClickHouse, explore schemas and tables, inspect Cloud services, or authenticate clickhousectl. For building a local dev environment or deploying to Cloud, defer to the official ClickHouse skills (see Scope).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2118,2119,2122,2123],{"name":1531,"slug":1528,"type":15},{"name":2120,"slug":2121,"type":15},"CLI","cli",{"name":2053,"slug":2054,"type":15},{"name":2036,"slug":2037,"type":15},"2026-07-12T08:14:06.829692",{"slug":2126,"name":2126,"fn":2127,"description":2128,"org":2129,"tags":2130,"stars":22,"repoUrl":23,"updatedAt":2136},"cline-session-history","search and browse Cline session history","Search and browse Cline session history. Use when the user asks to find, list, inspect, or export Cline sessions by time period, prompt content, status, model, provider, source, mode, workspace, or other criteria. Also use when the user wants to read a session transcript or export sessions to a directory. Trigger phrases include \"find my session\", \"search my session history\", \"show me past sessions\", \"what was that session where\", \"find the session that started with\", and any mention of past Cline conversations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2131,2132,2135],{"name":2102,"slug":2103,"type":15},{"name":2133,"slug":2134,"type":15},"History","history",{"name":2070,"slug":2071,"type":15},"2026-07-19T06:03:13.945151",{"slug":2138,"name":2138,"fn":2139,"description":2140,"org":2141,"tags":2142,"stars":22,"repoUrl":23,"updatedAt":2154},"convex-design","build reactive backends with Convex","Design and build reactive, type-safe, production-grade backends on Convex. Covers schema, queries\u002Fmutations\u002Factions, indexes, auth, file storage, scheduling, real-time multiplayer, mobile backends, and LLM\u002Fagent workflows on Convex's one-platform stack.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2143,2144,2147,2148,2151],{"name":2032,"slug":2033,"type":15},{"name":2145,"slug":2146,"type":15},"Backend","backend",{"name":2036,"slug":2037,"type":15},{"name":2149,"slug":2150,"type":15},"Real-time","real-time",{"name":2152,"slug":2153,"type":15},"Storage","storage","2026-07-12T08:13:37.101253",{"slug":2156,"name":2156,"fn":2157,"description":2158,"org":2159,"tags":2160,"stars":22,"repoUrl":23,"updatedAt":2174},"cosmosdb-best-practices","optimize Azure Cosmos DB performance","Azure Cosmos DB performance optimization and best practices guidelines for NoSQL,\npartitioning, queries, SDK usage, and vector search. Use when writing, reviewing,\nor refactoring code that interacts with Azure Cosmos DB, designing data models,\noptimizing queries, or implementing high-performance database operations.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2161,2164,2167,2168,2171],{"name":2162,"slug":2163,"type":15},"Azure","azure",{"name":2165,"slug":2166,"type":15},"Cosmos DB","cosmos-db",{"name":2036,"slug":2037,"type":15},{"name":2169,"slug":2170,"type":15},"NoSQL","nosql",{"name":2172,"slug":2173,"type":15},"Performance","performance","2026-07-12T08:13:54.531719",{"slug":2176,"name":2176,"fn":2177,"description":2178,"org":2179,"tags":2180,"stars":22,"repoUrl":23,"updatedAt":2187},"data-analyst","analyze ClickHouse analytics data","Act as an interactive data analyst for ClickHouse-backed analytics. Use when the user asks questions about internal data, metrics, dashboards, telemetry, active users, revenue, funnels, trends, distributions, or wants an analyst-style conversation, ad hoc SQL, charts, or a data export against ClickHouse (local or ClickHouse Cloud).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2181,2182,2183,2186],{"name":1531,"slug":1528,"type":15},{"name":2053,"slug":2054,"type":15},{"name":2184,"slug":2185,"type":15},"Dashboards","dashboards",{"name":2056,"slug":2057,"type":15},"2026-07-12T08:13:31.975246",{"slug":2189,"name":2189,"fn":2190,"description":2191,"org":2192,"tags":2193,"stars":22,"repoUrl":23,"updatedAt":2200},"dataproc-skills","manage Dataproc clusters and jobs","Skills to interact with your Dataproc clusters and jobs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2194,2197],{"name":2195,"slug":2196,"type":15},"Data Engineering","data-engineering",{"name":2198,"slug":2199,"type":15},"Operations","operations","2026-07-12T08:13:42.179275",45,{"items":2203,"total":2253},[2204,2211,2219,2226,2233,2239,2246],{"slug":2007,"name":2007,"fn":2008,"description":2009,"org":2205,"tags":2206,"stars":22,"repoUrl":23,"updatedAt":2024},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2207,2208,2209,2210],{"name":2013,"slug":2014,"type":15},{"name":2016,"slug":2017,"type":15},{"name":2019,"slug":2020,"type":15},{"name":2022,"slug":2023,"type":15},{"slug":2026,"name":2026,"fn":2027,"description":2028,"org":2212,"tags":2213,"stars":22,"repoUrl":23,"updatedAt":2044},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2214,2215,2216,2217,2218],{"name":2032,"slug":2033,"type":15},{"name":2016,"slug":2017,"type":15},{"name":2036,"slug":2037,"type":15},{"name":2039,"slug":2040,"type":15},{"name":2042,"slug":2043,"type":15},{"slug":2046,"name":2046,"fn":2047,"description":2048,"org":2220,"tags":2221,"stars":22,"repoUrl":23,"updatedAt":2061},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2222,2223,2224,2225],{"name":1531,"slug":1528,"type":15},{"name":2053,"slug":2054,"type":15},{"name":2056,"slug":2057,"type":15},{"name":2059,"slug":2060,"type":15},{"slug":2063,"name":2063,"fn":2064,"description":2065,"org":2227,"tags":2228,"stars":22,"repoUrl":23,"updatedAt":2078},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2229,2230,2231,2232],{"name":2056,"slug":2057,"type":15},{"name":2070,"slug":2071,"type":15},{"name":2073,"slug":2074,"type":15},{"name":2076,"slug":2077,"type":15},{"slug":2080,"name":2080,"fn":2081,"description":2082,"org":2234,"tags":2235,"stars":22,"repoUrl":23,"updatedAt":2094},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2236,2237,2238],{"name":2086,"slug":2087,"type":15},{"name":2089,"slug":2090,"type":15},{"name":2092,"slug":2093,"type":15},{"slug":2096,"name":2096,"fn":2097,"description":2098,"org":2240,"tags":2241,"stars":22,"repoUrl":23,"updatedAt":2112},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2242,2243,2244,2245],{"name":2102,"slug":2103,"type":15},{"name":2105,"slug":2106,"type":15},{"name":2108,"slug":2109,"type":15},{"name":2111,"slug":1195,"type":15},{"slug":2054,"name":2054,"fn":2114,"description":2115,"org":2247,"tags":2248,"stars":22,"repoUrl":23,"updatedAt":2124},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2249,2250,2251,2252],{"name":1531,"slug":1528,"type":15},{"name":2120,"slug":2121,"type":15},{"name":2053,"slug":2054,"type":15},{"name":2036,"slug":2037,"type":15},43]