"""Coding agent system prompt, loaded from external file.""" from pathlib import Path _PROMPTS_DIR: Path = Path(__file__).resolve().parent.parent / "prompts" CODING_AGENT_SYSTEM_PROMPT: str = (_PROMPTS_DIR / "coding_agent.txt").read_text( encoding="utf-8" )