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

zephlo

v0.1.6

Published

Zephlo - AI chatbot widget for your website. Drop-in script tag or npm install.

Readme

Zephlo

AI chatbot widget for your website. Add a fully-featured chat assistant with a single script tag or npm install.

Quick Start

Script Tag (zero config)

The fastest way to get started — the floating button is injected for you:

<script
  src="https://unpkg.com/zephlo/dist/zephlo.js"
  data-chatbot-id="YOUR_AGENT_ID"
></script>

SDK (script tag or npm)

With the SDK you call Zephlo.initialize() and place a <zephlo-fab> (floating button) or <zephlo-chat> (inline) element yourself.

<script src="https://unpkg.com/zephlo/dist/zephlo.js"></script>
<zephlo-fab></zephlo-fab>
<script>
  const widget = Zephlo.initialize({
    key: "flk_your_api_key",
    chatbotId: "YOUR_AGENT_ID"
  });
</script>
npm install zephlo
import Zephlo from "zephlo";

const widget = Zephlo.initialize({
  key: "flk_your_api_key",
  chatbotId: "YOUR_AGENT_ID"
});

Options

| Option | Type | Required | Description | |--------|------|----------|-------------| | key | string | Yes | Your Zephlo API key (starts with flk_) | | chatbotId | string | Yes | Your agent's UUID | | apiUrl | string | No | Custom API URL (defaults to https://app.zephlo.ai) | | theme | object | No | Colors and light/dark mode (mode, light, dark) |

Features

  • Customizable colors, fonts, and dimensions
  • Logo upload or default chat icon
  • Quick prompts and follow-up suggestions
  • Greeting bubbles on hover
  • Voice input and spoken responses
  • Widget positions: bottom-left, bottom-right, left sidebar, right sidebar
  • WebMCP browser tool integration
  • MCP server connections for external tools
  • Responsive and mobile-friendly
  • Full TypeScript support

SDK Methods

The object returned by Zephlo.initialize() exposes these methods:

onToolResult(callback)

Listen for MCP tool results from the agent.

const unsubscribe = widget.onToolResult((results) => {
  console.log("Tool results:", results);
});

// Stop listening
unsubscribe();

registerTool(tool)

Register a custom tool the agent can call in the browser.

widget.registerTool({
  name: "get_cart_total",
  description: "Returns the current shopping cart total",
  inputSchema: { type: "object", properties: {} },
  execute: async () => {
    return JSON.stringify({ total: "$42.00" });
  }
});

sendContextUpdate(data, includePageDetails?)

Send context data to the agent (e.g. user info, page state).

widget.sendContextUpdate({
  userId: "abc123",
  plan: "pro"
}, true); // true = include current page URL and title

trigger(id, prompt, options?)

Fire a proactive message from the agent. prompt is an instruction the agent turns into a reply. Supports display mode ("open" | "prompt"), a cooldown policy ("session" | "once" | { minutes } | null), and pageContext.

widget.trigger("pricing_help", "Offer to answer questions about our pricing", {
  mode: "prompt",
  cooldown: "session"
});

scanForms()

Force an immediate re-scan for zephlo-tool-name forms (they're auto-detected otherwise).

Theme controls

Read/write the live theme: widget.theme = "dark", widget.headerColor = "#ff3b30", and widget.setColors("dark", { bgColor: "#000" }).

destroy()

Remove the widget from the page.

widget.destroy();

TypeScript

Full type definitions are included. Import types directly:

import Zephlo from "zephlo";
import type { ZephloOptions, ZephloInstance, ToolDefinition } from "zephlo";

License

Elastic License 2.0 (ELv2)