chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:49:17 +08:00
commit 7243d5823b
2201 changed files with 257291 additions and 0 deletions
@@ -0,0 +1,14 @@
from services.registry import get_registered_tools
def test_refresh_unity_tool_is_registered():
"""
Red test: we expect an explicit refresh tool to exist so callers can force an import/refresh/compile cycle.
"""
# Import the specific module to ensure it registers its decorator without disturbing global registry state.
import services.tools.refresh_unity # noqa: F401
names = {t.get("name") for t in get_registered_tools()}
assert "refresh_unity" in names