# Sphinx 3 Index And Table Of Contents

> Sub-skill of sphinx: 3. Index and Table of Contents.

- Skill: `vamseeachanta/sphinx-3-index-and-table-of-contents` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vamseeachanta/sphinx-3-index-and-table-of-contents`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vamseeachanta/sphinx-3-index-and-table-of-contents/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- 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/sphinx-3-index-and-table-of-contents

---


# 3. Index and Table of Contents

## 3. Index and Table of Contents


```rst
.. docs/source/index.rst

Welcome to MyProject
====================

MyProject is a powerful library for doing amazing things.

.. toctree::
   :maxdepth: 2
   :caption: Getting Started

   installation
   quickstart
   configuration

.. toctree::
   :maxdepth: 2
   :caption: User Guide

   guide/overview
   guide/core-concepts
   guide/advanced-usage
   guide/best-practices

.. toctree::
   :maxdepth: 3
   :caption: API Reference

   api/modules
   api/mypackage

.. toctree::
   :maxdepth: 1
   :caption: Development

   contributing
   changelog
   license

Indices and tables
==================

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
```

