Files
timmy-local/tools/__init__.py
Allegro f71e31585b Initial Uni-Wizard architecture
- Single harness for all API interactions
- Unified tool registry with routing
- System, Git, Network tool layers
- Local-first, self-healing design
2026-03-30 17:15:11 +00:00

25 lines
486 B
Python

"""
Uni-Wizard Tools Package
All tools for self-sufficient operation
"""
from .registry import registry, ToolRegistry, ToolResult, tool, call_tool
# Import all tool modules to register them
from . import system_tools
from . import git_tools
from . import network_tools
__all__ = [
'registry',
'ToolRegistry',
'ToolResult',
'tool',
'call_tool'
]
# Ensure all tools are registered
system_tools.register_all()
git_tools.register_all()
network_tools.register_all()