OMK Documentation

August 16, 2026 ยท View on GitHub

OMK is a minimal terminal coding harness. It is designed to stay small at the core while being extended through TypeScript extensions, skills, prompt templates, themes, and omk packages.

Quick start

Install OMK with npm:

npm install -g --ignore-scripts open-multi-agent-kit

--ignore-scripts disables dependency lifecycle scripts during install. OMK does not require install scripts for normal npm installs.

To uninstall omk itself, use npm:

npm uninstall -g open-multi-agent-kit

For pnpm, Yarn, or Bun installs, use the matching global remove command: pnpm remove -g open-multi-agent-kit, yarn global remove open-multi-agent-kit, or bun uninstall -g open-multi-agent-kit.

Then run it in a project directory:

omk

Authenticate with /login for subscription providers, or set an API key such as ANTHROPIC_API_KEY before starting omk.

For the full first-run flow, see Quickstart.

Start here

  • Quickstart - install, authenticate, and run a first session.
  • Using OMK - interactive mode, slash commands, context files, and CLI reference.
  • Providers - subscription and API-key setup for built-in providers.
  • Provider Resilience - retry, failover, quota, and safety-stop recovery.
  • Containerization - sandbox omk with OpenShell, Gondolin, or Docker.
  • Settings - global and project settings.
  • Environment Variables - process configuration and bash-tool session environment.
  • Keybindings - default shortcuts and custom keybindings.
  • Sessions - session management, branching, and tree navigation.
  • Compaction - context compaction and branch summarization.

Customization

  • Extensions - TypeScript modules for tools, commands, events, and custom UI.
  • Skills - Agent Skills for reusable on-demand capabilities.
  • Book to Skill - optional document-to-skill compiler with local provenance checks.
  • Prompt templates - reusable prompts that expand from slash commands.
  • Themes - built-in and custom terminal themes.
  • OMK packages - bundle and share extensions, skills, prompts, and themes.
  • Custom models - add model entries for supported provider APIs.
  • Custom providers - implement custom APIs and OAuth flows.

Programmatic usage

Reference

  • Session format - JSONL session file format, entry types, and SessionManager API.

Platform setup

Development

  • Development - local setup, project structure, and debugging.