What problem does it solve? Codebases often ship without docstrings, READMEs, or API references, leaving new contributors and users unable to understand how functions, classes, and modules behave. This Skill provides a structured, standards-based approach to writing and maintaining project documentation. ## Core Features & Use Cases - Docstring Standards: Templates for function, class, and module docstrings in Google style, covering Args, Returns, Raises, and Examples sections. - Project Documentation: Structures for README files, API references, and Sphinx-style documentation with runnable examples. - Maintenance Guidance: Rules for keeping docs in sync with code, including deprecation warnings and a documentation quality checklist. - Use Case: After adding a new public API to a Python package, use this Skill to generate complete Google-style docstrings for every function and update the README quick-start example. ## Quick Start Ask the agent to document a specific module or function, for example: write Google-style docstrings for all public functions in the orders module and update the README.