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__")

View File

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

View File

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

View File

@@ -0,0 +1,3 @@
#!/usr/bin/env bash
set -euo pipefail
python3 "$HOME/.hermes/skills/coinhunter/scripts/rotate_external_gate_log.py"