fed3526b20
설정·스크립트·스킬·문서·큐레이션 메모리 추적. 시크릿(credentials/identity)·런타임 상태(state/logs/sessions/sqlite)· 백업(clobbered/bak)·dream 캐시는 .gitignore로 제외. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
15 lines
358 B
Python
Executable File
15 lines
358 B
Python
Executable File
#!/usr/bin/env python3
|
|
import os
|
|
import runpy
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
TARGET = Path('/Users/snowoyh/.openclaw/workspace/scripts/briefing_mail.py')
|
|
|
|
if not TARGET.exists():
|
|
raise SystemExit(f'target script not found: {TARGET}')
|
|
|
|
os.chdir(TARGET.parent)
|
|
sys.argv = [str(TARGET), *sys.argv[1:]]
|
|
runpy.run_path(str(TARGET), run_name='__main__')
|