get_repo_structure
Retrieve the hierarchical structure of files and directories within a repository, specifying subdirectory paths and traversal depth for precise exploration.
Instructions
Get the structure of files and directories in the repository.
Args:
sub_path: Optional subdirectory path relative to repository root
depth: Optional maximum depth to traverse (default is 3)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | ||
sub_path | No |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Depth"
},
"sub_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sub Path"
}
},
"title": "get_repo_structureArguments",
"type": "object"
}