chore: remove legacy scripts and update SKILL.md to reference CLI only
This commit is contained in:
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__")
|
||||
Reference in New Issue
Block a user