get_repository_info
Extract basic metadata, statistics, and key insights from GitHub repositories, including stars, forks, languages, and topics, for streamlined analysis.
Instructions
📊 Get basic repository metadata, statistics, and key information. Atomic tool focused purely on repository-level data without file content analysis.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
options | No | ||
url | Yes | GitHub repository URL (e.g., https://github.com/owner/repo) |
Input Schema (JSON Schema)
{
"properties": {
"options": {
"properties": {
"include_languages": {
"default": true,
"description": "Include language breakdown",
"type": "boolean"
},
"include_stats": {
"default": true,
"description": "Include repository statistics (stars, forks, etc.)",
"type": "boolean"
},
"include_topics": {
"default": true,
"description": "Include repository topics and tags",
"type": "boolean"
}
},
"type": "object"
},
"url": {
"description": "GitHub repository URL (e.g., https://github.com/owner/repo)",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}