@nxuss/lemma 1.2.2 → 1.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +14 -3
- package/bin/init.js +35 -14
- package/cache-proxy.js +14 -2
- package/dist/cjs/mcp/tools.js +1 -1
- package/dist/cjs/mcp/tools.js.map +1 -1
- package/dist/esm/mcp/tools.js +1 -1
- package/dist/esm/mcp/tools.js.map +1 -1
- package/mcp-server.js +125 -194
- package/package.json +1 -2
package/dist/esm/mcp/tools.js
CHANGED
|
@@ -832,7 +832,7 @@ const toolDefinitions = [
|
|
|
832
832
|
name: "import_tree_context",
|
|
833
833
|
description: "Build a bidirectional import graph for a file. Shows what it imports, what imports it, and external dependencies. Zero LLM cost. Essential before refactors.",
|
|
834
834
|
inputSchema: {
|
|
835
|
-
type: "
|
|
835
|
+
type: "object",
|
|
836
836
|
properties: {
|
|
837
837
|
filePath: { type: "string", description: "Path relative to the project root" },
|
|
838
838
|
depth: { type: "number", description: "Traversal depth (default: 2)", default: 2 }
|