Quick Start Guide
This guide will get you from installation to your first AI-powered screenshot analysis in under 5 minutes.Make sure you’ve completed the installation before proceeding.
Launch Cluely
Start the application
Open your terminal in the Cluely directory and run:The application will:
- Start the Vite development server on port 5180
- Wait for the server to be ready
- Launch the Electron window
Understand the interface
Cluely’s window is designed to be invisible and non-intrusive:
- Translucent background: See through to your work underneath
- Always on top: Stays visible across all applications
- Compact design: Takes minimal screen space
Master the keyboard shortcuts
Cluely is designed to be controlled entirely with keyboard shortcuts for maximum efficiency.Essential shortcuts
| Shortcut | Action | Description |
|---|---|---|
Cmd/Ctrl + H | Take screenshot | Captures screen and auto-processes with AI |
Cmd/Ctrl + Enter | Get solution | Processes queued screenshots |
Cmd/Ctrl + B | Toggle visibility | Show/hide the window |
Cmd/Ctrl + Shift + Space | Show & center | Brings window to center of screen |
Cmd/Ctrl + R | Reset | Clears all queues and cancels requests |
Cmd + Q / Ctrl + Q | Quit | Closes the application |
Window positioning
| Shortcut | Action |
|---|---|
Cmd/Ctrl + Left | Move window left |
Cmd/Ctrl + Right | Move window right |
Cmd/Ctrl + Up | Move window up |
Cmd/Ctrl + Down | Move window down |
All shortcuts are registered globally in
electron/shortcuts.ts:11-106 and work even when Cluely isn’t focused.Your first screenshot analysis
Position the window
Move Cluely’s window to a corner of your screen where it won’t obstruct your work:Or hide it completely with
Cmd/Ctrl + B - it will reappear automatically when you take a screenshot.Open content to analyze
Open something you want help with:
- A coding problem
- An error message
- A technical diagram
- Documentation you don’t understand
- A math equation
- Interview question
Capture the screenshot
Press
Cmd + H (macOS) or Ctrl + H (Windows/Linux)What happens:- Cluely window automatically hides
- Screenshot is captured (entire screen)
- Window reappears with preview
- AI automatically processes the image
The screenshot is saved temporarily and will be auto-deleted after processing for privacy.
View the AI analysis
Within seconds, you’ll see:
- AI’s analysis of the screenshot
- Explanations and insights
- Code suggestions (if applicable)
- Step-by-step solutions
- Syntax highlighting for code
- Math rendering (via KaTeX)
- Markdown formatting
Example workflows
Debugging code errors
Capture the error
- Open your IDE with the error message visible
- Press
Cmd/Ctrl + Hto capture - AI analyzes the error and code context
Get the solution
AI provides:
- Explanation of what’s wrong
- Why the error occurred
- How to fix it
- Prevention tips
Interview preparation
Capture the question
During a coding interview or practice:
- Question appears on screen
- Press
Cmd/Ctrl + Hto capture - AI analyzes the problem
Review the approach
AI provides:
- Problem understanding
- Solution approach
- Code implementation
- Time/space complexity
- Edge cases to consider
Learning from presentations
Capture slides
During a presentation or lecture:
- Interesting slide appears
- Press
Cmd/Ctrl + Hto capture - Continue listening
Understanding the processing flow
When you take a screenshot, here’s what happens under the hood:Screenshot capture
- Captured using
screenshot-desktoplibrary - Compressed with Sharp
- Stored temporarily
- Preview generated for UI
AI processing
- K2 Think (if
USE_K2_THINK=true) - OpenRouter (if
OPENROUTER_API_KEYset) - Gemini (if
GEMINI_API_KEYset) - Ollama (if
USE_OLLAMA=true)
Response rendering
The AI response is rendered with:
- react-markdown: Markdown parsing
- react-syntax-highlighter: Code syntax highlighting
- rehype-katex: Math equation rendering
- remark-gfm: GitHub Flavored Markdown support
Advanced tips
Multiple screenshots for context
You can take multiple screenshots before processing to give the AI more context.
- Take first screenshot:
Cmd/Ctrl + H(auto-processes) - For additional context, manually queue more screenshots
- All screenshots are analyzed together
Reset and start fresh
If you want to start a new analysis:- Cancels any ongoing API requests
- Clears screenshot queues
- Resets view to initial state
- Deletes screenshot metadata
Using the tray menu
Cluely adds a menu bar icon (macOS shows “IC”):- Double-click: Show and center window
- Right-click menu:
- Show Interview Coder
- Toggle Window
- Take Screenshot (Cmd+H)
- Quit
Optimize for your use case
- Privacy-focused
- Performance-focused
- Cost-optimized
Use Ollama for 100% local processing:
- No data sent to cloud
- Works offline
- Requires more RAM
Troubleshooting common issues
Screenshot not capturing
Go to: System Preferences → Security & Privacy → Privacy → Screen Recording Add and enable Cluely/Electron.AI not responding
Window positioning issues
If the window is off-screen or positioned oddly:What’s next?
Now that you’re familiar with the basics:Explore AI Providers
Learn about different AI provider options and how to switch between them
Keyboard Shortcuts
Master all shortcuts for maximum productivity
Privacy & Security
Understand how Cluely protects your data
Advanced Configuration
Customize Cluely’s behavior and appearance
Remember: Press
Cmd/Ctrl + Q to quit the application properly. The close button (X) doesn’t work yet.