在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
odai-documentation-guidelines
// Documentation style rules and checklist for the ODAI SDK.
$ git log --oneline --stat
stars:2
forks:1
updated:2026年4月8日 14:36
SKILL.md
// Documentation style rules and checklist for the ODAI SDK.
[HINT] 下载包含 SKILL.md 和所有相关文件的完整技能目录
| 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