Skip to main content

Overview

Set up oh-my-opencode with OCX profiles for a fully portable AI coding environment using free OpenCode Zen models. Prerequisites: OCX installed and global profiles initialized

Step 1: Install the omo Profile

# One-command install with ephemeral registry (not saved)
ocx profile add omo --source kit/omo --from https://ocx-kit.kdco.dev --global

# Or add registry first, then install
ocx registry add https://ocx-kit.kdco.dev --name kit --global
ocx profile add omo --source kit/omo --global

Step 2: Launch

ocx oc -p omo
The profile comes pre-configured with free OpenCode Zen models.

What’s Included

The omo profile includes:
FilePurpose
opencode.jsoncDefault models + oh-my-opencode plugin
oh-my-opencode.jsonAgent configurations with free models
ocx.jsoncProfile isolation settings
AGENTS.mdQuick reference
Pre-configured models:
  • Big Pickle — Orchestrator (Sisyphus), Executor (Atlas)
  • GPT-5 Nano — Research, exploration, documentation, planning

Customize Models

Edit your profile’s oh-my-opencode config:
# View available models
opencode models

# Edit the config
$EDITOR ~/.config/opencode/profiles/omo/oh-my-opencode.json
See the oh-my-opencode configuration docs for all options.

Tips

Set as default profile:
export OCX_PROFILE=omo  # Add to ~/.zshrc or ~/.bashrc
Clone for variations:
ocx profile add work --clone omo --global
For untrusted repos, see Profile Security.

Next Steps

See Also