[architecture]
Finds the shortest direct-project dependency chain between two loaded projects.
Monorepo package relationships and import graphs are too large to reconstruct reliably from scattered file reads.
The model can reason from package, project, dependency, dependent, path, and cycle facts before editing architecture-sensitive code.
Try it locally in the TGlider playground
| Name | Type | Required | Description |
|---|---|---|---|
| fromProjectName | string | Yes | Starting loaded project name. |
| toProjectName | string | Yes | Target loaded project name. |
Explain why one project reaches another
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "find_dependency_path",
"arguments": {
"fromProjectName": "web-app",
"toProjectName": "shared-ui"
}
}
}Returns a compact project dependency path when one is found.