chore: remove legacy scripts and update SKILL.md to reference CLI only
This commit is contained in:
10
templates/coinhunter_external_gate_shim.py
Normal file
10
templates/coinhunter_external_gate_shim.py
Normal 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__")
|
||||
10
templates/coinhunter_precheck_shim.py
Normal file
10
templates/coinhunter_precheck_shim.py
Normal 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__")
|
||||
10
templates/coinhunter_review_context_shim.py
Normal file
10
templates/coinhunter_review_context_shim.py
Normal 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__")
|
||||
3
templates/rotate_external_gate_log_shim.sh
Normal file
3
templates/rotate_external_gate_log_shim.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
python3 "$HOME/.hermes/skills/coinhunter/scripts/rotate_external_gate_log.py"
|
||||
Reference in New Issue
Block a user