get_repo_analysis
Analyzes GitHub repository metrics such as activity, stars, and issues over specified time periods, providing insights into open source project performance.
Instructions
Get detailed analysis of a GitHub repository, including activity, stars, issues, and other metrics.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner_repo | Yes | Repository name in the format 'owner/repo' | |
time_period | No | Time range for analysis (optional) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"owner_repo": {
"description": "Repository name in the format 'owner/repo'",
"type": "string"
},
"time_period": {
"description": "Time range for analysis (optional)",
"enum": [
"last_28_days",
"last_90_days",
"last_year",
"all_time"
],
"type": "string"
}
},
"required": [
"owner_repo"
],
"type": "object"
}