git_tree
Retrieve the tree structure of a GitHub repository by specifying the owner, repository name, and optional branch. Streamline repository analysis and navigation with extracted directory and file details.
Instructions
Get the tree structure of a GitHub repository
Args:
owner: The GitHub organization or username
repo: The repository name
branch: Optional branch name (default: None)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch | No | ||
owner | Yes | ||
repo | Yes |
Input Schema (JSON Schema)
{
"properties": {
"branch": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Branch"
},
"owner": {
"title": "Owner",
"type": "string"
},
"repo": {
"title": "Repo",
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"title": "git_treeArguments",
"type": "object"
}