Python 64.6%
TypeScript 33.7%
CSS 0.8%
1"""Prompt loader (files cached at import time)."""23from __future__ import annotations45from functools import lru_cache6from pathlib import Path78PROMPTS_DIR = Path(__file__).parent91011@lru_cache12def load_prompt(name: str) -> str:13 path = PROMPTS_DIR / f"{name}.md"14 return path.read_text(encoding="utf-8").strip() if path.exists() else ""15