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

@xenara/xena-sdk

v1.4.7

Published

A powerful SDK to embed AI agents into any web platform. Enable conversational experiences, automate workflows, and provide intelligent assistance through a customizable chat interface.

Readme

🧠 Xena SDK — Embed AI Agents into Any Web Platform

npm version License: MIT Build Status

Xena SDK is a powerful, plug-and-play SDK that lets you embed conversational AI agents into any website or web application in minutes. Enable intelligent conversations, automate workflows, and enhance user engagement with ease.


🚀 Features

  • ⚡️ Lightweight & Fast — Designed for quick embedding with minimal setup.
  • 🧠 AI-Powered — Backed by powerful LLMs for human-like conversation.
  • 🎨 Customizable UI — Change colors, avatars, and prompts to match your brand.
  • 🔌 Platform Agnostic — Works on any frontend (React, Vue, Angular, or plain HTML).
  • 🔒 Secure & Scalable — Optimized for production deployments.
  • 🪄 Event Hooks & API Integration — Easily connect to your internal tools or APIs.
  • 📦 CDN or NPM Ready — Load via script tag or install via npm.

📦 Installation

Option 1: Using npm/yarn

npm install @xenara/xena-sdk
# or
yarn add @xenara/xena-sdk

Option 2: Using CDN

<script src="https://widget.xenara.ai/dist/widget.js"></script>

🛠️ Usage

Basic Setup (with npm)

import { Xena } from "@xenara/xena-sdk";

Xena.init({
  containerId: "your-container-id",
  apiKey: "your-api-key",
  user_id: "unique-user-id", // Optional, for user-specific data
  name: "User name", // Optional, for personalized greetings
  email: "[email protected]", // Optional, for user-specific data
  created_at: "2023-10-01T00:00:00Z", // Optional, to capture the user's sign-up date
});

HTML Example (via CDN)

<div id="xena-container"></div>
<script src="https://widget.xenara.ai/dist/widget.js"></script>
<script>
  window.Xena.init({
    containerId: "your-container-id",
    apiKey: "your-api-key",
    user_id: "unique-user-id", // Optional, for user-specific data
    name: "User name", // Optional, for personalized greetings
    email: "[email protected]", // Optional, for user-specific data
    created_at: "2023-10-01T00:00:00Z", // Optional, to capture the user's sign-up date
  });
</script>

🎨 Customization

You can pass the following options to init():

| Option | Type | Description | | ------------- | -------- | ----------------------------------- | | containerId | string | DOM ID to mount the chat widget | | apiKey | string | Unique key for your AI agent | | user_id | string | Unique user identifier (optional) | | name | string | User's name for personalized greetings (optional) | | email | string | User's email for personalized data (optional) | | created_at | string | User's sign-up date in ISO format (optional) |


🔌 Integrations

Xena SDK can be integrated with:

  • 🔗 Your internal APIs (e.g., for FAQs, user data, transactions)
  • 💬 Backend chat engines or ML endpoints
  • 📈 Analytics tools like Google Analytics or Mixpanel

🧩 Future Roadmap

  • [ ] Voice input/output
  • [ ] Multi-agent support
  • [ ] Chat memory and history sync
  • [ ] Plugin system for adding skills
  • [ ] Mobile SDKs

🤝 Contributing

We welcome contributions! Please read our contribution guide before submitting a pull request.


📄 License

This project is licensed under the MIT License.


🌐 Links