mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-11 19:47:12 +03:00
8 lines
184 B
Python
8 lines
184 B
Python
import sys
|
|
from pathlib import Path
|
|
|
|
_scripts_dir = Path(__file__).resolve().parent.parent / "scripts"
|
|
if str(_scripts_dir) not in sys.path:
|
|
sys.path.insert(0, str(_scripts_dir))
|
|
|