build-knowledge-graph
Create a knowledge graph from a repository to visualize code structure and dependencies, enabling deeper code analysis and AI-assisted development insights.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | ||
includeExternalDependencies | No | ||
repositoryUrl | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"depth": {
"default": 2,
"type": "number"
},
"includeExternalDependencies": {
"default": true,
"type": "boolean"
},
"repositoryUrl": {
"type": "string"
}
},
"required": [
"repositoryUrl"
],
"type": "object"
}