What problem does it solve? Keeping technical documentation accurate and current is difficult when API references, user guides, and doc sites must be manually written and maintained separately from source code. This Skill provides proven patterns for generating documentation directly from code annotations and automating doc builds in CI/CD pipelines. ## Core Features & Use Cases - Code-to-Docs Generation: Produce API references from Python docstrings with Sphinx or mkdocstrings, and from TypeScript/JavaScript with TypeDoc and JSDoc. - OpenAPI Documentation: Enhance FastAPI auto-generated docs or add swagger-jsdoc annotations to Express routes, then render with Swagger UI or Redoc. - Static Doc Sites & CI/CD: Build documentation sites with Nextra, Docusaurus, VitePress, or MkDocs Material and automate deployment via GitHub Actions. - Use Case: A backend team ships a FastAPI service and needs hosted API docs; use this Skill to enrich endpoint docstrings, export the OpenAPI spec, and deploy a MkDocs Material site through a GitHub Actions workflow. ## Quick Start Generate API documentation for my Python project using MkDocs with mkdocstrings and set up a GitHub Actions workflow to deploy it to GitHub Pages.