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

@solidus-network/agent-identity-react

v0.1.1

Published

React components for Solidus agent identity — the Verified-by-Solidus badge, agent passport card, and mandate-approval prompt. Self-contained (no external CSS), theme-aware, testnet-grade.

Readme

@solidus-network/agent-identity-react

React components for Solidus agent identity — the Verified by Solidus badge, the agent passport card, a mandate-approval prompt, and operator-console primitives.

Self-contained: no external CSS, tailwind, or font bundle required. Safe to drop into any React app, including a relying party's site (the badge is the adoption-flywheel surface). Every component is theme-aware — theme="light" | "dark" (default dark).

Status honesty

These components state it in the UI, not just the docs:

  • Solidus L1 is testnet-only.
  • did:solidus is submitted to the W3C DID Method Registry, under review — never rendered as "registered".
  • BBS+ is testnet-grade; external audit pending.

Install

npm i @solidus-network/agent-identity-react react

Components

import {
  AgentBadge,
  AgentPassportCard,
  MandateApproval,
  AgentList,
} from '@solidus-network/agent-identity-react'

// The "Verified by Solidus" badge — put it wherever an agent acts.
<AgentBadge did={agent.did} status="active" variant="full" href={agent.agentCardUri} />

// Full passport: DID, ERC-8004 anchor, credential list, honest status lines.
<AgentPassportCard did={agent.did} passport={agent.passport} credentials={creds} />

// Human-in-the-loop spend approval (states the exact bounded authority).
<MandateApproval terms={mandateTerms} onApprove={approve} onDecline={decline} />

// Operator console: a compact agent table.
<AgentList agents={agents} onSelect={openAgent} />

Design

Follows the Solidus anti-vibecode canon: solid status dots (never haloed or pulsing), the brand lime→cyan gradient used only as a 2px header underline (never a card fill), IBM Plex Sans for body / IBM Plex Mono for DIDs and hashes, cyan/lime on dark navy, 4/6/8/12 radii, no emoji, no hype copy. The kit renders correctly with no fonts installed (safe monospace/sans fallbacks); load IBM Plex on your page for the intended look.

License

Apache-2.0