store-codebase-insight
Capture and organize codebase insights by storing architectural decisions, performance bottlenecks, security concerns, code patterns, and refactoring opportunities for efficient analysis and collaboration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
insightContent | Yes | ||
insightType | Yes | ||
relatedFiles | No | ||
repositoryUrl | Yes | ||
tags | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"insightContent": {
"type": "string"
},
"insightType": {
"enum": [
"architectural-decision",
"performance-bottleneck",
"security-concern",
"code-pattern",
"refactoring-opportunity",
"other"
],
"type": "string"
},
"relatedFiles": {
"items": {
"type": "string"
},
"type": "array"
},
"repositoryUrl": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"repositoryUrl",
"insightType",
"insightContent"
],
"type": "object"
}