| Crates.io | no-cluely-driver |
| lib.rs | no-cluely-driver |
| version | 0.0.4 |
| created_at | 2025-06-29 20:16:21.253229+00 |
| updated_at | 2025-06-29 20:16:21.253229+00 |
| description | Rust library for detecting Cluely employee monitoring software and its evasion techniques |
| homepage | https://github.com/terminalsin/no-cluely |
| repository | https://github.com/terminalsin/no-cluely |
| max_upload_size | |
| id | 1731089 |
| size | 362,438 |
Cluely is an undetectable AI that sees your screen, hears your calls, and feeds you answers — in real time
sharing_state = 0 to avoid screen recordinglayer = 3) to stay above screen captureA 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.
Available here /src/lib.rs
let window_id = get_dict_int(window_dict, WINDOW_NUMBER);
let sharing_state = get_dict_int(window_dict, WINDOW_SHARING_STATE);
let layer = get_dict_int(window_dict, WINDOW_LAYER);
let window_info = WindowInfo {
owner,
window_id,
sharing_state,
layer,
};
result.is_detected = true;
result.window_count += 1;
// Check for specific evasion techniques
if sharing_state == 0 {
result.screen_capture_evasion_count += 1;
}
This library provides SDKs for:
pip install no-cluely
from no_cluely import NoCluely
# Quick check
if NoCluely.is_cluely_running():
print("⚠️ Employee monitoring detected!")
else:
print("✅ No monitoring software found")
from no_cluely import NoCluely
detection = NoCluely.detect_cluely_detailed()
if detection.is_detected:
print(f"🚨 Cluely Detected!")
print(f" Severity: {detection.severity_level}")
print(f" Windows: {detection.window_count}")
print(f" Techniques: {', '.join(detection.evasion_techniques)}")
else:
print("✅ System clean")
MIT License - See LICENSE file for details.