From qe-framework
Automatically detects project language and adds JSDoc, Python docstrings, JavaDoc, godoc, KDoc, rustdoc comments to public functions and classes, matching existing style.
How this skill is triggered — by the user, by Claude, or both
Slash command
/qe-framework:Qdoc-commentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Automatically detects the project's language and existing comment style, then adds documentation comments to classes, functions, and methods that lack them.
Automatically detects the project's language and existing comment style, then adds documentation comments to classes, functions, and methods that lack them.
.qe/analysis/tech-stack.md to identify the project language/**
* [Class/method description]
*
* @param paramName [description]
* @return [return value description]
*/
def example(param: str) -> bool:
"""[Function description]
Args:
param: [description]
Returns:
[return value description]
"""
/**
* [Function description]
*
* @param paramName - [description]
* @returns [return value description]
*/
// FunctionName [function description]
//
// [Additional detail if needed]
/**
* [Class/function description]
*
* @param paramName [description]
* @return [return value description]
*/
/// [Function description]
///
/// # Arguments
/// * `param` - [description]
///
/// # Returns
/// [return value description]
npx claudepluginhub inho-team/qe-framework --plugin qe-frameworkCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.