From python
Generates READMEs, API docs, changelogs, and architecture docs for code projects using TypeDoc, JSDoc, Sphinx, godoc. Guides documentation workflows for JS/TS, Python, Go.
npx claudepluginhub martinffx/atelier --plugin pythonThis skill uses the workspace's default tool permissions.
Documentation generation and maintenance for code projects.
Generates READMEs, API references, inline comments, architecture docs with diagrams, changelogs, and developer guides for codebases, APIs, libraries, and projects.
Generates API docs, architecture diagrams, user guides, and technical references from code using AI analysis. Useful for automating documentation pipelines and standardizing across repositories.
Share bugs, ideas, or general feedback.
Documentation generation and maintenance for code projects.
Always update docs when:
Docs should live:
Project overview, setup, usage. See references/readme-structure.md
Template:
# Project Name
Brief description (one line).
## Quick Start
3-5 commands to get running.
## Installation
Detailed setup steps.
## Usage
Code examples.
## API
Link to full API docs.
## Contributing
How to contribute.
## License
See references/api-docs.md for:
See references/changelog.md for Keep a Changelog format.
Sections:
See references/architecture-docs.md for:
# TypeDoc
npx typedoc --out docs src/index.ts
# JSDoc
npx jsdoc src/ -d docs/
# API Extractor (monorepos)
npx api-extractor run
# Sphinx
sphinx-build -b html docs docs/_build
# pdoc
pdoc --output-dir docs src/
# mkdocs
mkdocs serve
# godoc
godoc -http=:6060
# swag (OpenAPI from comments)
swag init -g cmd/server/main.go
docs: update API documentation
Generated via typedoc.
Added: new /users endpoint
Changed: authentication section