Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:24:37 +08:00
commit 8cd5c7679d
61 changed files with 6788 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
"""
Configuration management for toolkit discovery
"""
from pathlib import Path
CONFIG_ROOT = Path(__file__).parent
EXTERNAL_TOOLS_CONFIG = CONFIG_ROOT / "external_tools.yaml"
__all__ = [
'CONFIG_ROOT',
'EXTERNAL_TOOLS_CONFIG'
]