generate_folder_map
Create or update a _map.md file for any folder to document its structure and contents, ensuring organized and accessible project navigation.
Instructions
Generate or update a _map.md file for a specific folder
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folderPath | Yes | Path to the folder to generate map for |
Input Schema (JSON Schema)
{
"properties": {
"folderPath": {
"description": "Path to the folder to generate map for",
"type": "string"
}
},
"required": [
"folderPath"
],
"type": "object"
}