What problem does it solve? Keeping API references and code documentation accurate and up to date is tedious manual work that quickly drifts out of sync with the codebase. This Skill automates the generation of OpenAPI specs, docstrings, and documentation pipelines so docs stay aligned with the code they describe. ## Core Features & Use Cases - OpenAPI Specification Authoring: Define REST API contracts with paths, schemas, request bodies, and responses in OpenAPI 3.0 YAML. - Docstring Standards: Write Sphinx-style Python docstrings and JSDoc annotations for TypeScript/JavaScript with typed parameters, return values, and raised errors. - Automated Doc Pipelines: Configure MkDocs with mkdocstrings to generate and publish reference documentation directly from source code. - Use Case: After building a FastAPI or Express service, use this Skill to produce an OpenAPI spec, annotate public functions with docstrings, and wire up an MkDocs site that regenerates API docs on every release. ## Quick Start Generate an OpenAPI specification and Sphinx-style docstrings for the user management module in this repository.