auto_analyze_image
Analyze images to extract and interpret code, architecture, errors, or documentation using file paths or clipboard input for targeted insights.
Instructions
自动获取并分析图片(支持文件路径或剪贴板)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
focusArea | No | 分析重点区域 | code |
imagePath | No | 图片文件路径(可选,不提供则使用剪贴板) |
Input Schema (JSON Schema)
{
"properties": {
"focusArea": {
"default": "code",
"description": "分析重点区域",
"enum": [
"code",
"architecture",
"error",
"documentation"
],
"type": "string"
},
"imagePath": {
"description": "图片文件路径(可选,不提供则使用剪贴板)",
"type": "string"
}
},
"required": [],
"type": "object"
}