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

@kevinmarmstrong/edgekit-ui

v0.3.2

Published

Web component UI for edgekit browser-native agents.

Readme

@kevinmarmstrong/edgekit-ui

Lit web component UI for Edgekit sidecars.

Use it when an existing web app wants to mount a browser-native agent surface without adopting a specific frontend framework.

import { mountChat } from '@kevinmarmstrong/edgekit-ui'
import { chromeAI } from '@kevinmarmstrong/edgekit'
import { supportTools, supportWorkflowProfile } from './support-profile'

const chat = mountChat('#assistant', {
  missionProfile: supportWorkflowProfile,
  tools: supportTools,
  agentTitle: 'Ask me anything',
  agentSubtitle: 'About this workflow',
  statusText: '',
  placeholder: 'Ask for support help',
  model: [chromeAI()],
  telemetry,
})

For public sites that use downloadPolicy: "never" and a grounded fallback, prefer the lite entry:

import { mountChat } from '@kevinmarmstrong/edgekit-ui/lite'

Pair it with createGroundedQaSkill() from @kevinmarmstrong/edgekit-knowledge when adding Q&A to a public website.

<div id="assistant"></div>
<edge-cascade-wizard></edge-cascade-wizard>

For direct element usage, <edge-chat> also supports agent-title, agent-subtitle, status-text, placeholder, ready-message, and show-tool-events attributes.

The component exposes CSS custom properties such as --edge-chat-accent, --edge-chat-font-family, --edge-chat-radius, and --edge-chat-shadow, plus ::part() hooks for header, title, subtitle, status, messages, message, user, assistant, system, form, input, button, and send-button.

<edge-cascade-wizard> is optional demo-grade UI for the headless createCascadeReadinessController() contract. Production apps can replace it with their own banner, setup wizard, settings panel, or feature gate.

The host app owns state, authorization, business logic, and tool execution. The component renders chat, activity states, EdgeView cards/forms/tables/charts, approval prompts, and optional cascade-readiness status.

Action forms are resolved through the active tool surface. If the app uses a toolProvider or RBAC-filtered toolManifests, generated forms can only call tools exposed for the current session and intent. Forms produced by host-owned registerActions() are trusted user-confirmed CTAs; arbitrary EdgeView or AG-UI forms cannot execute approval-gated tools directly.