Skip to content

Quick Start

Get OmniDev running quickly with a few commands.

Terminal window
npm install -g @omnidev-ai/cli

Or with Bun:

Terminal window
bun install -g @omnidev-ai/cli
Terminal window
omnidev init

This creates OMNI.md, omni.toml, and runtime files under .omni/.

Use the add command to register a capability and enable it in your active profile:

Terminal window
omnidev add cap my-cap --github user/repo

If the capability lives in a subdirectory:

Terminal window
omnidev add cap my-cap --github anthropics/skills --path skills/docx
Terminal window
omnidev sync

This fetches capabilities, generates instructions from rules and docs, and updates provider files.

Terminal window
omnidev doctor

If anything is missing, fix the config and rerun omnidev doctor.

  • Add more capability sources to omni.toml.
  • Switch profiles with omnidev profile set <name>.
  • Edit OMNI.md to refine project instructions.