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

opencode-search

v0.0.8

Published

OpenCode plugin that provides web search tools using DuckDuckGo, Wikipedia, Bluesky, Standard.site, and MDN Web Docs.

Readme

opencode-search

An OpenCode plugin that gives your agent access to DuckDuckGo, Wikipedia, Bluesky, standard.site, and MDN Web Docs.

Quick Start

Add to your opencode.json:

{
  "plugin": ["opencode-search"]
}

Restart OpenCode. The plugin will be installed automatically.

Tools

ddg-search

Search the web using DuckDuckGo. Returns a text summary of search results.

| Parameter | Type | Required | | --------- | ------ | -------- | | query | string | yes |

DuckDuckGo does not provide a structured API. Results are extracted from their HTML endpoint, which means coverage is limited compared to traditional search engines. It works best for factual queries, definitions, and well-known topics. Complex or niche queries may return empty results.

bsky-search

Search Bluesky posts via the AT Protocol. Returns posts with author handle, text, and engagement counts (likes, reposts, replies).

| Parameter | Type | Required | Description | | --------- | ------ | -------- | ------------------------------ | | query | string | yes | | | limit | number | no | Number of results to return | | sort | string | no | Sort order: top or latest |

standard-search

Search standard.site document records on the AT Protocol. Returns blog posts and articles published to the ATmosphere with title, URL, date, and snippet.

| Parameter | Type | Required | Description | | --------- | ------ | -------- | ---------------------------------- | | query | string | yes | | | limit | number | no | Number of results to return | | offset | number | no | Number of results to skip |

standard.site is a publishing platform built on the AT Protocol where content is stored in a user's personal data repository. Unlike traditional websites that require crawlers and indexing pipelines to be discoverable, content published on standard.site is structured, portable, and directly queryable through the AT Protocol.

wiki-search

Search Wikipedia articles using the MediaWiki REST API. Returns structured results with title, description, excerpt, and a direct link to the article. No API key required.

| Parameter | Type | Required | Description | | --------- | ------ | -------- | ---------------------------------- | | query | string | yes | | | limit | number | no | Number of results (1-100) |

mdn-search

Search MDN Web Docs. Returns documentation pages for web technologies with title, URL, and summary. No API key required.

| Parameter | Type | Required | Description | | --------- | ------ | -------- | ---------------------------------- | | query | string | yes | | | limit | number | no | Number of results to return | | page | number | no | Page number for pagination |

Why not Google?

Google Custom Search JSON API has been deprecated for API key authentication. The Programmable Search Engine is being wound down in favor of a new product limited to 50 domains. Existing engines continue to work until January 1, 2027, but new API keys can no longer be created for this use case. We removed Google search support entirely rather than ship a tool that will break.

License

MIT