Loading...
Loading...
Provides templates, standards, and best practices for writing clear, comprehensive technical documentation
npx skill4agent add bejranonda/llm-autonomous-agent-plugin-for-claude documentation-best-practicesdef 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
"""/**
* 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
*/