Make workflow docs path-portable

This commit is contained in:
Alexander Whitestone
2026-04-04 18:26:59 -04:00
parent 4effb5a20e
commit cb0d81e6cd

View File

@@ -38,8 +38,11 @@ ops-queue codex-agent all
```bash
python3 - <<'PY'
import json, sys
sys.path.insert(0, '/Users/apayne/.timmy/timmy-config')
import json
import sys
from pathlib import Path
sys.path.insert(0, str(Path.home() / '.timmy' / 'timmy-config'))
from tasks import _archive_pipeline_health_impl
print(json.dumps(_archive_pipeline_health_impl(), indent=2))
PY
@@ -47,8 +50,11 @@ PY
```bash
python3 - <<'PY'
import json, sys
sys.path.insert(0, '/Users/apayne/.timmy/timmy-config')
import json
import sys
from pathlib import Path
sys.path.insert(0, str(Path.home() / '.timmy' / 'timmy-config'))
from tasks import _know_thy_father_impl
print(json.dumps(_know_thy_father_impl(), indent=2))
PY