visualize-dependencies
Generate visual dependency graphs from code repositories to analyze and understand relationships between files and modules using mermaid, ascii, or dot formats.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fileContent | No | ||
| filePath | No | ||
| format | No | mermaid | |
| path | No | ||
| repositoryUrl | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fileContent": {
"type": "string"
},
"filePath": {
"type": "string"
},
"format": {
"default": "mermaid",
"enum": [
"ascii",
"mermaid",
"dot"
],
"type": "string"
},
"path": {
"type": "string"
},
"repositoryUrl": {
"type": "string"
}
},
"type": "object"
}