cross-repo-analysis
Analyze dependencies, API usage, and architectural patterns across multiple repositories to identify relationships and improve codebase understanding.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysisType | No | dependencies | |
contextDepth | No | ||
primaryRepoUrl | Yes | ||
relatedRepoUrls | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"analysisType": {
"default": "dependencies",
"enum": [
"dependencies",
"api-usage",
"architectural-patterns"
],
"type": "string"
},
"contextDepth": {
"default": 2,
"maximum": 3,
"minimum": 1,
"type": "number"
},
"primaryRepoUrl": {
"type": "string"
},
"relatedRepoUrls": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"primaryRepoUrl",
"relatedRepoUrls"
],
"type": "object"
}