# Documentation Project Structure

> Sub-skill of documentation: Project Structure (+3).

- Skill: `vamseeachanta/documentation-project-structure` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vamseeachanta/documentation-project-structure`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vamseeachanta/documentation-project-structure/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector CAUTION)
- 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/documentation-project-structure

---


# Project Structure (+3)

## Project Structure


```
docs/
├── index.md              # Home page
├── getting-started/      # Quickstart guides
│   ├── installation.md
│   └── configuration.md
├── guides/               # How-to guides
│   ├── basic-usage.md
│   └── advanced.md
├── reference/            # API reference
│   └── api.md
└── assets/               # Images, diagrams
    └── images/
```

## Frontmatter Standards


```yaml
---
title: Page Title
description: Brief description for SEO
sidebar_position: 1
tags:
  - guide
  - configuration
---
```

## Admonitions


```markdown
!!! note "Title"
    This is a note admonition.

!!! warning
    This is a warning without a custom title.

!!! tip "Pro Tip"
    Helpful tips go here.
```

## Code Blocks with Highlighting


```markdown
​```python title="example.py" hl_lines="2 3"
def hello():
    message = "Hello"  # highlighted
    print(message)     # highlighted
​```
```

