fix: route OpenBao platform administration login
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 1s

Assistant: codex
Assistant-Model: gpt-5.6-sol
Assistant-Session: 01a0290b-3241-74c3-b868-6049545af836
This commit is contained in:
tegwick 2026-08-22 19:08:21 +02:00
parent e24d2d5bd0
commit 8280c0b7b7
10 changed files with 170 additions and 5 deletions

View file

@ -141,6 +141,11 @@ def _autonomous_commands(entry: RouteEntry, domain: Optional[str]) -> List[str]:
return cmds
expanded = expand_handoff(entry, domain=domain)
if entry.lane == "login":
cmds.append(f"warden access {entry.id} --fetch")
if expanded.fetch_command:
cmds.append(f"# attended owner login: {expanded.fetch_command}")
return cmds
if entry.has_native_exec and entry.exec_command:
cmds.append(entry.exec_command)
if entry.pointer_command: