analyze_project_structure
Analyze local project structures to generate module and functionality overviews. Configure scope (frontend, backend, all) and directory depth for tailored insights without manual uploads.
Instructions
分析项目结构,生成模块和功能概览
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | 目录深度 | |
scope | No | 分析范围 | all |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"depth": {
"default": 3,
"description": "目录深度",
"type": "number"
},
"scope": {
"default": "all",
"description": "分析范围",
"enum": [
"frontend",
"backend",
"all"
],
"type": "string"
}
},
"type": "object"
}