c63d8e0f9d
Previously _run_agent_container set os.environ["CLAUDE_CODE_OAUTH_TOKEN"] deep inside the launch path and added a one-off `-e` pair to docker_args, which was the only env var to bypass the resolved.forwarded flow used for everything else. Move the os.environ mutation + name registration into prepare, right after resolve_env, so the OAuth token rides the same forwarded-by-name mechanism as secrets and interpolated entries. _run_agent_container loses the special case entirely.