list_directory
Display directory contents with file metadata including sizes and line counts to help users explore and understand file system structure.
Instructions
List contents of a directory with metadata including file sizes and line counts
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Directory path to list. Use '.' for workspace root |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Directory path to list. Use '.' for workspace root",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}