list_directory
Lists the contents of a specified directory path to view files and subdirectories within a file system.
Instructions
List the contents of a directory
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| path | Yes | The path to the directory to list | 
Input Schema (JSON Schema)
{
  "properties": {
    "path": {
      "description": "The path to the directory to list",
      "type": "string"
    }
  },
  "required": [
    "path"
  ],
  "type": "object"
}