Initial commit

This commit is contained in:
AuroraCrimsonRose
2026-05-27 15:07:22 -05:00
commit cc64e8d41e
31 changed files with 2354 additions and 0 deletions

16
tools/__init__.py Normal file
View File

@@ -0,0 +1,16 @@
"""
Tool bootstrap.
Importing this module forces
tool registration into registry.
"""
from tools.ping import PingTool
from tools.filesystem import FilesystemTool
from tools.subprocess import SubprocessTool
__all__ = [
"PingTool",
"FilesystemTool",
"SubprocessTool",
]