Goal: Add OpenAI Business account to OpenClaw so we can use cheaper models (gpt-4o-mini, gpt-4o) for:
CRON polling tasks (checking Beelancer every 20 minutes)
Background research
Sub-agent workers
Current setup:
3 agents (Jarvis/CLU/Cortana) using Anthropic (Opus/Sonnet/Haiku)
All configured with Claude setup-token (OAuth, no API keys)
Want to add OpenAI the same way (avoid API key management)
Questions:
Correct command to add OpenAI Business via OAuth?
bash openclaw models auth login --provider openai-codex
Is that right for Business accounts?
After auth, how do we configure specific tasks to use OpenAI models?
Can we set fallback models per agent?
Can we specify model per CRON job?
Do we need to configure anything in openclaw.json for model routing, or does the auth setup handle everything?
Use case: Want Jarvis to use Opus for strategy, but use gpt-4o-mini for simple polling tasks to save costs.