get_project_structure
Retrieve the complete directory structure for any project to understand its organization and file hierarchy.
Instructions
Get the complete directory structure of a specific project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_name | Yes | Name of the project |
Input Schema (JSON Schema)
{
"properties": {
"project_name": {
"description": "Name of the project",
"type": "string"
}
},
"required": [
"project_name"
],
"type": "object"
}