retrieve-codebase-insights
Extract actionable insights from code repositories using the 'retrieve-codebase-insights' tool. Analyze syntax, dependencies, and AI-assisted workflows for improved development efficiency.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| insightTypes | No | ||
| limit | No | ||
| relatedFile | No | ||
| repositoryUrl | Yes | ||
| tags | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"insightTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"limit": {
"type": "number"
},
"relatedFile": {
"type": "string"
},
"repositoryUrl": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"repositoryUrl"
],
"type": "object"
}