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

@thunderbird-dev/hive

v0.1.0

Published

Agent-native navigation infrastructure. A semantic graph AI agents pathfind through.

Downloads

7

Readme

Hive

Agent-native navigation infrastructure. A semantic graph AI agents pathfind through.

What is Hive?

Hive is not a UI dashboard or chatbot manager. It's a data structure agents traverse.

Agent: "I need button styling rules"
     ↓
Hive: returns best hex entry point
     ↓
Agent: enters hex, gets contents
     ↓
Agent: "now I need accessibility context"
     ↓
Hive: evaluates edge conditions, returns matching route
     ↓
Agent: traverses edge to next hex

Edges encode "when this → do that" logic. The topology IS the executable logic. Agents don't search — they pathfind.

Installation

npm install @thunderbird-dev/hive

Usage with Claude Code

Add Hive as an MCP server:

claude mcp add hive -- npx @thunderbird-dev/hive

Then in Claude Code, you'll have access to these tools:

| Tool | Purpose | |------|---------| | hive_query | Find hexes matching an intent | | hive_enter | Get a hex's contents | | hive_next_steps | Get available edges from current hex | | hive_traverse | Follow an edge to next destination | | hive_deposit | Leave data at a hex | | hive_create_hex | Create a new hex | | hive_list_hexes | List all hexes in the graph | | hive_journey_log | View navigation history |

Programmatic Usage

import { Hive } from "@thunderbird-dev/hive";

const hive = new Hive("./");

// Query for entry points
const results = await hive.query("button styling rules");

// Enter a hex
const hex = await hive.enter("constitution-interactive-elements", {
  agentId: "my-agent",
  intent: "learn button patterns"
});

// Get next steps
const edges = await hive.nextSteps("constitution-interactive-elements", {
  intent: "accessibility requirements"
});

// Traverse an edge
await hive.traverse("constitution-interactive-elements", "to-accessibility", context);

Included Content

Hive ships with the Engineering Constitution — 19 hexes covering:

  • UI Foundations, Typography, Interactive Elements
  • Motion, Color System, Layout & Spacing
  • Accessibility, Performance, Code Standards
  • Backend API, Data Layer, Testing & QA
  • Ops & Ship, Growth & Launch, Project Setup
  • Design System, Strategy & Scope, Copy & Voice

Creating Custom Hexes

await hive.createHex({
  id: "my-custom-hex",
  name: "My Custom Hex",
  type: "data",
  contents: {
    data: { rules: "Your content here" }
  },
  entryHints: ["keywords", "that", "match", "this", "hex"],
  edges: [
    {
      id: "to-related",
      to: "another-hex-id",
      when: { intent: "related topic keywords" },
      priority: 5,
      description: "Navigate to related content"
    }
  ],
  tags: ["custom", "example"]
});

License

MIT