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

@opena2a/contribute

v0.1.1

Published

Shared community trust data contribution client for OpenA2A tools

Readme

@opena2a/contribute

npm version License: Apache-2.0

Shared community trust data contribution client for OpenA2A tools.

Install

npm install @opena2a/contribute

What It Does

When users opt in, OpenA2A tools (HackMyAgent, opena2a-cli, Browser Guard) can contribute anonymized scan results to the OpenA2A Registry. This package provides the shared client that all tools use to queue and submit that data.

  • Opt-in only -- no data is sent unless the user explicitly enables contribution
  • Anonymized -- only aggregate scan summaries are submitted, never source code or secrets
  • Batched -- events are queued locally and flushed in batches to reduce network calls
  • Consistent -- all OpenA2A tools use this same client, ensuring uniform data format

Usage

import { contribute } from '@opena2a/contribute';

// Record a scan result (no-op if contribution is disabled)
await contribute.scanResult({
  tool: 'hackmyagent',
  toolVersion: '0.11.12',
  packageName: 'my-mcp-server',
  packageVersion: '1.0.0',
  ecosystem: 'npm',
  totalChecks: 42,
  passed: 38,
  critical: 0,
  high: 1,
  medium: 2,
  low: 1,
  score: 85,
  verdict: 'WARN',
  durationMs: 1200,
});

// Record a detection event
await contribute.detection({
  tool: 'opena2a-cli',
  toolVersion: '0.8.11',
  agentsFound: 3,
  mcpServersFound: 5,
  frameworkTypes: ['claude', 'openai'],
});

// Manually flush queued events
await contribute.flush();

API

| Export | Description | |--------|------------| | contribute.scanResult(params) | Queue a scan result event | | contribute.detection(params) | Queue a detection event | | contribute.flush() | Submit all queued events to the Registry | | isContributeEnabled() | Check if contribution is enabled | | queueEvent(event) | Low-level: add an event to the local queue | | getQueuedEvents() | Low-level: read queued events | | clearQueue() | Low-level: clear the local queue | | shouldFlush() | Check if the queue has reached the flush threshold | | buildBatch(events) | Build a submission batch from queued events | | submitBatch(batch) | Submit a batch to the Registry API | | getContributorToken() | Get or create an anonymous contributor token |

Part of OpenA2A

This is an internal package used by opena2a-cli, HackMyAgent, and other OpenA2A tools. For the CLI, see the main repository.

License

Apache-2.0