Add harness.agent-dev-local@1.1.1 on claude-sonnet-5; block 1.1.0

Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>

Assistant: claude-code
Assistant-Model: opus
Assistant-Process: 226514@bnt-lap001
Assistant-Session: 26ba103d-05fe-45a1-9cd7-9475bf239df6
This commit is contained in:
tegwick 2026-09-23 15:24:14 +02:00
parent e17e2eb990
commit 30be818081
5 changed files with 53 additions and 7 deletions

View file

@ -67,7 +67,7 @@ def test_committed_catalog_resolves_both_constellations() -> None:
contexts = catalog.validate_all()
assert len(contexts) == 4
assert len(contexts) == 5
assert {context.rein_id for context in contexts} == {
"rein-aharness",
"rein-openweights",
@ -77,7 +77,8 @@ def test_committed_catalog_resolves_both_constellations() -> None:
for context in contexts
} == {
("harness.agent-dev-local", "1.0.0", "blocked"),
("harness.agent-dev-local", "1.1.0", "unverified"),
("harness.agent-dev-local", "1.1.0", "blocked"),
("harness.agent-dev-local", "1.1.1", "unverified"),
("harness.agent-dev-openweights-local", "1.0.0", "blocked"),
("harness.agent-dev", "1.0.0", "unverified"),
}
@ -101,8 +102,9 @@ def test_committed_catalog_resolves_both_constellations() -> None:
def test_metered_candidate_carries_native_limits_and_no_credential_route() -> None:
catalog = ProfileCatalog()
profile, _ = catalog.resolve("harness.agent-dev-local@1.1.0")
profile, _ = catalog.resolve("harness.agent-dev-local@1.1.1")
catalog.require_operational(profile)
assert profile.model.model == "claude-sonnet-5"
assert profile.operational_readiness.status == "unverified"
assert profile.sandbox_profile == "profile.bwrap-local"
assert profile.credential_route_refs == []