In short, Cluely is not undetectable for desktop or proctoring-specific web monitoring software, like Chime, PearsonVue, HireVue, and more.
To enable undetectability, please open the desktop app, hover over your profile icon, click the General Tab, and turn on the undetectability toggle.
How to Test Undetectability
If you need to test undetectability for your device, simply turn invisible mode on and take a screenshot of where Cluely is.
If Cluely is visible in your screenshot, your system is not compatible (Windows 10, Macs from before 2022) or there is an ongoing bug. If Cluely is invisible in your screenshot, it will be undetectable in the supported meeting software.
Invisibility for Conferencing Software
Zoom: Not Invisible by Default
You'll need to either use Zoom version 6.16 or older, or turn on Advanced capture with window filtering in your Zoom settings. This is important to make sure everything works smoothly. We've thoroughly tested this and can confirm it works perfectly as long as you pass these basic checks first.
Google Meet
Invisible unless system requirements are not met. We've thoroughly tested this and can confirm it works perfectly as long as you pass these basic checks first.
Microsoft Teams
Invisible unless system requirements are not met. Cluely is known to be detectable on Windows 10 and Windows 11 Home when sharing entire screen.
Cisco WebEx
Invisible unless system requirements are not met. We've thoroughly tested this and can confirm it works perfectly as long as you pass these basic checks first.
Slack Huddle
Invisible unless system requirements are not met. We've thoroughly tested this and can confirm it works perfectly as long as you pass these basic checks first.
Ring Central
Invisible unless system requirements are not met. We've thoroughly tested this and can confirm it works perfectly as long as you pass these basic checks first.
Apollo Dialer
Invisible unless system requirements are not met. We've thoroughly tested this and can confirm it works perfectly as long as you pass these basic checks first.
FaceTime
Not compatible with FaceTime.
CoderPad
Invisible unless system requirements are not met. We've thoroughly tested this and can confirm it works perfectly as long as you pass these basic checks first.
HackerRank
Invisible unless system requirements are not met. We've thoroughly tested this and can confirm it works perfectly as long as you pass these basic checks first.
Cluely is NOT Undetectable For...
Cluely will be detected and is NOT invisible for Proctor360, Proctorio, Honorlock, Meazure Learning, Examity, Respondus LockDown Browser, ProctorExam, Mercer Mettl, and PSI Bridge.
How Undetectability Works
Most coding interviews happen right in your web browser (like on HackerRank, CoderPad, or CodeSignal). Browsers are designed like secure bubbles β what happens inside one tab generally can't see or mess with anything outside of it. This is called "sandboxing," and it's a core security feature.
Think of the interview website running in a browser tab. It can show you the coding problem and run its own scripts, but it's walled off from the rest of your computer. It simply doesn't have permission to peek at other apps you might be running.
What Interview Platforms Can See (Inside the Bubble)
Within their own tab, interview platforms can use browser features to monitor some things:
Losing Focus / Switching Tabs: They know if you click outside the browser window or switch tabs. But they don't know what you switched to.
// They can detect this... window.addEventListener('blur', () => { console.log('User looked away from the tab!'); });
Pasting Code: They can tell if you paste something into the code editor, potentially flagging large or frequent pastes.
// ...and they can detect this. codeInput.addEventListener('paste', (event) => { console.log('Paste detected!'); });
Webcam Monitoring (Sometimes): Some platforms might use your webcam to monitor eye movement, flagging excessive looking away.
Screen Sharing (If Requested): If you're asked to share your screen via Zoom, Meet, or the platform itself, they can see what you choose to share.
They might also try to guess based on typing speed, but it's often unreliable.
What They Cannot See (Outside the Bubble)
Crucially, because of the browser sandbox and how operating systems work, these platforms cannot reliably:
Know What App You Switched To: When you lose focus (the
blur
event), the browser gives no information about which other application became active.Scan Running Apps: There's no way for a website to get a list of other programs running on your computer. This is a fundamental OS security boundary.
// This CANNOT be done from a webpage! function getRunningApps() { // No browser API exists for this! return navigator.runningProcesses || []; } if (getRunningApps().includes('SomeApp.exe')) { // Impossible check }
Read Other App Memory: Accessing the memory of other applications is strictly forbidden by your operating system for security reasons.
Track Your Every Click/Keystroke Globally: They can only see clicks and keys typed inside their own browser tab, not system-wide.
See Invisible Native Apps During Screen Share: While screen sharing shows your desktop, applications designed to be hidden (like Interview Coder) won't appear in the shared view or screenshots.
Why Interview Coder is Different & How It Counters Detection
Interview Coder isn't a browser extension; it's a separate native desktop app. This fundamental difference is key to avoiding detection:
It Lives Outside the Bubble: The browser running the interview has no connection to Interview Coder and simply cannot see it or interact with it. It doesn't need to read browser memory because it operates independently with its own data.
Invisible to Screen Sharing: The app utilizes specific operating system APIs and window properties that designate its window to be excluded from screen captures, recordings, and screen sharing sessions (like Zoom, Meet). This is a standard OS feature used by various overlay or privacy-focused applications, not a browser hack.
No Focus / Active Tab Change & Global Hotkeys: When you toggle Interview Coder's visibility (using β+B), it uses standard OS-level global hotkey registration. This is completely separate from the browser's event system. Your mouse cursor focus stays in the browser, and the active browser tab does not change, bypassing platform checks for these specific actions.
Webcam / Eye Tracking Counter: You can use keyboard shortcuts (β + Arrow Keys) to move the Interview Coder window directly over the assessment's coding area. This allows you to view solutions while appearing to look directly at the screen where the code editor is.
Reasoning Support: To help you explain your thought process (a common interview check), Interview Coder provides not just code, but also line-by-line comments and high-level reasoning hints, making it easier to articulate the solution naturally.
Uses Standard OS Features: Beyond the specific examples above, it generally works using normal, legitimate operating system functions, leaving no unusual footprint that typical browser-based monitoring could detect.
So, while platforms can detect simple events like pasting or clicking away from a tab, Interview Coder is architected to sidestep these checks and remain invisible to the monitoring methods available within a browser sandbox or standard screen share.
What About Desktop Proctoring Apps?
You might wonder: couldn't they just make you install a separate desktop app to monitor everything? In theory, yes. But reputable platforms avoid this because:
It's a huge security risk (potential spyware).
It raises major privacy concerns.
It would destroy user trust.
That's why almost all coding assessments stick to the safety of the browser sandbox.
The Bottom Line
Because coding interviews run in secure browser tabs, and Interview Coder runs as a completely separate native application, standard detection methods simply can't see it. We designed it specifically with browser security limitations in mind.
Until the day that companies require you to download and install a separate desktop app, or migrate completely to in-person interviews, Interview Coder will work.
Questions? We're happy to chat more about the tech!