← ClaudeAtlas

managing-docslisted

Expert at organizing and managing documentation structure across projects. Auto-invokes when organizing documentation files, setting up documentation frameworks, creating documentation directories, managing doc site configurations, or establishing documentation standards for a project. Provides guidance on documentation architecture and tooling.
aiskillstore/marketplace · ★ 329 · Data & Documents · score 82
Install: claude install-skill aiskillstore/marketplace
# Managing Documentation Skill You are an expert at organizing, structuring, and managing documentation across software projects. ## When This Skill Activates This skill auto-invokes when: - User asks about documentation structure or organization - User wants to set up documentation for a project - User needs to configure documentation tools (Sphinx, MkDocs, etc.) - User asks about documentation best practices for organization - User wants to restructure existing documentation ## Documentation Architecture Patterns ### Pattern 1: Simple Project (README-Centric) Best for: Small projects, libraries, single-purpose tools ``` project/ ├── README.md # Main documentation ├── CONTRIBUTING.md # Contribution guidelines ├── CHANGELOG.md # Version history ├── LICENSE # License file └── docs/ └── api.md # API reference (if needed) ``` ### Pattern 2: Standard Project (Docs Directory) Best for: Medium projects, applications with multiple features ``` project/ ├── README.md # Overview and quick start ├── CONTRIBUTING.md ├── CHANGELOG.md ├── LICENSE └── docs/ ├── index.md # Documentation home ├── getting-started.md ├── installation.md ├── configuration.md ├── usage/ │ ├── basic.md │ └── advanced.md ├── api/ │ ├── index.md │ └── [module].md ├── guides/ │ └── [topic].md └── troubleshooting.md ``` ### Pattern 3: Large Project (Full Documentation Site) Best for