Documentation Index
Fetch the complete documentation index at: https://docs.feral.sh/llms.txt
Use this file to discover all available pages before exploring further.
Where the docs live
Source:docs/mintlify/ in the main FERAL repo.
Live site: docs.feral.sh (hosted by Mintlify).
How to add a new page
- Create an
.mdxfile underdocs/mintlify/in the appropriate folder (guides/,reference/,hardware/,channels/, etc.). Use the standard frontmatter: - Add the page to the navigation in
docs/mintlify/docs.jsonunder the right group. Example: - Commit and push to
main. Mintlify auto-deploys in ~1 minute.
Editing existing pages
Just edit the.mdx in-place, commit, push. Mintlify picks up the change within ~1 minute.
Previewing locally
Style conventions
- Use frontmatter
title+descriptionon every page (powers search + OG) - Use Mintlify components for callouts:
<Note>,<Warning>,<Tip>,<Check> - Code fences with language:
py,bash,jsx,swift,kotlin - Link between docs pages with relative paths:
[See Skills](/guides/skills) - External repo links use full URLs
How deployment works
mainbranch = production docs- Mintlify validates
docs.jsonand every page on build - A broken page reference in
docs.jsonfails the whole deploy — check Mintlify dashboard for errors
Troubleshooting
- 404 after push: page not in
docs.jsonnavigation - Mintlify build fails:
docs.jsonreferences a non-existent page, OR frontmatter is malformed - Broken link: relative paths are case-sensitive; use all-lowercase filenames and matching references
- Search not finding a page: missing or empty
descriptionin frontmatter
