feat: route profiled ops runs through Glas

Assistant: codex
Assistant-Model: gpt-5.6-sol
Assistant-Session: 01a02b6f-7db1-7222-918b-e813a6bda38d
This commit is contained in:
tegwick 2026-08-22 23:55:29 +02:00
parent 68ab94581a
commit 0f01c3e421
17 changed files with 895 additions and 11 deletions

View file

@ -31,10 +31,20 @@ def test_ops_run_from_api() -> None:
"labels": ["automated", "research-brief"],
"state": "open",
"attempt": 0,
"harness_profile_ref": "harness.agent-dev-local@1.0.0",
"execution_refs": {
"correlation_id": "corr-1",
"goal_refs": ["goal:42@1"],
},
}
)
assert row.target_repo == "freedom-intelligence"
assert "research-brief" in row.labels
assert row.harness_profile_ref == "harness.agent-dev-local@1.0.0"
assert row.execution_refs == {
"correlation_id": "corr-1",
"goal_refs": ["goal:42@1"],
}
def test_config_from_env(monkeypatch: pytest.MonkeyPatch) -> None: