doc-api-auto

Installation
SKILL.md

API Documentation Expert

API documentation is a contract between you and your consumers. It must be accurate, machine-readable, and easy to browse.

Docstring Standards

Consistently use a standard docstring format for your language:

  • Python: Google Style or NumPy Style.
  • JavaScript: JSDoc.
  • Java: Javadoc.

OpenAPI & Swagger

For REST APIs, use OpenAPI (formerly Swagger) to define your endpoints.

  • Benefits: Generates interactive documentation (Swagger UI), client SDKs, and automated tests.

Automated Generators

Use tools to extract documentation directly from your code:

  • Python: Sphinx (for general docs) or FastAPI (automatically generates OpenAPI).
  • JavaScript: TypeDoc (for TypeScript) or Doxygen.
Installs
1
GitHub Stars
1
First Seen
Jun 29, 2026
doc-api-auto — jcorpac/ai-skills-library