sync: agent-ops from agentic-framework v1.1.199

This commit is contained in:
toki 2026-08-13 06:17:54 +09:00
parent 0bf9b2b511
commit b205433a32
3 changed files with 23 additions and 4 deletions

View file

@ -1 +1 @@
1.1.198
1.1.199

View file

@ -73,7 +73,10 @@
"--auto",
"{prompt}"
],
"output_format": "jsonl"
"output_format": "jsonl",
"environment": {
"TMPDIR": "/tmp"
}
}
},
"opencode-glm-high": {
@ -99,7 +102,10 @@
"--auto",
"{prompt}"
],
"output_format": "jsonl"
"output_format": "jsonl",
"environment": {
"TMPDIR": "/tmp"
}
}
},
"opencode-glm-max": {
@ -125,7 +131,10 @@
"--auto",
"{prompt}"
],
"output_format": "jsonl"
"output_format": "jsonl",
"environment": {
"TMPDIR": "/tmp"
}
}
},
"codex-spark-xhigh": {

View file

@ -180,6 +180,16 @@ class SelectorTests(unittest.TestCase):
self.assertIn("iop-glm/glm-5.2", opencode.runtime["command"])
self.assertEqual(opencode.reasoning_effort, "high")
self.assertIn("{reasoning_effort}", opencode.runtime["command"])
for target_id in (
"opencode-glm-medium",
"opencode-glm-high",
"opencode-glm-max",
):
with self.subTest(target_id=target_id):
self.assertEqual(
catalog.targets[target_id].runtime["environment"]["TMPDIR"],
"/tmp",
)
terra = catalog.targets["codex-terra-high"]
self.assertEqual(terra.reasoning_effort, "high")
self.assertIn(