Models Competition Live144 clones in 14 days Community Vote

The Invisible AI Desktop Assistant for High-Stakes Work.

Floating AI copilot for live meeting transcription & executive notes, technical interviews, and sales battlecards. Completely 100% invisible to anyone watching your screen share on Zoom, Teams, Discord, and OBS.

Live Meeting Summaries Sub-Second Screen OCR Undetectable Invisibility Encrypted Local Keys
StealthIt Workspace • Active Session
Screen Capture Shield: Active
// Executive Engineering & Architecture Review Call

Participant [VP Engineering]: “Let's review the Q3 multi-region infrastructure budget before Thursday.”

Participant [Product Lead]: “The automated load tests and failover benchmarks are passing with 99.99% uptime.”

Participant [CTO]: “Ensure SOC-2 compliance requirements and cache invalidation policies are audited.”

Participant [Director]: “What were the exact p99 latency numbers on the new database cluster?”

StealthIt AI AssistantActive Mode
Latency: 84ms
Live Meeting Executive Summary (Ctrl+R):

1. Budget Deadline: Finalize Q3 infrastructure numbers by Thursday.
2. Uptime SLAs: Multi-region failover tests verified at 99.99%.
3. Talking Point: Mention p99 latency dropped from 140ms to 24ms after redis caching.

Hotkeys: Ctrl+R (Notes) • Ctrl+Enter (Vision) • Ctrl+\ (Toggle) Ready
Models Showdown

Active Competitor Implementations

Different AI models engineered and refined StealthIt to compete for the official standalone Windows desktop application.

🟠

Claude Opus 5 (v2)

Native Desktop Performance & Whisper Engine

Recommended

Native rewrite with fast response times, hardware-encrypted local key storage, built-in Whisper voice meeting transcription, and multi-model endpoint routing (with AgentRouter $175 free token support).

Encrypted Local Keys
Local Whisper Voice Engine
Multi-Model API Router
Screen Invisibility: 100%
Directory: /claude-opus-5Python 3.10+
$ python -m stealthit
Invisibility Tested & VerifiedVote Claude Opus
🟣

Antigravity & Gemini 3 Pro

Original Baseline Architecture

Baseline v1

The original proof-of-concept created by Antigravity and Gemini-3-pro. Lightweight transparent overlay with direct Google Gemini multimodal vision streaming.

Lightweight Transparent View
Direct Gemini Vision Stream
Local Ollama Support
Sub-Second OCR Snaps
Directory: /antigravity-originalPython 3.10+
$ python main.py
Original ConceptVote Baseline

Want to submit your own model implementation?

Create a dedicated folder (e.g. your_model), adhere to the stealth benchmarks, and open a Pull Request.

Contribution Rules →
Community Consensus Poll

Crown the Champion Codebase

Your vote directly decides which implementation will be compiled into the official standalone Windows executable (.exe).

Total Votes Cast: ...
Leading: Syncing...
Claude Opus 5 (v2)

Native desktop UI + encrypted key storage + local Whisper meeting transcription engine

0%0 votes
Antigravity & Gemini 3 ProBaseline

Lightweight transparent webview overlay with direct Gemini multimodal pipeline

0%0 votes
Enter a New Model (Custom PR)Custom PR

Submit your custom model implementation in a dedicated subfolder

0%0 votes
Shared directly with the development team
Quick tag:
Developer Contribution Guide

How to Enter Your Model in the Arena

The Models Arena is open to all AI systems and developers. Build a competitor folder, test against our benchmarks, and submit a Pull Request. Top-rated implementations get listed on the live community voting poll.

01

Create Competitor Branch

Fork the repository on GitHub and create a dedicated subfolder matching your AI model (e.g. mkdir your_model).

02

Fulfill Stealth Constraints

Must be 100% invisible on Zoom/OBS screen shares, zero taskbar presence, support hotkeys, and provide local encrypted key storage.

03

Open Pull Request

Submit your PR with a dedicated README, test suite, and requirements file. We merge and add your model to the community poll.

Competition Rules & Mandatory Specifications
True Screen Invisibility:

Verified that OBS, Zoom, Teams, and Discord screen capture cannot capture the window.

Multimodal Hotkey (Ctrl+Enter):

Captures in-memory screen frames and streams to vision models with sub-second response.

Hardware Encrypted Keys:

API keys must be encrypted locally (e.g. DPAPI) rather than stored in plain text.

Subfolder Isolation:

All code must live cleanly within your subfolder with its own requirements.txt.

# 1. Fork and clone the StealthIt repository
git clone https://github.com/Thairu-dev/StealthIt.git
cd StealthIt

# 2. Create your competitor folder
mkdir "your_model"
cd "your_model"

# 3. Build your implementation adhering to the Arena Rules
# 4. Open a Pull Request with your model benchmark!
Versatile High-Stakes Workflows

One Invisible Assistant. Infinite Use Cases.

Whether summarizing executive meetings, navigating live coding interviews, or handling tough client calls—StealthIt runs silently on your screen.

Real-Time Notes & Action Items

Live Meeting Transcriber & AI Executive Summarizer

Hotkeys: Ctrl+R (Voice) • Ctrl+Enter (Vision)

Listen silently to Zoom, Teams, Google Meet, or in-person conferences with local Whisper audio transcription (Ctrl+R). Instantly generate structured executive summaries, action item checklists, and strategic decision logs without taking manual notes.

Step 01

Ctrl+R captures crystal-clear system loopback and mic audio locally via Whisper.

Step 02

AI synthesizes speaker context, deadlines, and deliverables in real time.

Step 03

Produces clean Markdown meeting minutes ready to export to Slack, Notion, or Docs.

Live AI Assistant OutputLatency: 88ms

> Executive Summary: 1. Q3 Roadmap approved. 2. Sharding migration scheduled for Tuesday 02:00 UTC. 3. @Sarah to follow up on SOC-2 compliance audit by Friday.

True Screen Share Invisibility

How Screen Share Invisibility Works

Whether you are on Zoom, Google Meet, Microsoft Teams, Discord, or OBS, StealthIt remains completely invisible to viewers while staying fully readable on your physical screen.

Display Preview Mode:
// Live Meeting & Coding Assessment Screen
function reverseLinkedList(head: ListNode | null): ListNode | null {
let prev = null, curr = head;
while (curr) { [curr.next, prev, curr] = [prev, curr, curr.next]; }
}
Visible Only on Your Physical DisplayHotkey: Ctrl+Enter

> AI Analysis: “Iterative pointer reversal verified. Time: O(N), Space: O(1).”

Protection: ActiveOverlay visible only to you
1. 100% Invisible to Meeting Viewers

Never worry about accidentally leaking your AI assistant. The app is automatically filtered out from all screen capture APIs (WDA_EXCLUDEFROMCAPTURE).

2. Hardware-Encrypted Security

Your API keys and sensitive meeting transcripts are stored securely on your local machine using Windows Data Protection (DPAPI).

3. Instant In-Memory Screen Snapping

Screenshots are analyzed sub-second directly in memory and never saved as clutter on your hard drive.

Production Roadmap

Road to Standalone Windows Application

Moving beyond manual git clone & python setups. The crowned winner becomes the foundation for a 1-click installer.

Phase 01 • Active

Models Competition & Voting

Open-source benchmarking in the wild. 144+ clones, active community voting, and local Whisper meeting transcription validation.

Open Source GitHub Repository
Public Community Voting
Developer Model Submissions
Phase 02 • Upcoming

Compiled Standalone (.exe)

Crowning the champion codebase and compiling into a signed, zero-configuration Windows executable with auto-updates.

1-Click Windows Setup (No Python Needed)
Code-Signed Standalone Executable
Silent Background Auto-Updates
Developer Quickstart

Run Both Competitors Locally

Clone the codebase and test both models side-by-side on your machine before casting your vote.

# 1. Clone the repository
git clone https://github.com/Thairu-dev/StealthIt.git
cd StealthIt/claude-opus-5

# 2. Install dependencies (Python 3.10+)
pip install -r requirements.txt

# 3. Launch Claude Opus 5 Desktop Utility
python -m stealthit
Need free test tokens? Claim $175 in free API credits via AgentRouter with your GitHub account.Claim $175 Tokens
Early Access Notification

Get Notified on Standalone Release

Subscribe for zero-spam release alerts the moment the crowned champion model's 1-click Windows installer (.exe) and Pro beta go live.