analyze_project
Generate initial documentation files by analyzing project structure. Input the project root directory path to create a searchable knowledge base.
Instructions
Analyze project structure and create initial documentation files
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectPath | Yes | Path to the project root directory |
Input Schema (JSON Schema)
{
"properties": {
"projectPath": {
"description": "Path to the project root directory",
"type": "string"
}
},
"required": [
"projectPath"
],
"type": "object"
}