get_template_list
Retrieve a structured list of available development record templates, including names, filenames, and descriptions. Use the templateName to fetch detailed content via get_template_detail.
Instructions
获取可用的开发记录模板列表。返回包含模板名称、文件名和描述的结构化数据。返回的 templates 数组中每个模板都有 templateName 字段,这是后续调用 get_template_detail 时必需的参数。使用此工具来发现可用的模板,然后使用返回的 templateName 来获取具体模板内容。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dummy | No | Dummy parameter for no-parameter tools |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"dummy": {
"description": "Dummy parameter for no-parameter tools",
"type": "string"
}
},
"type": "object"
}