refactor(tools): add src/tools/ package with shared _common

Slice 1 Task 2 (#4082/#4071). Adds the package skeleton and moves the
shared _parse_tool_args helper into src/tools/_common.py. Domain modules
will import from here. tool_implementations.py is untouched at this step.
This commit is contained in:
yuandonghao
2026-06-14 19:58:06 +08:00
parent f7a936db82
commit 4a6f39a656
2 changed files with 45 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
"""Tool implementation package, split by domain (slice 1, #4082/#4071).
Public tool functions live in domain modules. ``src.tool_implementations``
re-exports from here for backward compatibility.
"""
from src.tools._common import _parse_tool_args # noqa: F401