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

@seed-drill/rutherford

v1.0.2

Published

Rutherford onboarding system for Cordelia - conversational user profile creation

Readme

Rutherford

The Rutherford onboarding system for Cordelia - a conversational user profile creation experience.

Overview

Rutherford is the guitar-wielding guide who helps new Cordelia users create their persistent memory profiles through a conversational flow. Named with a nod to Robert Fripp and King Crimson, Rutherford makes the onboarding process feel like a jam session rather than a form-filling exercise.

What's Included

  • Frontend Components: Conversational UI with step-based flow, countdown timers, and interactive inputs
  • Backend Handler: Profile creation endpoint with validation and encryption support
  • Schema Definitions: TypeScript schemas for L1 Hot Context using Zod

Installation

npm install @seed-drill/rutherford

Usage

Backend (Express.js)

import express from 'express';
import { createSignupHandler } from '@seed-drill/rutherford/backend';
import { L1HotContextSchema } from '@seed-drill/rutherford/schema';

const app = express();

// Add the signup route
app.post('/api/signup', createSignupHandler({
  storage: yourStorageProvider,
  crypto: yourCryptoProvider,
  sessions: yourSessionStore,
}));

Frontend (HTML)

<!DOCTYPE html>
<html>
<head>
  <link rel="stylesheet" href="path/to/rutherford/styles.css">
</head>
<body>
  <div id="genesis-container"></div>
  <script type="module" src="path/to/rutherford/genesis.js"></script>
</body>
</html>

Or use the complete HTML template:

import { getGenesisHTML } from '@seed-drill/rutherford/frontend';

app.get('/genesis', (req, res) => {
  res.send(getGenesisHTML());
});

Features

  • Conversational Flow: 17-step guided questionnaire with Rutherford as the host
  • Multiple Setup Modes: Genesis (full onboarding), Upload (existing profile), or Bare (minimal account)
  • Smart Inputs: Different input types - select, multiselect, tags, and text
  • Countdown Timers: 60-second timeouts per question with auto-skip defaults
  • Profile Generation: Creates validated L1 Hot Context with identity, preferences, and delegation rules
  • Encryption Support: Optional AES-256-GCM encryption for sensitive data
  • Session Linking: Integrates with session management for authenticated users

Profile Data Collected

  • Identity: Name, GitHub ID, organization, roles
  • Style: Working preferences, planning mode, verbosity
  • References: Formative books/works, inspirational figures
  • Preferences: Emoji usage, planning mode, feedback style

License

MIT