analyze_project
Analyze project structure, code quality, and architecture to help understand existing codebases. Provides deep insights into directory organization and technical implementation details.
Instructions
【项目分析】深度分析项目结构、代码质量和架构,帮助AI快速理解老项目
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_content | No | 是否包含文件内容(默认 true) | |
| max_depth | No | 目录树最大深度(默认 5) | |
| project_path | No | 项目路径(默认当前目录) |
Input Schema (JSON Schema)
{
"properties": {
"include_content": {
"description": "是否包含文件内容(默认 true)",
"type": "boolean"
},
"max_depth": {
"description": "目录树最大深度(默认 5)",
"type": "number"
},
"project_path": {
"description": "项目路径(默认当前目录)",
"type": "string"
}
},
"required": [],
"type": "object"
}