managing-docslisted
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