Parallel Execution
Basic Pattern
oh-my-ag agent:spawn backend "Implement auth API" session-01 &
oh-my-ag agent:spawn frontend "Create login form" session-01 &
wait
Workspace-Aware Pattern
oh-my-ag agent:spawn backend "Auth + DB migration" session-02 -w ./apps/api
oh-my-ag agent:spawn frontend "Login + token refresh" session-02 -w ./apps/web
Monitoring Pattern
bunx oh-my-ag dashboard:web
# open http://localhost:9847
Multi-CLI Configuration
Configure different CLIs per agent type in .agent/config/user-preferences.yaml:
# Response language
language: ko # ko, en, ja, zh, ...
# Default CLI (single tasks)
default_cli: gemini
# Per-agent CLI mapping (multi-CLI mode)
agent_cli_mapping:
frontend: gemini
backend: codex
mobile: gemini
pm: claude
qa: claude
debug: gemini
Run /setup to configure interactively.
CLI Vendor Resolution Priority
--vendorcommand line argumentagent_cli_mappingfrom user-preferences.yamldefault_clifrom user-preferences.yamlactive_vendorfrom cli-config.yaml (legacy)- Hardcoded fallback:
gemini