read_project_structure
Analyze project directory structure to generate hierarchical file and folder trees for documentation preparation.
Instructions
Read the directory structure of a project. Returns a tree-like structure of files and folders.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The absolute path to the project directory | |
| maxDepth | No | Maximum depth to traverse (default: 3) |
Input Schema (JSON Schema)
{
"properties": {
"maxDepth": {
"default": 3,
"description": "Maximum depth to traverse (default: 3)",
"type": "number"
},
"path": {
"description": "The absolute path to the project directory",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}