Guide for writing effective code documentation, including docstrings, JSDoc, dartdoc, and implementation comments. Use this skill when writing new code, adding features, or improving existing documentation in Dart, Python, or TypeScript to ensure clarity and maintainability.
Installation
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Guide for writing effective code documentation, including docstrings, JSDoc, dartdoc, and implementation comments. Use this skill when writing new code, adding features, or improving existing documentation in Dart, Python, or TypeScript to ensure clarity and maintainability.
Code Documentation Skill
This skill provides comprehensive guidelines for documenting code, prioritizing user-centric writing, clarity, and consistency.
1. General Philosophy
User-Centric: Write for the person using your API. If you had to look up how to use something, document it so others don't have to.
Explain "Why": Explain why code exists and how to use it effectively, since the code signature already tells what it does.
Be Concise: Omit fluff. Avoid merely restating the code name, as it is not helpful.
Consistency: Use standard terminology and consistent formatting.
Public APIs: Document all public APIs (classes, members, top-level functions) without exception.
Code Samples: Strongly consider adding code samples to explain usage.
2. General Structure
Follow this general structure for documentation comments across languages:
Summary Sentence: Start with a single-sentence summary on the first line, ending with a period.
Blank Line: Follow the summary with a blank line.
Details: Add paragraphs, code samples, or lists as needed to explain parameters, return values, exceptions, and behavior.
Annotations: Place doc comments before any metadata annotations.
Noun Phrases: Start variable/property docs with a noun phrase.
Examples: "The current color.", "A list of active users.".
Booleans: Always start with "Whether" (or similar clear indicator).
Good: "Whether this widget is enabled."
Bad: "If this widget is enabled...", "True if...", "Flag to indicate...".
Avoid Jargon: Use plain English unless the term is a widely accepted standard (e.g., "HTTP", "URL").
Formatting
Sparingly: Use Markdown features (bold, lists) sparingly.
No HTML: Avoid HTML unless strictly necessary and supported by the documentation tool.
Parameters/Returns/Exceptions: Use prose to describe parameters, return values, and thrown exceptions. Do not rely solely on tags like @param unless mandated by the language standard (e.g., Javadoc).
4. Implementation Comments
Ensure implementation comments (//) are accurate, relevant, factual, and provide information that is not readily understandable from the code. Remove or reword comments that do not meet these criteria. If an implementation comment provides information useful to an API consumer that is not already in the documentation comments, move it to the documentation comments.
5. Review Checklist
Use this checklist to verify your documentation:
Summary: Ensure every public member starts with a one-sentence summary ending in a period.
Brevity: Remove "This class..." or "This function..." fluff.
Completeness: Document strict constraints (e.g., "must not be null") and exceptions.
Examples: Consider adding a code sample for complex widgets or methods.
6. Language Specific Instructions
Refer to the language guides for detailed instructions on structure, linking, and framework-specific patterns: