Marketplace
documentation-best-practices
Provides templates, standards, and best practices for writing clear, comprehensive technical documentation
$ Installer
git clone https://github.com/bejranonda/LLM-Autonomous-Agent-Plugin-for-Claude /tmp/LLM-Autonomous-Agent-Plugin-for-Claude && cp -r /tmp/LLM-Autonomous-Agent-Plugin-for-Claude/skills/documentation-best-practices ~/.claude/skills/LLM-Autonomous-Agent-Plugin-for-Claude// tip: Run this command in your terminal to install the skill
SKILL.md
name: documentation-best-practices description: Provides templates, standards, and best practices for writing clear, comprehensive technical documentation version: 1.0.0
Overview
This skill provides guidelines for creating high-quality documentation including docstrings, API documentation, README files, and usage guides.
Documentation Coverage Targets
- Public APIs: 100% documented
- Internal Functions: 80%+ documented
- Complex Logic: Must have explanation comments
- Overall: 85%+ coverage
Docstring Templates
Python (Google Style)
def function_name(param1: str, param2: int) -> bool:
"""Brief one-line description.
Longer detailed explanation if needed.
Args:
param1: Description of param1
param2: Description of param2
Returns:
Description of return value
Raises:
ValueError: When and why
"""
JavaScript (JSDoc)
/**
* Brief one-line description.
*
* @param {string} param1 - Description of param1
* @param {number} param2 - Description of param2
* @returns {boolean} Description of return value
* @throws {Error} When and why
*/
README Structure
- Project Title & Description
- Installation: Step-by-step setup
- Usage: Basic examples
- API Documentation: Overview or link
- Contributing: Guidelines (if applicable)
- License: Project license
When to Apply
Use when generating documentation, updating docstrings, creating README files, or maintaining API documentation.
Repository

bejranonda
Author
bejranonda/LLM-Autonomous-Agent-Plugin-for-Claude/skills/documentation-best-practices
8
Stars
5
Forks
Updated4d ago
Added1w ago