Quick Start
Get OmniDev running quickly with a few commands.
1) Install the CLI
Section titled “1) Install the CLI”npm install -g @omnidev-ai/cliOr with Bun:
bun install -g @omnidev-ai/cli2) Initialize your project
Section titled “2) Initialize your project”omnidev initThis creates OMNI.md, omni.toml, and runtime files under .omni/.
3) Add a capability
Section titled “3) Add a capability”Use the add command to register a capability and enable it in your active profile:
omnidev add cap my-cap --github user/repoIf the capability lives in a subdirectory:
omnidev add cap my-cap --github anthropics/skills --path skills/docx4) Sync
Section titled “4) Sync”omnidev syncThis fetches capabilities, generates instructions from rules and docs, and updates provider files.
5) Verify
Section titled “5) Verify”omnidev doctorIf anything is missing, fix the config and rerun omnidev doctor.
Next steps
Section titled “Next steps”- Add more capability sources to
omni.toml. - Switch profiles with
omnidev profile set <name>. - Edit
OMNI.mdto refine project instructions.