omnigate-ai 1.0.0 β†’ 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +56 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,56 @@
1
+ # OmniGate AI 🌌
2
+
3
+ ![Version](https://img.shields.io/badge/version-1.0.0-blue.svg)
4
+ ![License](https://img.shields.io/badge/license-MIT-green.svg)
5
+
6
+ **The Privacy-First LLM API Gateway for Developers & AI Agents**
7
+
8
+ OmniGate AI is a self-hosted, local proxy server designed to sit between your code editors (like VS Code, Roo Code, Cline) and your LLM providers (OpenAI, DeepSeek, Anthropic). It intercepts API requests to securely inject your real API keys, count tokens, and calculate costs in real-timeβ€”all without your secret keys ever leaving your machine.
9
+
10
+ ---
11
+
12
+ ## πŸš€ Quick Start
13
+
14
+ No complex installations required. If you have Node.js installed, simply run:
15
+
16
+ ```bash
17
+ npx omnigate-ai
18
+ ```
19
+
20
+ This will instantly download and start the proxy server on port `8080`.
21
+
22
+ ## πŸ’» The Dashboard
23
+
24
+ Once the server is running, open your web browser and navigate to:
25
+ **http://localhost:8080/dashboard**
26
+
27
+ You will be greeted by a beautiful, glassmorphic UI where you can:
28
+ 1. **Secure Your Gateway:** Create a local "Gateway Secret Key" to lock down your proxy.
29
+ 2. **Add API Keys:** Securely store your real OpenAI or DeepSeek API keys locally.
30
+ 3. **Track Usage:** Watch real-time gauges spin as your tokens are consumed, showing you exact costs and RPM (Requests Per Minute).
31
+ 4. **Audit Logs:** View a live feed of every single request your AI tools are making behind the scenes.
32
+
33
+ ## πŸ› οΈ Integrating with VS Code / AI Agents
34
+
35
+ To route your AI coding assistant through OmniGate AI:
36
+
37
+ 1. Open your AI Tool's settings (e.g., Roo Code or Continue).
38
+ 2. Set the **Provider** to `OpenAI Compatible`.
39
+ 3. Set the **Base URL** to `http://localhost:8080/v1`.
40
+ 4. Set the **API Key** to your **Gateway Secret Key** (the one you created in the dashboard, *not* your real OpenAI key).
41
+
42
+ Now, start coding! OmniGate AI will silently intercept the requests, inject your real API key, forward it to the provider, and track your tokens on the dashboard.
43
+
44
+ ## ✨ Features
45
+
46
+ - **πŸ”’ 100% Local Privacy:** Your real API keys are saved locally. Cloud-based AI tools never see them.
47
+ - **πŸ’Έ Token & Cost Tracking:** Accurate token counting and real-time cost estimation for OpenAI and DeepSeek models.
48
+ - **πŸ›‘οΈ Rate Limit Protection:** Monitor your RPM to prevent accidental massive API bills from rogue agents.
49
+ - **πŸ“‘ Live Audit Log:** Total transparency into what your automated agents are actually sending to the LLMs.
50
+ - **⚑ Zero Configuration:** Starts instantly with a single `npx` command.
51
+
52
+ ## 🌐 Website
53
+ Visit our [Landing Page](https://erfanhassan.github.io/Omnigate.ai) for more information.
54
+
55
+ ## πŸ“„ License
56
+ MIT License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnigate-ai",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Privacy-first, self-hosted LLM API Gateway and Proxy for tracking token usage.",
5
5
  "main": "server.js",
6
6
  "type": "module",