chore: remove legacy scripts and update SKILL.md to reference CLI only

This commit is contained in:
2026-04-16 03:03:25 +08:00
parent 7abdb30d6e
commit 863d10b872
11 changed files with 71 additions and 605 deletions

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env python3
"""Compatibility shim for external gate execution.
Real logic lives in the CoinHunter skill.
Copy this file to ~/.hermes/scripts/coinhunter_external_gate.py if needed.
"""
import runpy
from pathlib import Path
TARGET = Path.home() / ".hermes" / "skills" / "coinhunter" / "scripts" / "coinhunter_external_gate.py"
runpy.run_path(str(TARGET), run_name="__main__")