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

@promptrails/ai-chat

v0.7.5

Published

Embeddable AI chat widget + React hooks for building AI chat interfaces

Readme

@promptrails/ai-chat

Embeddable AI chat widget + React hooks for building AI-powered chat interfaces.

Works with PromptRails, OpenAI, or any custom SSE/WebSocket backend.

Features

  • React HooksuseChat(), useStreaming(), useAgent(), useApproval()
  • React Components<ChatWindow />, <MessageBubble />, <AgentSteps />, <ApprovalCard />
  • Embeddable Widget — One <script> tag, no React needed. Shadow DOM isolation.
  • Ecommerce Widget — Browser-safe PromptRails sessions, product cards, persistence, feedback, and host events.
  • Customer-safe tool activity — Localized progress during catalog, knowledge, order, or custom tool calls without exposing arguments or results.
  • Multi-Provider — PromptRails, OpenAI, or any custom backend
  • Agent Step Tracking — Real-time multi-step execution timeline
  • Human-in-the-Loop — Built-in approval flow UI
  • Streaming — SSE and WebSocket support
  • TypeScript — Full type safety

Documentation

Installation

npm install @promptrails/ai-chat

The PromptRails provider targets PromptRails API v2 and uses the published @promptrails/sdk package. Browser widgets use the separate browser-safe chat runtime described below; never expose a provider credential or management API key in a storefront.

Quick Start

1. Script Tag (No React Needed)

<script
  src="https://cdn.jsdelivr.net/npm/@promptrails/[email protected]/dist/widget.global.js"
  data-provider="promptrails"
  data-base-url="https://api.promptrails.ai"
  data-api-key="BROWSER_ONLY_CHAT_KEY"
  data-agent-id="AGENT_KSUID"
  data-workspace-id="WORKSPACE_KSUID"
  data-title="Support Chat"
  data-greeting="Hi! How can I help you today?"
  data-persist-session="true"
  data-session-max-age="86400"
></script>

Or initialize programmatically:

<script src="https://cdn.jsdelivr.net/npm/@promptrails/[email protected]/dist/widget.global.js"></script>
<script>
  PromptRailsChat.init({
    provider: {
      type: "promptrails",
      apiKey: "BROWSER_ONLY_CHAT_KEY",
      agentId: "AGENT_KSUID",
      baseUrl: "https://api.promptrails.ai",
    },
    workspaceId: "WORKSPACE_KSUID",
    title: "AI Assistant",
    position: "bottom-right",
    primaryColor: "#2563eb",
    greeting: "Hi! How can I help?",
    persistSession: true,
    sessionMaxAge: 86400,
  });
</script>

The generic widget and ecommerce widget use the same browser-safe runtime. The generic bundle renders text chat; the ecommerce bundle additionally understands the allowlisted product UI contract and emits storefront events. Both refresh the 15-minute runtime bearer automatically, verify persisted history with a session resume secret, expose a new-session action, and support thumbs up/down feedback. See the generic browser widget guide.

Widget API:

PromptRailsChat.open();    // Open the chat panel
PromptRailsChat.close();   // Close the chat panel
PromptRailsChat.toggle();  // Toggle open/close
await PromptRailsChat.send("Track my order");
await PromptRailsChat.newSession();
PromptRailsChat.updateContext({ accountTier: "gold" });
PromptRailsChat.destroy(); // Remove from DOM

Ecommerce storefront widget

The ecommerce bundle is a lightweight vanilla Web Component. It does not ship React and talks directly to PromptRails' public browser chat runtime:

<script
  src="https://cdn.jsdelivr.net/npm/@promptrails/[email protected]/dist/ecommerce.global.js"
  defer
></script>

<promptrails-shop-assistant
  api-url="https://api.promptrails.ai"
  workspace-id="WORKSPACE_KSUID"
  agent-id="AGENT_KSUID"
  api-key="BROWSER_ONLY_CHAT_KEY"
  catalog-url="/api/catalog"
  brand="Acme"
  assistant-name="Acme Alışveriş Asistanı"
  assistant-mark="A"
  persist-session="true"
  session-max-age="86400"
  allowed-action-origins='["https://api.whatsapp.com"]'
></promptrails-shop-assistant>

The publishable key must have exactly chat:write, an agent allowlist, exact browser origins, and browser_only=true. The widget exchanges it for a 15-minute memory-only bearer, refreshes automatically, and resumes only one session with an origin/key-bound resume secret. Persisted history does not need a general read permission on the public key: listing messages requires both the short-lived token and that session's resume capability. See the ecommerce widget guide for theming, events, catalog shape, and security boundaries.

When the agent's read-only commerce tool already returns complete product records, set product-source="response" and omit catalog-url. This explicit mode sanitizes an allowlist of card fields from structured output and avoids a duplicate browser catalog request. The host must still validate emitted product URLs against its own storefront origin before navigating.

Standalone links use a separate, explicit boundary. The ecommerce widget only turns a declarative resource.open action or a URL in assistant text into a CTA when its exact origin appears in allowed-action-origins (same-origin links are allowed automatically). Other URLs remain inert text.

For bundled apps, import @promptrails/ai-chat/ecommerce to register the Web Component or use the typed ShopAssistant adapter from @promptrails/ai-chat/ecommerce/react.

2. React Component

import { ChatWindow, createPromptRailsBrowserProvider } from "@promptrails/ai-chat";
import "@promptrails/ai-chat/styles.css";

const provider = createPromptRailsBrowserProvider({
  apiKey: "BROWSER_ONLY_CHAT_KEY",
  agentId: "AGENT_KSUID",
  workspaceId: "WORKSPACE_KSUID",
});

export default function App() {
  return (
    <ChatWindow
      provider={provider}
      title="Support Chat"
      placeholder="Ask anything..."
      showAgentSteps
      showApprovals
    />
  );
}

3. React Hooks (Build Your Own UI)

import { useChat, createCustomProvider } from "@promptrails/ai-chat";

const provider = createCustomProvider({
  sendUrl: "/api/chat",
  streamUrl: "/api/chat/stream",
});

export default function CustomChat() {
  const { messages, isLoading, input, setInput, handleSubmit } = useChat({
    provider,
  });

  return (
    <div>
      {messages.map((msg) => (
        <div key={msg.id} className={msg.role}>
          {msg.content}
        </div>
      ))}

      <form onSubmit={handleSubmit}>
        <input
          value={input}
          onChange={(e) => setInput(e.target.value)}
          placeholder="Type a message..."
        />
        <button disabled={isLoading}>Send</button>
      </form>
    </div>
  );
}

Providers

PromptRails

import { createPromptRailsProvider } from "@promptrails/ai-chat";

const provider = createPromptRailsProvider({
  apiKey: "pr_...",
  agentId: "your_agent_id",
});

Supports: streaming, sessions, agent execution tracking, approvals.

createPromptRailsProvider uses the full PromptRails SDK and belongs in trusted server code or applications whose credential is not shipped to untrusted visitors. For a public browser, use the restricted runtime provider:

import { createPromptRailsBrowserProvider } from "@promptrails/ai-chat";

const provider = createPromptRailsBrowserProvider({
  apiKey: "BROWSER_ONLY_CHAT_KEY",
  agentId: "AGENT_KSUID",
  workspaceId: "WORKSPACE_KSUID",
  persistSession: true,
  sessionMaxAge: 86400,
});

Never embed an OpenAI/provider key, user JWT, PromptRails management key, or a browser key with permissions beyond the browser chat runtime in frontend code.

OpenAI

Trusted/server-side use only. Do not bundle an OpenAI key into a public web application; expose your own authenticated BFF endpoint to the browser instead.

import { createOpenAIProvider } from "@promptrails/ai-chat";

const provider = createOpenAIProvider({
  apiKey: process.env.OPENAI_API_KEY!,
  model: "gpt-4o-mini", // default
  baseUrl: "https://api.openai.com/v1", // default
});

Works with any OpenAI-compatible API (DeepSeek, Together, Groq, etc.).

Custom

import { createCustomProvider } from "@promptrails/ai-chat";

const provider = createCustomProvider({
  sendUrl: "https://your-api.com/chat",
  streamUrl: "https://your-api.com/chat/stream", // optional
  transport: "sse", // or "websocket"
  headers: { Authorization: "Bearer ..." },
});

Hooks API

useChat(options)

Main hook for chat functionality.

const {
  messages,     // Message[]
  isLoading,    // boolean
  error,        // Error | null
  input,        // string — controlled input value
  setInput,     // (value: string) => void
  sendMessage,  // (content: string) => Promise<void>
  handleSubmit, // (e?: FormEvent) => void
  retry,        // (messageId: string) => Promise<void>
  clearMessages,// () => void
  setMessages,  // (messages: Message[]) => void
} = useChat({ provider, sessionId, initialMessages, onError, onFinish });

useStreaming(options)

Low-level streaming control.

const {
  isStreaming,  // boolean
  content,     // string — accumulated content
  error,       // Error | null
  startStream, // (generator: AsyncGenerator<StreamEvent>) => void
  stopStream,  // () => void
} = useStreaming({ onChunk, onComplete, onError });

useAgent(options)

Track multi-step agent executions.

const {
  steps,          // AgentStep[]
  currentStep,    // AgentStep | null
  isRunning,      // boolean
  error,          // Error | null
  trackExecution, // (executionId: string) => void
  cancel,         // () => void
} = useAgent({ provider, onStepUpdate, onComplete, onError, pollIntervalMs });

useApproval(options)

Human-in-the-loop approval flow. In PromptRails API v2 an approval is an execution parked at waiting_approval; refresh() loads that inbox, and approve/reject resume the parked execution.

const {
  pendingApprovals, // ApprovalRequest[]
  approve,          // (id: string, reason?: string) => Promise<void>
  reject,           // (id: string, reason?: string) => Promise<void>
  isDeciding,       // boolean
  addApproval,      // (request: ApprovalRequest) => void
  refresh,          // () => Promise<void> — reload the waiting_approval inbox
} = useApproval({ provider, onApprovalRequired, onApprovalDecided });

Components

| Component | Description | |-----------|-------------| | <ChatWindow /> | Full chat interface with header, messages, input | | <MessageBubble /> | Single message bubble with markdown support | | <MessageInput /> | Auto-resizing textarea with send button | | <TypingIndicator /> | Bouncing dots animation | | <AgentSteps /> | Collapsible execution step timeline | | <ApprovalCard /> | Approve/reject card with reason input | | <ChatHeader /> | Title bar with online indicator | | <ScrollAnchor /> | Auto-scroll to newest messages |

Import components individually or from the main entry:

import { ChatWindow } from "@promptrails/ai-chat";
// or
import { ChatWindow } from "@promptrails/ai-chat/components";

Sub-path Imports

Tree-shake by importing only what you need:

import { useChat } from "@promptrails/ai-chat/core";
import { ChatWindow } from "@promptrails/ai-chat/components";
import { createOpenAIProvider } from "@promptrails/ai-chat/providers";

Widget Configuration

| Attribute | Description | Default | |-----------|-------------|---------| | data-provider | "promptrails", "openai", "custom" | required | | data-api-key | API key for the provider | — | | data-base-url | Backend API URL | — | | data-agent-id | PromptRails agent ID | — | | data-workspace-id | Local session storage namespace | — | | data-model | LLM model name (OpenAI) | "gpt-4o-mini" | | data-title | Chat window title | "Chat" | | data-placeholder | Input placeholder text | "Type a message..." | | data-greeting | Initial greeting message | — | | data-position | "bottom-right" or "bottom-left" | "bottom-right" | | data-primary-color | Hex color for theming | "#2563eb" | | data-width | Panel width in pixels | 380 | | data-height | Panel height in pixels | 600 | | data-z-index | CSS z-index | 2147483000 | | data-persist-session | Resume verified history after reload | true | | data-session-max-age | Local inactivity lifetime in seconds | 86400 | | data-stylesheet-url | Theme CSS loaded inside Shadow DOM | — | | data-new-session-label | Accessible new-session label | "New conversation" | | data-feedback-label | Feedback prompt | "Was this helpful?" |

Development

npm install        # Install dependencies
npm run build      # Build library + widget
npm test           # Run tests
npm run typecheck  # TypeScript check
npm run lint       # ESLint + Prettier
npm run lint:fix   # Auto-fix lint issues
npm run dev        # Watch mode

License

MIT — PromptRails