github_repo
Fetch GitHub repository metrics including stars, forks, issues, activity, and license to evaluate open source projects before using them.
Instructions
Fetch GitHub repository information and health metrics.
Returns stars, forks, issues, recent activity, language, license, and description.
Use this to evaluate open source projects before using them.
Examples:
- github_repo("microsoft/vscode", reasoning="Evaluate editor project")
- github_repo("https://github.com/facebook/react", reasoning="Research UI framework")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | ||
| reasoning | Yes | ||
| include_commits | No |
Input Schema (JSON Schema)
{
"properties": {
"include_commits": {
"default": true,
"title": "Include Commits",
"type": "boolean"
},
"reasoning": {
"title": "Reasoning",
"type": "string"
},
"repo": {
"title": "Repo",
"type": "string"
}
},
"required": [
"repo",
"reasoning"
],
"type": "object"
}