fix(herdr): support Herdr 0.8.0 pane allocation, agent prompt, and length limits

This commit is contained in:
2026-08-14 10:49:29 +09:00
parent 720f8ad224
commit a7f3fc3242
9 changed files with 185 additions and 50 deletions
+2 -2
View File
@@ -439,8 +439,8 @@ d['herdr_sessions'] = [{
# Verify mock herdr calls recorded the keys "/exit" sent
calls = state.get("calls", [])
# Should see send-keys call
assert any("send" in call and "/exit" in call for call in calls)
# Should see send-keys or agent prompt call
assert any(("send" in call or "prompt" in call) and "/exit" in call for call in calls)
# ==============================================================================