AI студия Владимира Ломтева
УСЛУГИПРОЕКТЫСТАТЬИБАЗА ЗНАНИЙМаркетплейсПолезные сервисы

Оставьте заявку,
чтобы обсудить проект

Напишите ваш вопрос, не забудьте указать телефон. Мы перезвоним и все расскажем.

Контакты

Москва

Работаем по всей России
и миру (онлайн)

+7 (999) 760-24-41

Ежедневно с 9:00 до 21:00

lamooof@gmail.com

По вопросам сотрудничества

TelegramWhatsApp

Есть предложение?

Напишите нам в мессенджеры

© 2025 AI студия Владимира Ломтева

Политика конфиденциальностиСогласие на обработку ПДн|ИНН 623412173261
    Mintlify — Скилл для ИИ-агентов | AI Рассвет

    Mintlify

    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.

    Скиллы для разработки#GitHub#codewithshreyans/skills#skills.sh
    Скачивания
    0
    В избранном
    0
    Комментарии
    0
    Просмотры
    2

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add codewithshreyans/skills --skill mintlify
    Скачать ZIP
    Версия
    1.0.0+c78ceb695f99
    Автор
    Владимир Ломтев
    Репозиторий
    codewithshreyans/skills
    GitHub: codewithshreyans/skills

    Как установить

    1. 1Скопируйте команду из блока установки.
    2. 2Запустите её в терминале из каталога проекта.

    Документация

    Mintlify reference

    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.

    Reference index

    Read these files only when your task requires them. They are in the reference/ directory next to this file. To find them, look in the same directory as this skill file (e.g., .claude/skills/mintlify/reference/).

    File When to read
    reference/components.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).
    reference/configuration.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/JS, and the complete frontmatter fields table.
    reference/navigation.md Modifying site navigation structure (groups, tabs, anchors, dropdowns, products, versions, languages, OpenAPI in nav).
    reference/api-docs.md Setting up API documentation (OpenAPI, AsyncAPI, MDX manual API pages, extensions, playground config).

    Before you start

    Read the project's docs.json file first. It defines the site's navigation, theme, colors, and configuration.

    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.

    Read 2-3 similar pages to match the site's voice, structure, and formatting.

    File format

    Mintlify uses MDX files (.mdx or .md) with YAML frontmatter.

    project/
    ├── docs.json           # Site configuration (required)
    ├── index.mdx
    ├── quickstart.mdx
    ├── guides/
    │   └── example.mdx
    ├── openapi.yml         # API specification (optional)
    ├── images/             # Static assets
    │   └── example.png
    └── snippets/           # Reusable components
        └── component.jsx
    

    File naming

    • Match existing patterns in the directory
    • If no existing files or mixed file naming patterns, use kebab-case: getting-started.mdx
    • Add new pages to docs.json navigation or they won't appear in the sidebar

    Internal links

    • Use root-relative paths without file extensions: /getting-started/quickstart
    • Do not use relative paths (../) or absolute URLs for internal pages

    Images

    Store images in an images/ directory. Reference with root-relative paths. All images require descriptive alt text.

    ![Dashboard showing analytics overview](/images/dashboard.png)
    

    Page frontmatter

    Every page requires title in its frontmatter. Include description and keywords for SEO.

    ---
    title: "Clear, descriptive title"
    description: "Concise summary for SEO and navigation."
    keywords: ["relevant", "search", "terms"]
    ---
    

    Common frontmatter fields

    Field Type Required Description
    title string Yes Page title in navigation and browser tabs.
    description string No Brief description for SEO. Displays under the title.
    sidebarTitle string No Short title for sidebar navigation.
    icon string No Lucide, Font Awesome, or Tabler icon name. Also accepts a URL or file path.
    tag string No Label next to page title in sidebar (e.g., "NEW").
    hidden boolean No Remove from sidebar. Page still accessible by URL.
    mode string No Page layout: default, wide, custom, frame, center.
    keywords array No Search terms for internal search and SEO.
    api string No API endpoint for interactive playground (e.g., "POST /users").
    openapi string No OpenAPI endpoint reference (e.g., "GET /endpoint").

    Quick component reference

    Below are the most commonly used components. For full props and all 24 components, read reference/components.md.

    Callouts

    <Note>Supplementary information, safe to skip.</Note>
    <Info>Helpful context such as permissions or prerequisites.</Info>
    <Tip>Recommendations or best practices.</Tip>
    <Warning>Potentially destructive actions or important caveats.</Warning>
    <Check>Success confirmation or completed status.</Check>
    <Danger>Critical warnings about data loss or breaking changes.</Danger>
    

    Steps

    <Steps>
      <Step title="First step">
        Instructions for step one.
      </Step>
      <Step title="Second step">
        Instructions for step two.
      </Step>
    </Steps>
    

    Tabs and code groups

    <Tabs>
      <Tab title="npm">
        ```bash
        npm install package-name
        ```
      </Tab>
      <Tab title="yarn">
        ```bash
        yarn add package-name
        ```
      </Tab>
    </Tabs>
    
    <CodeGroup>
    
    ```javascript example.js
    const greeting = "Hello, world!";
    
    greeting = "Hello, world!"
    
    ```

    Cards and columns

    <Columns cols={2}>
      <Card title="First card" icon="rocket" href="/quickstart">
        Card description text.
      </Card>
      <Card title="Second card" icon="book" href="/guides">
        Card description text.
      </Card>
    </Columns>
    

    Use <Columns> to arrange cards (or other content) in a grid. cols accepts 1-4.

    Accordions

    <AccordionGroup>
      <Accordion title="First section">Content one.</Accordion>
      <Accordion title="Second section">Content two.</Accordion>
    </AccordionGroup>
    

    CLI commands

    • npm i -g mint — Install the Mintlify CLI.
    • mint dev — Local preview at localhost:3000.
    • mint broken-links — Check internal links.
    • mint a11y — Check for accessibility issues.
    • mint validate — Validate documentation builds.
    • mint upgrade — Upgrade from mint.json to docs.json.

    Writing standards

    • Second-person voice ("you").
    • Active voice, direct language.
    • Sentence case for headings ("Getting started", not "Getting Started").
    • Sentence case for code block titles.
    • All code blocks must have language tags.
    • All images must have descriptive alt text.
    • No marketing language, filler phrases, or emoji.
    • Keep code examples simple, practical, and tested.

    Common mistakes

    • Missing language tag on a code block (use ```python, not ```).
    • Using relative paths (../page) instead of root-relative (/section/page).
    • Forgetting to add new pages to docs.json navigation.
    • Images without alt text.
    • Adding file extensions to internal links (/page.mdx instead of /page).

    Требования и возможности

    Источник пакета
    https://github.com/codewithshreyans/skills/tree/c78ceb695f99a478eb82161e868243dc9e826590/skills/mintlify

    Файлы версии

    ПутьРазмерSHA256
    SKILL.md7117d988587b4b290b7a...
    reference/api-docs.md208283ba6877c12a091a...
    reference/components.md10877fa9f3a258d17505a...
    reference/configuration.md11203d429d85f0216cd3c...
    reference/navigation.md5723af7b5547086f9152...

    Частые вопросы

    Как установить Mintlify?
    Используйте команду npx skills add codewithshreyans/skills --skill mintlify или скачайте ZIP-архив.
    Можно ли скачать Mintlify бесплатно?
    Да, опубликованную версию можно скачать из маркетплейса бесплатно.

    Похожие инструменты

    Смотреть все
    React DoctorUse when finishing a feature, fixing a bug, before committing React code, or when the user types `/doctor`, asks to scan, triage, or clean up React diagnostics. Covers lint, accessibility, bundle size, architecture. Includes a regression check and a full local-triage workflow that fetches the canonical playbook.Argent Android Emulator SetupSet up and connect to an Android emulator using argent MCP tools. Use when starting a new session on Android, booting an emulator, getting a device serial, or before any UI interaction task.Fireworks Tech GraphCreate technical diagrams such as software architecture, data flow, flowcharts, sequence diagrams, C4 reviews, cloud deployments, event streams, observability investigations, agent/memory systems, UML, ER, network topology, timelines, and technical concept maps, then export SVG, PNG, focused semantic SVG-to-GIF motion, or offline interactive HTML. Treat direct requests such as "Generate a GIF", "生成 GIF", or "制作 GIF" as motion requests, and use this skill when the user asks to visualize a system or engineering concept. Do not use for photos, raster artwork, or quantitative data charts.
    Комментарии

    Войдите, чтобы оставить комментарий.

    Комментариев пока нет.

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add codewithshreyans/skills --skill mintlify
    Скачать ZIP
    Версия
    1.0.0+c78ceb695f99
    Автор
    Владимир Ломтев
    Репозиторий
    codewithshreyans/skills
    GitHub: codewithshreyans/skills
    Modern Web GuidanceSearch tool for modern web development best practices. MANDATORY: Execute FIRST for all HTML/CSS and clientside JS tasks. Do NOT skip — web APIs evolve rapidly and training weights contain obsolete patterns.