Cluely is an undetectable AI that sees your screen, hears your calls, and feeds you answers — in real time
Detectable by Design
What goes on under the hood
- 🚫 Screen Capture Evasion: Windows configured with
sharing_state = 0to avoid screen recording - 🔼 Elevated Layer Positioning: Windows using elevated display layers (e.g.,
layer = 3) to stay above screen capture
A CS:GO cheater would have had an easier time making a VAC bypass than this. Having your active process named "cluely" is like shouting out you're cheating.
The detection
Available here /src/lib.rs
let window_id = get_dict_int;
let sharing_state = get_dict_int;
let layer = get_dict_int;
let window_info = WindowInfo ;
result.is_detected = true;
result.window_count += 1;
// Check for specific evasion techniques
if sharing_state == 0
SDKs (Integrate detection in your app!)
This library provides SDKs for:
- Python
- Java
- JavaScript/TypeScript
- Swift
🐍 Python
Simple Detection
# Quick check
Detailed Analysis
=
License
MIT License - See LICENSE file for details.