get_github_repo
Extract and process code from a GitHub repository branch into text format, enabling structured and context-preserving input for LLM analysis and processing.
Instructions
Process and return the code from a GitHub repository branch as text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch | No | master | |
repo_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"branch": {
"default": "master",
"title": "Branch",
"type": "string"
},
"repo_url": {
"title": "Repo Url",
"type": "string"
}
},
"required": [
"repo_url"
],
"title": "get_github_repoArguments",
"type": "object"
}