New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

orquesta-embed

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

orquesta-embed

Embed Orquesta UI into any production website

latest
Source
npmnpm
Version
0.2.1
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Orquesta Embed SDK

Embed Orquesta AI-powered development UI into any production website.

Features

  • 🎯 Element Selection - Right-click any element to prompt about it
  • 📋 Console Capture - Auto-include console logs in prompts
  • 🌐 Network Capture - Include network errors for debugging
  • 📊 Timeline - View prompt history and status
  • 🚀 Deployments - See current deployment status
  • 🎨 Customizable - Position, theme, features

Installation

React

npm install orquesta-embed
import { OrquestaEmbed } from 'orquesta-embed'
import 'orquesta-embed/styles.css'

function App() {
  return (
    <>
      <YourApp />
      <OrquestaEmbed
        token="oek_xxxxx"
        position="bottom-right"
        captureConsole={true}
        captureNetwork={true}
        onReady={() => console.log('Orquesta ready!')}
      />
    </>
  )
}

Vanilla JavaScript

<script src="https://orquesta.live/embed/v1/orquesta.min.js"></script>
<script>
  const widget = Orquesta.init({
    token: 'oek_xxxxx',
    position: 'bottom-right',
    captureConsole: true,
    captureNetwork: true,
    onReady: () => console.log('Orquesta ready!')
  });

  // Programmatic API
  widget.open();
  widget.close();
  widget.toggle();
  widget.startElementSelection();
  widget.submitPrompt('Fix this bug', { includeConsole: true });
  widget.destroy();
</script>

Configuration

OptionTypeDefaultDescription
tokenstringrequiredYour embed token (oek_xxx)
position'bottom-right' | 'bottom-left' | 'top-right' | 'top-left''bottom-right'Panel position
defaultOpenbooleanfalseStart with panel open
theme'dark' | 'light' | 'auto''dark'Color theme
featuresFeature[]All featuresEnabled features
captureConsolebooleantrueCapture console.log/error
captureNetworkbooleantrueCapture fetch/XHR errors
hotkeystring'ctrl+shift+o'Keyboard shortcut to toggle
onReady() => void-Called when connected
onPromptSubmit(promptId: string) => void-Called when prompt submitted
onError(error: Error) => void-Called on errors

Getting Your Token

  • Go to your project settings on orquesta.live
  • Navigate to Settings > Embed
  • Click Generate Token
  • (Optional) Add domain restrictions

Security

  • Embed tokens can be restricted to specific domains
  • Tokens only allow submitting prompts and viewing data
  • No access to credentials or sensitive settings
  • Rate limited to prevent abuse

License

MIT

Keywords

orquesta

FAQs

Package last updated on 12 Apr 2026

Related posts