#!/usr/bin/env python3 """PrePrompt hook - inject dashboard tool guide into system prompt.""" import os guide_path = os.path.join(os.path.dirname(__file__), "dashboard_guide.md") if os.path.exists(guide_path): with open(guide_path, "r", encoding="utf-8") as f: print(f.read())