con un clic
odai-documentation-guidelines
// Documentation style rules and checklist for the ODAI SDK.
// Documentation style rules and checklist for the ODAI SDK.
[HINT] Descarga el directorio completo de la habilidad incluyendo SKILL.md y todos los archivos relacionados
| name | ODAI Documentation Guidelines |
| description | Documentation style rules and checklist for the ODAI SDK. |
Use Doxygen-style comments: Always use /// (triple slash) for documentation comments, not // or /* */
First line is a brief summary: The first line should be a concise, one-line description of what the function/class/struct does
Multi-line descriptions: If more detail is needed, add additional lines after the first line to explain behavior, edge cases, or important notes
Brief description: Start with a clear, concise description of the function's purpose
Parameter documentation: Use @param tags for each parameter:
/// @param parameter_name Description of the parameterReturn value documentation: Use @return tag:
/// @return Description of return valueWhen documenting a function, ensure:
@param@return including error conditions