Compare commits

...

1 Commits

Author SHA1 Message Date
Alexander Whitestone
cb0d81e6cd Make workflow docs path-portable 2026-04-04 18:26:59 -04:00

View File

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