You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once installed via `omni init --all`, OMNI works invisibly in the background. Whether your AI Agent runs a terminal command via MCP or you manually pipe output (`ls | omni`), OMNI automatically jumps in as a transparent layer. It intelligently filters terminal output, removes the noisy logs, and hands the clean signal back to the AI.
141
+
Once installed via `omni init`, OMNI works invisibly in the background. Whether your AI Agent runs a terminal command via MCP or you manually pipe output (`ls | omni`), OMNI automatically jumps in as a transparent layer. It intelligently filters terminal output, removes the noisy logs, and hands the clean signal back to the AI.
142
142
143
143
To review how many tokens (and how much money) you've saved today, just type:
144
144
```bash
@@ -148,6 +148,29 @@ omni stats
148
148
Need to see the filters in action or add your own custom rules?
149
149
You can easily create your own rules using simple TOML files.
150
150
151
+
### Multi-Agent Support & Integrations
152
+
153
+
By default, `omni init --claude` automatically hooks into **Claude Code**. However, OMNI works perfectly with any agentic AI through its built-in integrations! Run `omni init` to see the interactive menu.
154
+
155
+
1.**VS Code & Continue.dev**: Use our MCP context provider (`integrations/continue-dev/`).
3.**Generic Webhook (Antigravity IDE etc)**: Run `omni serve --port=7891` to launch an ultra-lightweight local HTTP server for agents to drop payloads into OMNI.
158
+
159
+
**Multi-Agent Tuning (`~/.omni/config.toml`)**
160
+
Different agents have different pain points. Keep VS Code chat clean, whilst letting OpenCode read more data. Tune them individually:
Copy file name to clipboardExpand all lines: docs/MIGRATION.md
+5-11Lines changed: 5 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,13 +25,7 @@ OMNI 0.5.0 is a **full rewrite in Rust** — replacing the previous Node.js + Zi
25
25
26
26
### ⚠️ Hooks Must Be Reinstalled
27
27
28
-
The hook format has changed. Run:
29
-
30
-
```bash
31
-
omni init --hook
32
-
```
33
-
34
-
This will update `~/.claude/settings.json` with the new hook entries.
28
+
The hook format has changed. Make sure to run `omni init` after upgrading to update the `PostToolUse` and `SessionStart` hooks in your Claude settings.
35
29
If you had custom hooks, they will be backed up to `settings.json.bak`.
36
30
37
31
### ⚠️ `omni monitor` → `omni stats`
@@ -63,7 +57,7 @@ The MCP server is now built-in. Update your Claude config:
63
57
}
64
58
```
65
59
66
-
Or run `omni init --hook` which handles this automatically.
60
+
Or run `omni init --claude` which handles this automatically.
67
61
68
62
## What's Compatible (No Action Needed)
69
63
@@ -83,7 +77,7 @@ Or run `omni init --hook` which handles this automatically.
83
77
```bash
84
78
brew update
85
79
brew upgrade omni
86
-
omni init --hook# Reinstall hooks
80
+
omni init # Select Claude Code, or run: omni init --claude
0 commit comments