carvus-lens 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
File without changes
package/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # CARVUS-SEARCH
2
+
3
+ CARVUS-SEARCH is a highly advanced, ultra-fast background desktop utility for Linux (and Windows/macOS) that brings the ultimate "Circle to Search" experience directly to your computer!
4
+
5
+ ## Features
6
+
7
+ 1. **Background Service Engine**: Runs silently in the background with zero performance impact.
8
+ 2. **Instant Trigger**: Press **`Super + C`** (Windows/Command Key + C) from ANY application to instantly freeze your screen and pull up the overlay. If not working press it again and again
9
+ 3. **Official Google Search (Legal)**: Draw a circle anywhere on your screen. The app extracts text using **Tesseract.js** and instantly triggers an official **Google Programmable Search Engine** lookup. This is the 100% legal way to integrate Google Search results directly into your workflow!
10
+ 4. **Cloud-Speed AI**: Click **Ask AI** or **Translate** to send the extracted text to the blazing-fast Groq AI engine (Llama 3.3 70B) for instant summaries, answers, and translations.
11
+ 5. **Read Aloud & Clipboard**: One-click to copy text or have the system dictate it out loud using native text-to-speech!
12
+ 6. **Next-Next-Gen Aesthetics**: Gorgeous edge lighting, moving particle effects, and a glassmorphic draggable popup window.
13
+
14
+ ## How to Use
15
+
16
+ 1. Start the engine:
17
+ ```bash
18
+ npm start
19
+ ```
20
+ 2. The app runs in the background. Press **`Super + C`** (Windows Key + C) to freeze the screen and start circling!
21
+ 3. Draw a circle around any text, image, or question.
22
+ 4. The Google Search results will appear automatically in the popup.
23
+ 5. Use the Action Bar to switch to **Ask AI**, **Translate**, or **Copy** the text.
24
+
25
+ ## Legal Note
26
+ This app uses the **Google Programmable Search Element API**, which is the official and compliant way to embed Google Search. No scraping or ToS violations!
package/bin/cli.js ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env node
2
+ const { execSync } = require('child_process');
3
+ const path = require('path');
4
+
5
+ const electronPath = path.join(__dirname, '..', 'node_modules', '.bin', 'electron');
6
+ const appPath = path.join(__dirname, '..');
7
+
8
+ try {
9
+ execSync(`"${electronPath}" "${appPath}"`, { stdio: 'inherit' });
10
+ } catch (e) {
11
+ // App closed normally
12
+ }
package/icon.png ADDED
Binary file