Proposal for new @ai jsdoc tag
I would like to propose an @ai tag that can be used to document if and how an AI has been used in the code.
I would suggest to have two standard options and allow for custom input as well
Options
doc: implies that AI has been used to generate docs but not code
code: implies that AI has been used to generate code and docs
Examples
/**
* This function has been created by a human, while the comment is AI generated
*
* @ai doc - MistralAI Devstral2
*/
function MyClass() {}
/**
* This function and comment are AI generated
*
* @ai code - MistralAI Devstral2
*/
function MyOtherClass() {}
Proposal for new
@aijsdoc tagI would like to propose an
@aitag that can be used to document if and how an AI has been used in the code.I would suggest to have two standard options and allow for custom input as well
Options
doc: implies that AI has been used to generate docs but not codecode: implies that AI has been used to generate code and docsExamples