Review Docs
Comprehensive documentation review, optimized for Docus/Nuxt Content but compatible with any Markdown documentation.
Workflow Overview
This skill performs a 5-step review process:
- Detect Project Type - Identify Docus/Nuxt Content vs generic Markdown
- Analyze Structure - Map documentation organization, locales, sections
- Technical Validation - Check frontmatter, MDC syntax (if applicable), file naming
- Content Quality Review - Evaluate clarity, SEO, structure, i18n
- Generate Report - Provide categorized, actionable recommendations
Priority Levels
- Critical - Blocks deployment or causes errors (missing frontmatter, invalid MDC syntax)
- Important - Significantly impacts UX/SEO (poor metadata, passive voice, unclear headings)
- Nice-to-have - Polish and optimization suggestions (add callouts, improve examples)
Expectations
This skill generates a detailed report only. After reviewing, it offers to fix identified issues if requested.
Step 1: Detect Project Type
Goal: Determine if this is a Docus/Nuxt Content project or generic Markdown documentation.
Detection Indicators
Check for Docus/Nuxt Content:
package.json dependencies:
"docus" - Docus theme
"@nuxt/content" - Nuxt Content module
"@nuxtjs/mdc" - MDC support
Configuration files:
nuxt.config.ts or nuxt.config.js with @nuxt/content module
content.config.ts - Content collections configuration
Content structure:
content/ or docs/content/ directory
.navigation.yml files in subdirectories
- MDC syntax in markdown files (
::component-name)
Project structure:
- Numbered directories (
1.getting-started/, 2.guide/)
- Frontmatter with
navigation, seo fields
Project Type Classification
Type A: Docus/Nuxt Content Project
- All Docus-specific validations apply
- MDC component syntax checks (u- prefix requirement)
- Nuxt Content frontmatter structure
- Navigation files (.navigation.yml)
- Full technical validation
Type B: Generic Markdown Documentation
- Basic Markdown validation only
- Generic frontmatter (title, description, date, author)
- Standard Markdown syntax
- Focus on content quality (SEO, clarity, structure)
- No Docus-specific technical checks
Detection Output
After detection, note in the report:
Project Type: [Docus/Nuxt Content | Generic Markdown]
Validation Mode: [Full (Docus-specific) | Basic (Markdown-only)]
Adapt validation steps based on detected type:
- Type A (Docus): Execute all steps with full validation
- Type B (Generic): Skip Docus-specific checks, focus on content quality
Step 2: Analyze Documentation Structure
Locate Content Directory
Find the documentation content directory:
- Check for
docs/content/ (most common)
- Check for
content/ (root-level)
- Check for
app/content/ (alternative location)
Detect Locales
Identify language structure by examining subdirectories:
Single language (no locale subdirectories):
content/
├── index.md
├── 1.getting-started/
└── 2.guide/
Multi-language (locale subdirectories):
content/
├── en/
│ ├── index.md
│ ├── 1.getting-started/
│ └── 2.guide/
└── fr/
├── index.md
├── 1.getting-started/
└── 2.guide/
Detection logic:
- If immediate subdirectories are 2-letter codes (en, fr, es, de, etc.), it's multi-language
- If immediate subdirectories are numbered (1.getting-started), it's single language
List Documentation Sections
Identify all numbered directories within each locale:
1.getting-started/
2.guide/ or 2.concepts/
3.api/ or 3.essentials/
4.advanced/ or 4.ai/
For each section, note:
- Section name
- Presence of
.navigation.yml file
- Number of pages (count
.md files)
- Page file names
Verify Core Files
Check for required files:
Create Structure Map
Document the structure for the report:
Project: [project-name]
Locales: [en, fr] (or "Single language")
Sections:
- 1.getting-started: 5 pages, .navigation.yml ✅
- 2.guide: 8 pages, .navigation.yml ✅
- 3.api: 3 pages, .navigation.yml ❌ (missing)
Step 3: Technical Validation
Adapt validation based on project type detected in Step 1.
For Docus/Nuxt Content Projects (Type A)
Perform full technical validation using references/technical-checks.md:
Validate:
- Frontmatter structure - Required:
title, description. Optional: navigation, seo, links
- MDC component syntax - All Nuxt UI components MUST have
u- prefix (::u-page-hero, :::u-button)
- Code block labels - All code blocks representing files need descriptive labels (
```vue [App.vue], ```ts [config.ts])
- Code language consistency - Code examples should match the project's language stack (e.g., TypeScript if the project uses TypeScript,
lang="ts" on Vue <script setup>)
- Package manager coverage -
::code-group install blocks must cover all package managers the project/ecosystem supports
- Code preview - Use
::code-preview for visually renderable examples (tables, lists, rendered markdown, etc.)
- Code group scope - Only group equivalent alternatives (e.g., package managers, framework variants) — don't mix unrelated steps (e.g., install command + config file)
- File naming - Numbered directories/files, kebab-case,
.navigation.yml in each section
- Hidden pages - Use
navigation: false for pages that should exist as routes but not appear in sidebar
Common Critical Errors:
- Missing
u- prefix: ::page-hero → should be ::u-page-hero
- Missing required frontmatter:
title, description
- Invalid
.navigation.yml structure
- Missing section
index.md causing 404 on section root URL
See references/technical-checks.md for complete validation rules, examples, and error patterns.
For Generic Markdown Projects (Type B)
Simplified validation - Skip Docus-specific checks:
Basic Frontmatter Validation:
- Check for common fields:
title, description, date, author, tags
- No strict requirements - just recommendations
- Flag if completely missing frontmatter
Standard Markdown Syntax:
- Validate basic markdown (headings, lists, links, code blocks)
- Check for broken internal links
- Verify image paths exist
Skip:
- MDC component syntax (not applicable)
- Nuxt Content frontmatter structure
.navigation.yml files
- Docus-specific conventions
Focus on:
- Content quality (next step)
- SEO optimization
- Clarity and readability
- General structure
Step 4: Content Quality Review
This step applies to ALL project types (both Docus and generic Markdown).
Evaluate content quality across four dimensions. Refer to reference files for detailed checklists.
Clarity Review
Use references/clarity-checks.md to check:
- Voice & Tone: Active voice, present tense, second person
- Sentence Structure: 15-20 words target, avoid wordy phrases
- Paragraph Structure: 2-5 sentences, 200-400 words between headings
- Action-Based Headings: Page titles (H1) and headings (H2/H3) use action verbs for guides (Nuxt pattern)
- Examples: "Create Your First Module", "Configure your app", "Build a Plugin"
- Exceptions: Getting Started (nouns), API (function names), Concepts (descriptive)
- Terminology: Consistent naming, technical terms defined
- Code Examples: Complete, copy-pasteable, realistic, with file labels
SEO Review
Use references/seo-checks.md to check:
- Titles: 50-60 chars, keywords, unique
- Descriptions: 120-160 chars, compelling, unique
- Headings: Single H1, logical hierarchy (H1→H2→H3), descriptive
- URLs: Kebab-case, descriptive, stable
- Links: Descriptive anchors, "Next steps" sections
- Content Length: 300+ words for landing, 400+ for guides, 200-400 per section
- Images: Alt text, color mode variants
Structure Review
Use references/structure-checks.md to check:
- Hierarchy: Max 3 levels, logical progression
- Organization: 2-15 pages per section,
.navigation.yml present, appropriate icons
- Flow: Logical progression, "Next Steps" links, no orphaned pages
- Landing Page: Hero, features, quick start
- Consistency: Similar structure across pages
i18n Review (if multi-language)
Use references/i18n-checks.md to check:
- Parallel Structure: Same directories, files, page counts across locales
- Translation Completeness: Similar content length (±30%), same headings
- Navigation: Same icons, translated titles
- Locale-Specific: No mixed languages, correct internal links, translated comments
Step 5: Generate Report
Create a comprehensive review report using assets/report-template.md.
Adapt report based on project type:
- Docus/Nuxt Content: Include all sections (Technical, SEO, Clarity, Structure, i18n)
- Generic Markdown: Focus on content quality (SEO, Clarity, Structure), omit Docus-specific technical issues
Report Structure
# Documentation Review Report
**Generated:** [current date and time]
**Project:** [project name from package.json or directory]
**Reviewed:** [X] pages across [Y] sections in [locales]
---
## Executive Summary
- **Critical Issues:** [count] (must fix - block deployment/cause errors)
- **Important Issues:** [count] (significant impact on UX/SEO)
- **Nice-to-Have:** [count] (polish and optimization recommendations)
**Overall Assessment:** [1-2 sentence summary of documentation quality]
---
## Critical Issues
[List all Critical issues grouped by category]
### Technical: MDC Syntax Errors
#### Missing u- prefix on Nuxt UI components
**File:** `/content/en/1.getting-started/1.introduction.md:15`
**Problem:** Page hero component missing `u-` prefix
**Current:**
\`\`\`markdown
::page-hero
#title
Welcome
::
\`\`\`
**Should Be:**
\`\`\`markdown
::u-page-hero
#title
Welcome
::
\`\`\`
**Impact:** Component will not render, causing build errors
---
### Technical: Missing Frontmatter
[Similar format for each issue]
---
## Important Issues
[List all Important issues grouped by category: SEO, Clarity, Structure]
### SEO: Suboptimal Metadata
[Details with file paths and recommendations]
### Clarity: Passive Voice
[Details with examples and suggested rewrites]
### Structure: Poor Navigation
[Details with organizational recommendations]
---
## Nice-to-Have Suggestions
[List optimization suggestions by category]
### SEO Optimizations
- **[File]**: [Suggestion]
### Clarity Improvements
- **[File]**: Consider adding `::tip` callout for [specific content]
### Structure Enhancements
- **[Section]**: Consider splitting into subsections
---
## Locale-Specific Issues
[Only if multi-language detected]
### French (`/fr/`)
- [Translation issues]
---
## Statistics
### Content Overview
| Section | Pages (en) | Pages (fr) | Avg Words/Page |
| --------------- | ---------- | ---------- | -------------- |
| Getting Started | [X] | [X] | ~[XXX] |
| Guide | [X] | [X] | ~[XXX] |
### Issue Breakdown
| Category | Critical | Important | Nice-to-Have | Total |
| --------- | -------- | --------- | ------------ | ------- |
| Technical | [X] | [X] | [X] | [X] |
| SEO | [X] | [X] | [X] | [X] |
| Clarity | [X] | [X] | [X] | [X] |
| Structure | [X] | [X] | [X] | [X] |
| i18n | [X] | [X] | [X] | [X] |
| **Total** | **[X]** | **[X]** | **[X]** | **[X]** |
---
## Positive Highlights
[Call out 2-3 things done well]
- Good use of callouts and code examples
- Consistent MDC component usage
- Well-organized section structure
---
## Recommended Action Plan
### Priority 1: Fix Critical Issues (Today)
1. [Specific actionable items]
**Estimated fixes:** [X] files
### Priority 2: Important Issues (This Week)
1. [Specific actionable items]
**Estimated fixes:** [X] files
### Priority 3: Nice-to-Have (Next Sprint)
1. [Specific actionable items]
**Estimated fixes:** [X] files
---
## Next Steps
**Would you like me to:**
1. **Fix all Critical issues** - I can automatically correct MDC syntax and frontmatter issues
2. **Rewrite specific sections** - Point out which pages need clarity improvements, and I'll rewrite them
3. **Optimize SEO metadata** - I can update all titles and descriptions to optimal lengths
4. **Restructure content** - If sections need reorganization, I can help restructure
5. **Complete translations** - If you need i18n content completed
**Or specify what you'd like to focus on first.**
Report Generation Guidelines
Be specific:
- Include exact file paths and line numbers
- Show current vs. recommended code
- Explain why each issue matters (impact)
Be actionable:
- Provide clear fix instructions
- Include code examples
- Prioritize by impact
Be balanced:
- Highlight positive aspects
- Don't overwhelm with minor issues
- Focus on high-impact improvements
After generating the report:
- Offer to fix issues if the user requests
- Be ready to address specific categories or files
- Suggest starting with Critical issues
Quick Reference
Most Common Issues:
- Missing
u- prefix on Nuxt UI components (::page-hero → ::u-page-hero)
- SEO descriptions too short (need 120-160 chars)
- Passive voice in instructions ("can be done" → "do it")
- Generic headings ("Configuration" → "Configure your app")
- Code blocks missing file name labels (every block representing a file should have one)
- Code language not matching the project's stack (e.g., missing
lang="ts" on Vue <script setup> in a TypeScript project)
- Incomplete package manager coverage in
::code-group install blocks (check against the ecosystem/project)
- Unrelated steps grouped in
::code-group (e.g., install command + config file) — keep as separate blocks
- Missing
::code-preview where rendered preview would add clarity (tables, lists, etc.)
- Section landing page missing → 404 on section root URL (add
index.md with navigation: false if needed)
See reference files for complete checklists and examples.
Source: atoms-studio/nuxt-swiftsearch — distributed by TomeVault.
1---2name: atoms-studio-nuxt-swiftsearch-nuxt-swiftsearch3description: Review Docs4---56# Review Docs78Comprehensive documentation review, optimized for Docus/Nuxt Content but compatible with any Markdown documentation.910## Workflow Overview1112This skill performs a 5-step review process:13141. **Detect Project Type** - Identify Docus/Nuxt Content vs generic Markdown152. **Analyze Structure** - Map documentation organization, locales, sections163. **Technical Validation** - Check frontmatter, MDC syntax (if applicable), file naming174. **Content Quality Review** - Evaluate clarity, SEO, structure, i18n185. **Generate Report** - Provide categorized, actionable recommendations1920### Priority Levels2122- **Critical** - Blocks deployment or causes errors (missing frontmatter, invalid MDC syntax)23- **Important** - Significantly impacts UX/SEO (poor metadata, passive voice, unclear headings)24- **Nice-to-have** - Polish and optimization suggestions (add callouts, improve examples)2526### Expectations2728This skill generates a **detailed report only**. After reviewing, it offers to fix identified issues if requested.2930---3132## Step 1: Detect Project Type3334**Goal:** Determine if this is a Docus/Nuxt Content project or generic Markdown documentation.3536### Detection Indicators3738**Check for Docus/Nuxt Content:**39401. **package.json dependencies:**41 - `"docus"` - Docus theme42 - `"@nuxt/content"` - Nuxt Content module43 - `"@nuxtjs/mdc"` - MDC support44452. **Configuration files:**46 - `nuxt.config.ts` or `nuxt.config.js` with `@nuxt/content` module47 - `content.config.ts` - Content collections configuration48493. **Content structure:**50 - `content/` or `docs/content/` directory51 - `.navigation.yml` files in subdirectories52 - MDC syntax in markdown files (`::component-name`)53544. **Project structure:**55 - Numbered directories (`1.getting-started/`, `2.guide/`)56 - Frontmatter with `navigation`, `seo` fields5758### Project Type Classification5960**Type A: Docus/Nuxt Content Project**6162- All Docus-specific validations apply63- MDC component syntax checks (u- prefix requirement)64- Nuxt Content frontmatter structure65- Navigation files (.navigation.yml)66- Full technical validation6768**Type B: Generic Markdown Documentation**6970- Basic Markdown validation only71- Generic frontmatter (title, description, date, author)72- Standard Markdown syntax73- Focus on content quality (SEO, clarity, structure)74- No Docus-specific technical checks7576### Detection Output7778After detection, note in the report:7980```81Project Type: [Docus/Nuxt Content | Generic Markdown]82Validation Mode: [Full (Docus-specific) | Basic (Markdown-only)]83```8485**Adapt validation steps based on detected type:**8687- **Type A (Docus):** Execute all steps with full validation88- **Type B (Generic):** Skip Docus-specific checks, focus on content quality8990---9192## Step 2: Analyze Documentation Structure9394### Locate Content Directory9596Find the documentation content directory:9798- Check for `docs/content/` (most common)99- Check for `content/` (root-level)100- Check for `app/content/` (alternative location)101102### Detect Locales103104Identify language structure by examining subdirectories:105106**Single language** (no locale subdirectories):107108```109content/110├── index.md111├── 1.getting-started/112└── 2.guide/113```114115**Multi-language** (locale subdirectories):116117```118content/119├── en/120│ ├── index.md121│ ├── 1.getting-started/122│ └── 2.guide/123└── fr/124 ├── index.md125 ├── 1.getting-started/126 └── 2.guide/127```128129**Detection logic:**130131- If immediate subdirectories are 2-letter codes (en, fr, es, de, etc.), it's multi-language132- If immediate subdirectories are numbered (1.getting-started), it's single language133134### List Documentation Sections135136Identify all numbered directories within each locale:137138- `1.getting-started/`139- `2.guide/` or `2.concepts/`140- `3.api/` or `3.essentials/`141- `4.advanced/` or `4.ai/`142143For each section, note:144145- Section name146- Presence of `.navigation.yml` file147- Number of pages (count `.md` files)148- Page file names149150### Verify Core Files151152Check for required files:153154- [ ] `index.md` exists at root of each locale155- [ ] `.navigation.yml` in each section directory156- [ ] Numbered files follow pattern (`1.introduction.md`, `2.installation.md`)157158### Create Structure Map159160Document the structure for the report:161162```163Project: [project-name]164Locales: [en, fr] (or "Single language")165Sections:166 - 1.getting-started: 5 pages, .navigation.yml ✅167 - 2.guide: 8 pages, .navigation.yml ✅168 - 3.api: 3 pages, .navigation.yml ❌ (missing)169```170171---172173## Step 3: Technical Validation174175**Adapt validation based on project type detected in Step 1.**176177### For Docus/Nuxt Content Projects (Type A)178179Perform full technical validation using [references/technical-checks.md](references/technical-checks.md):180181**Validate:**1821831. **Frontmatter structure** - Required: `title`, `description`. Optional: `navigation`, `seo`, `links`1842. **MDC component syntax** - All Nuxt UI components MUST have `u-` prefix (`::u-page-hero`, `:::u-button`)1853. **Code block labels** - All code blocks representing files need descriptive labels (` ```vue [App.vue] `, ` ```ts [config.ts] `)1864. **Code language consistency** - Code examples should match the project's language stack (e.g., TypeScript if the project uses TypeScript, `lang="ts"` on Vue `<script setup>`)1875. **Package manager coverage** - `::code-group` install blocks must cover all package managers the project/ecosystem supports1886. **Code preview** - Use `::code-preview` for visually renderable examples (tables, lists, rendered markdown, etc.)1897. **Code group scope** - Only group equivalent alternatives (e.g., package managers, framework variants) — don't mix unrelated steps (e.g., install command + config file)1908. **File naming** - Numbered directories/files, kebab-case, `.navigation.yml` in each section1919. **Hidden pages** - Use `navigation: false` for pages that should exist as routes but not appear in sidebar192193**Common Critical Errors:**194195- Missing `u-` prefix: `::page-hero` → should be `::u-page-hero`196- Missing required frontmatter: `title`, `description`197- Invalid `.navigation.yml` structure198- Missing section `index.md` causing 404 on section root URL199200See [references/technical-checks.md](references/technical-checks.md) for complete validation rules, examples, and error patterns.201202### For Generic Markdown Projects (Type B)203204**Simplified validation** - Skip Docus-specific checks:205206**Basic Frontmatter Validation:**207208- Check for common fields: `title`, `description`, `date`, `author`, `tags`209- No strict requirements - just recommendations210- Flag if completely missing frontmatter211212**Standard Markdown Syntax:**213214- Validate basic markdown (headings, lists, links, code blocks)215- Check for broken internal links216- Verify image paths exist217218**Skip:**219220- MDC component syntax (not applicable)221- Nuxt Content frontmatter structure222- `.navigation.yml` files223- Docus-specific conventions224225**Focus on:**226227- Content quality (next step)228- SEO optimization229- Clarity and readability230- General structure231232---233234## Step 4: Content Quality Review235236**This step applies to ALL project types** (both Docus and generic Markdown).237238Evaluate content quality across four dimensions. Refer to reference files for detailed checklists.239240### Clarity Review241242Use [references/clarity-checks.md](references/clarity-checks.md) to check:243244- **Voice & Tone:** Active voice, present tense, second person245- **Sentence Structure:** 15-20 words target, avoid wordy phrases246- **Paragraph Structure:** 2-5 sentences, 200-400 words between headings247- **Action-Based Headings:** Page titles (H1) and headings (H2/H3) use action verbs for guides (Nuxt pattern)248 - Examples: "Create Your First Module", "Configure your app", "Build a Plugin"249 - Exceptions: Getting Started (nouns), API (function names), Concepts (descriptive)250- **Terminology:** Consistent naming, technical terms defined251- **Code Examples:** Complete, copy-pasteable, realistic, with file labels252253### SEO Review254255Use [references/seo-checks.md](references/seo-checks.md) to check:256257- **Titles:** 50-60 chars, keywords, unique258- **Descriptions:** 120-160 chars, compelling, unique259- **Headings:** Single H1, logical hierarchy (H1→H2→H3), descriptive260- **URLs:** Kebab-case, descriptive, stable261- **Links:** Descriptive anchors, "Next steps" sections262- **Content Length:** 300+ words for landing, 400+ for guides, 200-400 per section263- **Images:** Alt text, color mode variants264265### Structure Review266267Use [references/structure-checks.md](references/structure-checks.md) to check:268269- **Hierarchy:** Max 3 levels, logical progression270- **Organization:** 2-15 pages per section, `.navigation.yml` present, appropriate icons271- **Flow:** Logical progression, "Next Steps" links, no orphaned pages272- **Landing Page:** Hero, features, quick start273- **Consistency:** Similar structure across pages274275### i18n Review (if multi-language)276277Use [references/i18n-checks.md](references/i18n-checks.md) to check:278279- **Parallel Structure:** Same directories, files, page counts across locales280- **Translation Completeness:** Similar content length (±30%), same headings281- **Navigation:** Same icons, translated titles282- **Locale-Specific:** No mixed languages, correct internal links, translated comments283284---285286## Step 5: Generate Report287288Create a comprehensive review report using [assets/report-template.md](assets/report-template.md).289290**Adapt report based on project type:**291292- **Docus/Nuxt Content:** Include all sections (Technical, SEO, Clarity, Structure, i18n)293- **Generic Markdown:** Focus on content quality (SEO, Clarity, Structure), omit Docus-specific technical issues294295### Report Structure296297```markdown298# Documentation Review Report299300**Generated:** [current date and time]301**Project:** [project name from package.json or directory]302**Reviewed:** [X] pages across [Y] sections in [locales]303304---305306## Executive Summary307308- **Critical Issues:** [count] (must fix - block deployment/cause errors)309- **Important Issues:** [count] (significant impact on UX/SEO)310- **Nice-to-Have:** [count] (polish and optimization recommendations)311312**Overall Assessment:** [1-2 sentence summary of documentation quality]313314---315316## Critical Issues317318[List all Critical issues grouped by category]319320### Technical: MDC Syntax Errors321322#### Missing u- prefix on Nuxt UI components323324**File:** `/content/en/1.getting-started/1.introduction.md:15`325326**Problem:** Page hero component missing `u-` prefix327328**Current:**329\`\`\`markdown330::page-hero331#title332Welcome333::334\`\`\`335336**Should Be:**337\`\`\`markdown338::u-page-hero339#title340Welcome341::342\`\`\`343344**Impact:** Component will not render, causing build errors345346---347348### Technical: Missing Frontmatter349350[Similar format for each issue]351352---353354## Important Issues355356[List all Important issues grouped by category: SEO, Clarity, Structure]357358### SEO: Suboptimal Metadata359360[Details with file paths and recommendations]361362### Clarity: Passive Voice363364[Details with examples and suggested rewrites]365366### Structure: Poor Navigation367368[Details with organizational recommendations]369370---371372## Nice-to-Have Suggestions373374[List optimization suggestions by category]375376### SEO Optimizations377378- **[File]**: [Suggestion]379380### Clarity Improvements381382- **[File]**: Consider adding `::tip` callout for [specific content]383384### Structure Enhancements385386- **[Section]**: Consider splitting into subsections387388---389390## Locale-Specific Issues391392[Only if multi-language detected]393394### French (`/fr/`)395396- [Translation issues]397398---399400## Statistics401402### Content Overview403404| Section | Pages (en) | Pages (fr) | Avg Words/Page |405| --------------- | ---------- | ---------- | -------------- |406| Getting Started | [X] | [X] | ~[XXX] |407| Guide | [X] | [X] | ~[XXX] |408409### Issue Breakdown410411| Category | Critical | Important | Nice-to-Have | Total |412| --------- | -------- | --------- | ------------ | ------- |413| Technical | [X] | [X] | [X] | [X] |414| SEO | [X] | [X] | [X] | [X] |415| Clarity | [X] | [X] | [X] | [X] |416| Structure | [X] | [X] | [X] | [X] |417| i18n | [X] | [X] | [X] | [X] |418| **Total** | **[X]** | **[X]** | **[X]** | **[X]** |419420---421422## Positive Highlights423424[Call out 2-3 things done well]425426- Good use of callouts and code examples427- Consistent MDC component usage428- Well-organized section structure429430---431432## Recommended Action Plan433434### Priority 1: Fix Critical Issues (Today)4354361. [Specific actionable items]437438**Estimated fixes:** [X] files439440### Priority 2: Important Issues (This Week)4414421. [Specific actionable items]443444**Estimated fixes:** [X] files445446### Priority 3: Nice-to-Have (Next Sprint)4474481. [Specific actionable items]449450**Estimated fixes:** [X] files451452---453454## Next Steps455456**Would you like me to:**4574581. **Fix all Critical issues** - I can automatically correct MDC syntax and frontmatter issues4592. **Rewrite specific sections** - Point out which pages need clarity improvements, and I'll rewrite them4603. **Optimize SEO metadata** - I can update all titles and descriptions to optimal lengths4614. **Restructure content** - If sections need reorganization, I can help restructure4625. **Complete translations** - If you need i18n content completed463464**Or specify what you'd like to focus on first.**465```466467### Report Generation Guidelines468469**Be specific:**470471- Include exact file paths and line numbers472- Show current vs. recommended code473- Explain why each issue matters (impact)474475**Be actionable:**476477- Provide clear fix instructions478- Include code examples479- Prioritize by impact480481**Be balanced:**482483- Highlight positive aspects484- Don't overwhelm with minor issues485- Focus on high-impact improvements486487**After generating the report:**488489- Offer to fix issues if the user requests490- Be ready to address specific categories or files491- Suggest starting with Critical issues492493---494495## Quick Reference496497**Most Common Issues:**498499- Missing `u-` prefix on Nuxt UI components (`::page-hero` → `::u-page-hero`)500- SEO descriptions too short (need 120-160 chars)501- Passive voice in instructions ("can be done" → "do it")502- Generic headings ("Configuration" → "Configure your app")503- Code blocks missing file name labels (every block representing a file should have one)504- Code language not matching the project's stack (e.g., missing `lang="ts"` on Vue `<script setup>` in a TypeScript project)505- Incomplete package manager coverage in `::code-group` install blocks (check against the ecosystem/project)506- Unrelated steps grouped in `::code-group` (e.g., install command + config file) — keep as separate blocks507- Missing `::code-preview` where rendered preview would add clarity (tables, lists, etc.)508- Section landing page missing → 404 on section root URL (add `index.md` with `navigation: false` if needed)509510**See reference files for complete checklists and examples.**511512---513> Source: [atoms-studio/nuxt-swiftsearch](https://github.com/atoms-studio/nuxt-swiftsearch) — distributed by [TomeVault](https://tomevault.io).514<!-- tomevault:4.0:skill_md:2026-06-19 -->