initialize_graph
Initialize a code graph for repository analysis to map function relationships and dependencies, enabling AI assistants to explore code structure effectively.
Instructions
Initialize a code graph for the given repository path.
Args: repo_path: Path to the repository to analyze
Returns: Success message with information about the initialized graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
repo_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"repo_path": {
"title": "Repo Path",
"type": "string"
}
},
"required": [
"repo_path"
],
"title": "initialize_graphArguments",
"type": "object"
}