Documentation Index
Fetch the complete documentation index at: https://docs.lilury.com/llms.txt
Use this file to discover all available pages before exploring further.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.What this repo is
A documentation site built on Mintlify. All pages are MDX files. Configuration lives indocs.json. The site is deployed automatically when changes are pushed to the default branch via the Mintlify GitHub app.
Development commands
Architecture
docs.json— single source of truth for site config: theme, colors, logo, navigation tabs/groups, navbar, footer, contextual menu options. Every page must be listed here undernavigationto appear in the site..mdxfiles — pages, each with YAML frontmatter (title,description, optionalicon). MDX allows JSX components inline.snippets/— shared content fragments. Files here are not rendered as standalone pages; import them into pages withimport Foo from '/snippets/foo.mdx'. Supports content snippets, variable exports, and arrow-function components (notfunctionkeyword).api-reference/openapi.json— OpenAPI spec used to auto-generate API reference pages.images/,logo/— static assets referenced from MDX anddocs.json.
Adding a page
- Create the
.mdxfile at the desired path. - Add that path (without extension) to
docs.jsonunder the appropriatenavigation.tabs[].groups[].pagesarray. - Missing from
docs.json= page won’t appear in nav (but won’t 404 if navigated to directly).
Reusable snippets
- Place snippet files in
snippets/. - Import with root-relative (
/snippets/foo.mdx) or relative (../snippets/foo.mdx) paths. - Arrow-function components only —
export const Foo = ({ prop }) => <p>{prop}</p>. Plainfunctionkeyword is not supported inside snippet files. - Inside arrow function bodies use plain HTML tags, not MDX syntax.
Draft content
Files matchingdrafts/ or *.draft.mdx are ignored by Mintlify (see .mintignore).
Writing style
- Active voice, second person (“you”).
- Sentence case for headings.
- Bold for UI elements: Settings.
- Code formatting for file names, commands, paths, and inline code references.
- One idea per sentence; lead with what the user wants to accomplish.
