A desktop application to help you cheat on everything.
- Make sure you have Node.js installed on your computer
- Git installed on your computer
- A Claude API key (get it from Anthropic Console)
- Clone the repository:
git clone [repository-url]
cd free-cluely- Install dependencies:
npm install- Set up environment variables:
- Create a file named
.envin the root folder - Add your Claude API key:
CLAUDE_API_KEY=your_api_key_here- Save the file
- Create a file named
- Open a terminal and run:
npm run dev -- --port 5180- Open another terminal in the same folder and run:
NODE_ENV=development npm run electron:devnpm run buildThe built app will be in the release folder.
-
Closing the App:
- Press
Cmd + Q(Mac) orCtrl + Q(Windows/Linux) to quit - Or use Activity Monitor/Task Manager to close
Interview Coder - The X button currently doesn't work (known issue)
- Press
-
If the app doesn't start:
- Make sure no other app is using port 5180
- Try killing existing processes:
# Find processes using port 5180 lsof -i :5180 # Kill them (replace [PID] with the process ID) kill [PID]
-
Keyboard Shortcuts:
Cmd/Ctrl + H: Take screenshotCmd/Ctrl + Enter: Get solution from ClaudeCmd/Ctrl + B: Toggle app visibility (hide/show)Cmd/Ctrl + Arrow Keys: Move window around screenCmd/Ctrl + Q: Quit the application
Model Selection:
Cmd/Ctrl + 5: Switch to Claude 3.5 Sonnet (balanced performance)Cmd/Ctrl + 7: Switch to Claude 3.7 Sonnet (advanced reasoning)Cmd/Ctrl + 4: Switch to Claude Sonnet 4 (latest high-performance)Cmd/Ctrl + 4 + 4: Switch to Claude Opus 4 (double-press - most powerful)Cmd/Ctrl + 3: Switch to Claude 3 Opus (legacy powerful)Cmd/Ctrl + Shift + H: Switch to Claude 3.5 Haiku (fastest)
Performance:
Cmd/Ctrl + Shift + S: Toggle Speed Mode (auto-switch to fastest model)
Window Management:
Cmd/Ctrl + Shift + Up: Increase window sizeCmd/Ctrl + Shift + Down: Decrease window size
Solution Navigation:
Shift + Up/Down: Scroll through solution content
If you see errors:
- Delete the
node_modulesfolder - Delete
package-lock.json - Run
npm installagain - Try running the app again using Method 1
This version uses Claude API which doesn't support direct audio analysis. Audio features will provide general guidance about audio analysis limitations and suggest alternative approaches.
The app includes several optimizations to reduce response times:
Press Cmd/Ctrl + Shift + S to toggle Speed Mode:
- Enabled: Automatically uses Claude 3.5 Haiku (fastest model) with optimized settings
- Disabled: Uses your selected model with standard settings
- Screenshots are automatically compressed before sending to the API
- Reduces image size by ~60-80% while maintaining quality
- Uses JPEG compression at 75% quality for optimal speed/quality balance
- Haiku models: 1024 tokens (fastest)
- Sonnet 3.5: 2048 tokens (balanced)
- Other models: 3072 tokens (detailed)
- Use Speed Mode (
Cmd+Shift+S) for faster responses - Choose the right model:
- Haiku: Fast, good for simple questions
- Sonnet: Balanced speed and quality
- Opus: Slow but most accurate
- Take smaller screenshots when possible
- Use concise prompts for faster processing
If you have any feature requests or bugs, feel free to create PRs and Issues.