开发人员文档通常在每个文件中包含描述。这些描述可能会过时,导致混乱和不正确的信息。为了防止这种情况,您可以使用一些 AI 和 GenAIScript 自动检测文档中过时的描述。
许多文档系统使用 markdown 格式来编写文档,并使用“frontmatter”标头来存储元数据。这是带有 frontmatter 的 markdown 文件的示例:
--- title: "My Document" description: "This is a sample document." --- # My Document Lorem ipsum dolor sit amet, consectetur adipiscing elit.
目标是创建一个脚本来检测 frontmatter 中的描述字段何时过时。
GenAIScript 旨在在文件上运行,并提供一个特殊变量 env.files,其中包含要分析的文件列表。您可以使用该变量通过 def 函数将文件包含在上下文中。我们将每个文件限制为 2000 个令牌,以避免大文件上的内容爆炸。
// Define the file to be analyzed def("DOCS", env.files, { endsWith: ".md", maxTokens: 2000 })
下一步是给脚本分配任务。在本例中,检查 frontmatter 中的内容和描述字段是否匹配。
// Analyze the content to detect outdated descriptions $`Check if the 'description' field in the front matter in DOCS is outdated.`
最后,我们利用内置的诊断生成功能为每个过时的描述创建错误。
// enable diagnostics generation $`Generate an error for each outdated description.`
将此脚本保存到工作区后,您将能够通过上下文菜单在文件或文件夹上执行它
通过选择运行 GenAIScript...。
您可以在文档文件上自动运行此工具,以使用 cli 识别过时的描述。
npx --yes genaiscript run detect-outdated-descriptions **/*.md
此脚本可以集成到您的 CI/CD 管道中以自动执行检测过程。
以上是检测过时的描述的详细内容。更多信息请关注PHP中文网其他相关文章!