updates to tools and mma skills
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "get_code_outline",
|
||||
"name": "py_get_code_outline",
|
||||
"description": "Get a hierarchical outline of a code file. This returns classes, functions, and methods with their line ranges and brief docstrings. Use this to quickly map out a file's structure before reading specific sections.",
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
@@ -13,5 +13,5 @@
|
||||
"path"
|
||||
]
|
||||
},
|
||||
"command": "python scripts/tool_call.py get_code_outline"
|
||||
"command": "python scripts/tool_call.py py_get_code_outline"
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "get_python_skeleton",
|
||||
"name": "py_get_skeleton",
|
||||
"description": "Get a skeleton view of a Python file. This returns all classes and function signatures with their docstrings, but replaces function bodies with '...'. Use this to understand module interfaces without reading the full implementation.",
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
@@ -13,5 +13,5 @@
|
||||
"path"
|
||||
]
|
||||
},
|
||||
"command": "python scripts/tool_call.py get_python_skeleton"
|
||||
"command": "python scripts/tool_call.py py_get_skeleton"
|
||||
}
|
||||
Reference in New Issue
Block a user