add-backend-tool
Installation
SKILL.md
Add Backend Tool
Instructions
-
Read
backend/main.pyto understand existing tool patterns:- Find the
toolslist with function definitions - Review helper functions (read_file, write_file, run_terminal_command, web_search)
- Find the
-
Create the helper function:
def new_tool_name(param1: str, param2: int = 10) -> str: """Docstring explaining the tool.""" try: # Implementation return result except Exception as e: return f"Error: {str(e)}"