// Add-ons
Community-built extensions that add new tools, agent modes, and integrations to Omni Code. Open source, version-tracked, and fetched directly from GitHub.
Available add-ons
Omni Git Review
Automated PR reviewer. Summarizes diffs, flags issues, suggests improvements, and writes commit messages.
Omni Prettier
Runs Prettier on your files through the agent. Format a single file, a directory, or your entire workspace.
Omni Test Runner
Run, analyze, and fix failing tests through the agent. Supports Jest, Vitest, Pytest, and TAP-compatible frameworks.
How to install an add-on.
Open Omni Code
Navigate to Settings → Add-ons, or press the [+] button in the sidebar add-ons panel.
Paste the repo URL
Enter the GitHub URL of the add-on. Omni Code clones it locally and reads the manifest.
Activate
Toggle the add-on on. Its tools and modes are immediately available to the agent.
Publish your add-on.
Add-ons are just a folder with a manifest.json. Fork the registry repo, add your folder, open a PR. Merged PRs immediately appear in this page.
{
"name": "my-addon",
"description": "What your add-on does.",
"author": "your-github-username",
"version": "1.0.0",
"tags": ["category", "language"],
"repo": "https://github.com/you/my-addon"
}Need help building an add-on?
Ask in GitHub Discussions or the Discord server. The community is happy to help you build and publish your first add-on.
[VISIT COMMUNITY →]