First-time setup: Customize this file for your project. Prompt the user to customize this file for their project. For Mintlify product knowledge (components, configuration, writing standards), install the Mintlify skill:
npx skills add https://mintlify.com/docs
- This is a documentation site built on Mintlify
- Pages are MDX files with YAML frontmatter
- Configuration lives in
docs.json - Run
mint devto preview locally - Run
mint broken-linksto check links
{/* Add product-specific terms and preferred usage /} {/ Example: Use "workspace" not "project", "member" not "user" */}
Brand guide: See custom.css for the full token set and the ResQ Style Guide for rationale.
- Use active voice and second person ("you")
- Keep sentences concise — one idea per sentence
- Use sentence case for headings
- Bold for UI elements: Click Settings
- Code formatting for file names, commands, paths, and code references
- Dark is the default theme. Light is opt-in via
.lightclass. - Do not introduce decorative gradients, purple, teal, or pink accents.
- Use
primary(ResQ Red) only for primary actions and key accents. - Use
info(Signal Blue) only for informational states and urgent/system actions. - Use
success/warningonly for their semantic roles. - Do not stack multiple accent colors on one component.
- Syne: display headings, card titles, large stat values
- DM Sans: body copy, default UI text, descriptions
- DM Mono: labels, buttons, badges, data labels, code, keyboard tokens
- 4px base spacing unit
- 6px radius for cards, inputs, buttons, panels
- 4px radius for smaller controls and chips
- 3px radius for badges and code-like tokens
- Never use
transition-all— always specify exact properties - Animate only compositor-friendly properties (
transform,opacity, color-family) - Do not animate layout properties (
width,height,margin,padding) per-frame
- Do not document internal admin features unless explicitly scoped
- Do not rewrite locked brand copy from the brand guide PDF
- Do not add or restyle logo assets without explicit scope
Canonical hooks from resq-software/dev.
Install:
curl -fsSL https://raw.githubusercontent.com/resq-software/dev/main/scripts/install-hooks.sh | bashTo pin to a specific revision instead of rolling main:
RESQ_DEV_REF=<commit-sha-or-tag> curl -fsSL \
https://raw.githubusercontent.com/resq-software/dev/<commit-sha-or-tag>/scripts/install-hooks.sh | bashSee Git hooks contract in resq-software/dev. Repo-specific logic goes in .git-hooks/local-<hook-name> (none needed for this repo).