npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@orello/sdk

v0.0.75

Published

Browser embed script for Orello AI agents - Mounts a floating launcher, loads the widget iframe, and provides a lightweight runtime API.

Readme

Orello SDK (@orello/sdk)

The official browser SDK for Orello AI. This script mounts a floating launcher, loads the highly interactive widget, and provides a powerful runtime API for site automation and visual context awareness.

✨ Core Features

  • Floating Launcher & Widget: Sleek, glassmorphic UI that sits on top of your site.
  • Multimodal Context: Automatically captures DOM state and visual screenshots for the AI.
  • Voice Transcription: Real-time speech-to-text using Deepgram (with Web Speech API fallback).
  • Voice Synthesis: Low-latency text-to-speech using ElevenLabs (with Web Speech Synthesis fallback).
  • Wake-Word Support: "Hey [Agent Name]" opens the widget hands-free.
  • Programmatic Actions: The AI can click, scroll, and navigate your site autonomously.

🚀 Installation

Embed the Orello agent into any website by adding this script tag before the closing </body> tag:

<script
  src="https://cdn.jsdelivr.net/npm/@orello/sdk@latest/dist/orello.min.js"
  data-api-key="YOUR_WIDGET_KEY"
  data-agent="ASSISTANT_UID"
  data-api-base="https://api.orello.space"
></script>

⚙️ Configuration Attributes

Required

  • data-api-key: Your unique Widget API key (found in the Orello Dashboard).
  • data-agent: The unique UID of the assistant you want to load.

Optional

  • data-api-base: The base URL of the Orello API. Default: https://api.orello.space.
  • data-agent-service-url: URL for the real-time interaction socket.
  • data-wake-word: Enable the "Hey [Agent Name]" wake-word listener (true or false). Default: true.
  • data-session-id: Explicitly set a session ID (useful for cross-page persistence).

🎤 Voice & AI Settings

Users can configure their own provider credentials in the Voice & AI tab of the Orello Settings:

  • Deepgram: Used for high-accuracy, real-time transcription. If unavailable, the SDK falls back to the browser's built-in webkitSpeechRecognition.
  • ElevenLabs: Used for premium, natural-sounding voice synthesis. If unavailable, the SDK falls back to the browser's built-in window.speechSynthesis.

📡 Emitted Window Events

The SDK dispatches custom events for easy integration:

  • orello:ready: Fired when the agent is fully loaded. Access data via event.detail.agent.
  • orello:error: Fired on initialization or runtime errors. Access message via event.detail.message.
  • orello:navigate: Fired when the AI attempts a soft-navigation. Prevent default to handle it via your router.

🛠️ Runtime API

Programmatic control via window.OrelloWidget:

  • open() / close() / toggle(): Control widget visibility.
  • actions.click(selector): Force the agent to click an element.
  • actions.scroll(x, y): Programmatic scrolling.
  • actions.highlight(selector): Pulse an element to guide the user.
  • getDom(): Get a sanitized snapshot of the current page DOM.

📄 License

MIT © Orello Team