English | 中文
Official documentation for Flashduty, built with Mintlify.
flashduty-docs/
├── zh/ # Chinese documentation
│ ├── on-call/ # On-call incident management
│ ├── rum/ # Real User Monitoring
│ ├── monitors/ # Alert rule configuration
│ ├── platform/ # Platform settings
│ ├── openapi/ # API documentation
│ ├── compliance/ # Security compliance
│ └── changelog/ # Changelog
├── en/ # English documentation (mirrors zh/)
├── logo/ # Logo assets
├── docs.json # Mintlify configuration
└── .cursor/skills/ # AI Agent Skills
| Module | Description |
|---|---|
| On-call | Incident management, alert routing, escalation rules, schedule management |
| RUM | Real User Monitoring, frontend performance and error tracking |
| Monitors | Multi-source alert rule configuration |
npm i -g mint# Local preview
mint dev
# Check broken links
mint broken-linksCreate .mdx file in the appropriate directory:
---
title: "Clear, specific title"
description: "Concise explanation of page purpose"
---Add page path in docs.json:
{
"group": "Quick Start",
"pages": ["en/on-call/quickstart/quickstart"]
}- Maintain consistent structure between Chinese and English
- English docs go in
en/directory, mirroringzh/paths - Use
translate-zh-to-enSkill for translation
- Use second person ("you")
- Use active voice
- Keep it concise and direct
| Component | Purpose |
|---|---|
<Steps> |
Step-by-step instructions |
<Tabs> |
Platform-specific content |
<CodeGroup> |
Multi-language code |
<Note> / <Tip> / <Warning> |
Callouts |
<Frame> |
Image container |
- Provide complete, runnable examples
- Specify language and filename
- Never include real API keys
This project provides two AI Skills:
| Skill | Purpose |
|---|---|
translate-zh-to-en |
Translate Chinese docs to English |
polish-document |
Polish and optimize documentation |
See AGENTS.md for details.