list_directory
Browse and view files and directories within your local development projects to navigate your codebase structure and locate specific files.
Instructions
List files and directories in a given path
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path to directory (relative to projects directory or absolute) |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to directory (relative to projects directory or absolute)",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}