index_repository
Analyze and query a GitHub repository's codebase by indexing it. Required step before asking questions about architecture, tech stack, or code structure.
Instructions
Index a GitHub repository to analyze its codebase. This must be done before asking questions about the repository.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
repo_url | Yes | The GitHub repository URL to index (format: https://github.com/username/repo). |
Input Schema (JSON Schema)
{
"properties": {
"repo_url": {
"description": "The GitHub repository URL to index (format: https://github.com/username/repo).",
"title": "Repo Url",
"type": "string"
}
},
"required": [
"repo_url"
],
"title": "index_repositoryArguments",
"type": "object"
}