Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>Omni BeamNew to Visual Studio Code? Get it now.
Omni Beam

Omni Beam

Automatic Computer Fanatic

|
1 install
| (0) | Free
The professional real-time code relay and synchronization system.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

🛰️ Omni Beam

The Professional Real-Time Code Relay & Synchronization System

Omni Beam is a high-speed bridge between your browser, your AI workflows, and your local VS Code environment. It is designed to empower both individual developers and collaborative teams by providing a shared, real-time environment where code snippets, AI-generated logic, and file updates transer and manifest instantly across all authorized workstations. End-to-End Encryption is employed.

💰 Subscription:$1.50/Month
💳 Activate Service: Click Here to Pay via Stripe
📩 Support: newsfan@automaticnewsfanatic.com

By purchasing, the customer agrees to the terms in the LICENSE.md (presented at the bottom of this document).


🛠️ The 4 Ways to Use Omni Beam

1. The "Omni Beam" (AI-to-Code)

This is the most powerful feature for developers using AI. Instead of manually copying code from Gemini, ChatGPT, or Claude, and then manually creating a file in VS Code, you "Beam" it.

  • What it does: Extracts highlighted text and creates a physical file in your active VS Code folder instantly.
  • The Detail: It handles Base64 encoding to ensure that complex characters, emojis, or specific formatting in the AI's response aren't corrupted during the transfer.

2. Omni Live Dashboard Monitoring

You can monitor your code activity without having VS Code open.

  • What it does: Turns any web browser into a "Live Stream" of your code.
  • The Detail: By visiting https://nexus-relay.onrender.com and entering your credentials, you enter a world of connections. If you are away from your main computer, you can still see exactly what code is being "Beamed" or synced in real-time.

3. Omni Multi-Device "Ctrl + S" Sync

Perfect for developers working on two machines (e.g., a Desktop and a Laptop) or teams needing instant local updates.

  • What it does: Every time you save a file in VS Code on Computer A, it updates the same file on Computer B automatically.
  • The Detail: This uses the Private Room logic. Because both computers use your unique API Key, they are "locked" together in a secure room on the relay server.

4. Omni Zero-Touch File Manifesting

  • What it does: Creates files that don't exist yet.
  • The Detail: If you "Beam" a code generated by any AI in your browser named ytdcivilwarscholarships.js but that file doesn't exist in your current VS Code project, Nexus Sync will generate the file for you and open the tab so you can begin working immediately. Beaming works with numerous file extensions.

🚀 Execution Guide

Step 1: VS Code Configuration

  1. Install the omnibeam.vsix extension.
  2. Open Settings (Ctrl + ,) and search for Omni Beam

Step 2: Setting up "The Beam" (One-Time Setup)

  1. Right-click your browser's Bookmark Bar > Add Page.
  2. Name: 🚀 Omni Beam
  3. URL: Paste the code below (Replace YOUR_API_KEY with your actual key):
javascript:(function(){
    const s=window.getSelection().toString();
    if(!s){alert('Highlight code first!');return}
    const f=prompt("File name:","script.js");
    if(!f) return;
    const r=prompt("Team Room Password:","MY_ROOM_123");
    if(!r) return;

    /* 1. Create Overlay UI */
    const overlay = document.createElement('div');
    overlay.style = "position:fixed;top:20px;right:20px;padding:20px;background:#1e1e1e;color:#4AF626;border:2px solid #4AF626;border-radius:10px;z-index:10000;font-family:sans-serif;box-shadow:0 4px 15px rgba(0,0,0,0.5);transition:all 0.5s ease;";
    overlay.innerHTML = `<div style="font-weight:bold;margin-bottom:5px;">🛰️ OMNI BEAM</div><div id="ob-status">Beaming code...</div>`;
    document.body.appendChild(overlay);

    /* 2. Encode and Send */
    const encodedCode = btoa(unescape(encodeURIComponent(s)));

    fetch('https://nexus-relay.onrender.com/inject',{
        method:'POST',
        headers:{
            'Content-Type':'application/json',
            'Authorization':'YOUR_API_KEY',
            'room': r
        },
        body:JSON.stringify({ files: [{ name: f, content: encodedCode }] })
    })
    .then(res => {
        if(res.ok) {
            /* 3. Success State */
            document.getElementById('ob-status').innerText = "✅ Success! Sent to Room: " + r;
            overlay.style.background = "#0e2a0e";
            setTimeout(() => { 
                overlay.style.opacity = "0";
                setTimeout(() => overlay.remove(), 500);
            }, 3000);
        } else {
            throw new Error();
        }
    })
    .catch(e => {
        overlay.style.color = "#ff5555";
        overlay.style.borderColor = "#ff5555";
        document.getElementById('ob-status').innerText = "❌ Beam Failed. Check Console.";
        setTimeout(() => overlay.remove(), 5000);
    });
})();

📝 Added Version 3.1.2 features:

📁 Multi-File "Project Beaming" 3.1.2 allows you to move entire logic blocks and multi-file structures instantly.

How it Works: Expanded Capacity: The relay server now supports payloads up to 5MB (a 500% increase from V2).

Smart Bundling: When you trigger a sync, NexusSync packages your active workspace context into a single "Project Beam."

Auto-Discovery: The system identifies related files (like your .html and associated .css) to ensure your dashboard or secondary device receives a complete working environment.

Instructions: Ensure your files are saved in the active VS Code editor.

Run the Nexus: Run Active Code command.

Your Relay Dashboard will automatically detect the multi-file payload and reconstruct the project view.

🤖 "O AI" Chat (Beta) Integrated directly into your Relay Dashboard, O AI acts as a bridge between your beamed code and advanced Large Language Models.

Features: Contextual Awareness: The AI doesn't just see a prompt; it sees the code you just "beamed," allowing for instant debugging and explanations.

Server-Side Processing: Powered by axios, your relay server handles the heavy lifting of communicating with AI endpoints.

Instructions: Open your Nexus Dashboard (index.html) in any browser.

Locate the new Nexus AI Chat Window at the bottom of the interface.

Type your question (e.g., "Why is my flexbox not centering?" or "Optimize this function").

The AI will analyze the code currently stored in your private room and return a response directly to the dashboard.

⚖️ OmniBeam Proprietary License (Terms) Usage: This license grants one (1) user the right to use the NexusSync extension and relay service.

Restrictions: You may not reverse-engineer the relay server, attempt to bypass authentication, or redistribute your unique API key to third parties.

Liability: The software and service are provided "as-is". The developer is not responsible for loss of any kind, damages, or service downtime arising from the use of this software.

Termination: The developer reserves the right to terminate access if terms are violated.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft