init: cover-letter-haness 하네스 설계

This commit is contained in:
DongHyeonka
2026-07-24 13:59:24 +09:00
parent bf4ff915a2
commit 1e266f2ae1
20 changed files with 7659 additions and 1 deletions
Executable
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env python3
"""Repository-local entry point for the cover-letter harness."""
from pathlib import Path
import sys
SCRIPT_DIR = Path(__file__).resolve().parent / "skills" / "draft-korean-it-cover-letter" / "scripts"
sys.path.insert(0, str(SCRIPT_DIR))
from harness import main # noqa: E402
if __name__ == "__main__":
raise SystemExit(main())