# Mkdocs 1 Documentation Structure

> Sub-skill of mkdocs: 1. Documentation Structure (+1).

- Skill: `vamseeachanta/mkdocs-1-documentation-structure` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vamseeachanta/mkdocs-1-documentation-structure`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vamseeachanta/mkdocs-1-documentation-structure/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: vamseeachanta (https://skillmd.com/u/vamseeachanta)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/vamseeachanta/mkdocs-1-documentation-structure

---


# 1. Documentation Structure (+1)

## 1. Documentation Structure


```
docs/
├── index.md                    # Landing page
├── getting-started/
│   ├── index.md               # Section overview
│   ├── installation.md
│   ├── quickstart.md
│   └── configuration.md
├── user-guide/
│   ├── index.md
│   ├── concepts.md
│   ├── tutorials/
│   │   ├── basic.md
│   │   └── advanced.md
│   └── best-practices.md
├── api/
│   ├── index.md
│   └── reference.md
├── contributing/
│   ├── index.md
│   ├── development.md
│   └── style-guide.md
├── changelog.md
├── assets/
│   ├── images/
│   ├── stylesheets/
│   └── javascripts/
└── includes/                   # Reusable snippets
    └── abbreviations.md
```


## 2. Page Template


```markdown
---
title: Page Title
description: Brief description for SEO and social sharing
---

# Page Title

Brief introduction explaining what this page covers.

