16 lines
362 B
Python
Executable File
16 lines
362 B
Python
Executable File
#!/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())
|