Maintain this repository's Mintlify documentation from uploaded Markdown files. Use when asked to add, update, or organize docs pages in `docs/`, place new content under `get_started`, `core`, `core/models`, or `troubleshooting`, and keep `docs/docs.json` navigation in sync with new pages.
71
86%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Use this skill to ingest user-provided Markdown into the Mintlify docs tree, enforce required frontmatter, and update navigation entries in docs/docs.json.
Prefer the included script for deterministic page placement and nav updates.
references/docs-structure.md.core/new-feature -> docs/core/new-feature.md).python3 scripts/ingest_markdown_doc.py \
--source /absolute/path/to/upload.md \
--page core/new-feature \
--group "Core"--subgroup "Models" when adding pages under core/models.--dry-run first when the target placement is uncertain.docs/.docs/docs.json includes the new "/path/to/page" entry in the right group.title and description.Add a new page and nav entry:
python3 scripts/ingest_markdown_doc.py \
--source /absolute/path/to/upload.md \
--page get_started/advanced-setup \
--group "Get Started"Add a new Core > Models page and place it after an existing page:
python3 scripts/ingest_markdown_doc.py \
--source /absolute/path/to/model-guide.md \
--page core/models/new-provider \
--group "Core" \
--subgroup "Models" \
--insert-after /core/models/kimiPreview changes without writing files:
python3 scripts/ingest_markdown_doc.py \
--source /absolute/path/to/upload.md \
--page troubleshooting/new-issue \
--group "Troubleshooting" \
--dry-rundocs/<section>/<slug>.md.docs/docs.json as absolute doc routes (for example, "/core/concepts").title (required)description (required)icon (optional)/docs/images/<file> for image paths in Markdown/HTML blocks.references/docs-structure.md: Current Mintlify navigation map and folder structure for this repository.references/content-format.md: Frontmatter and content conventions for new docs pages.scripts/ingest_markdown_doc.py: Deterministic ingest/update script for uploaded Markdown files.9be8efc
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.