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

@alergeek-ventures/opencode

v1.0.1

Published

AV's guidelines as a plugin for OpenCode

Readme

@alergeek-ventures/opencode

An OpenCode plugin that provides AI-powered code review using Alergeek Ventures' coding guidelines.

What it does

This plugin adds a /av-review command to OpenCode that reviews your code changes against a curated set of guidelines. It uses a multi-agent architecture:

  • Orchestrator agent - Analyzes the scope of changes and delegates review tasks
  • File-level reviewer agents - Check specific files against applicable guidelines

These subagents are hidden by default, meaning - you won't select them via Tab. Meaning, it won't clutter your setup, but requires you to use the command.

The review focuses on architectural concerns, following the guidelines we have across the company. What it does not focus on is syntax / style issues (which should be handled by linters and formatters).

Installation

bunx @alergeek-ventures/opencode@latest init

This will:

  1. Install the agent definitions to ~/.config/opencode/agent/
  2. Install the command to ~/.config/opencode/command/
  3. Prompt you to add the plugin to your OpenCode config

After running init, add the plugin to your ~/.config/opencode/config.json:

{
  "plugin": ["@alergeek-ventures/opencode"]
}

If you won't install the plugin, agents and command will work, but agent won't have access to the guidelines.

Usage

In any git repository with OpenCode:

/av-review

I decied to prefix it to not collide with built-in /review.

The command reviews:

  • Unstaged changes
  • Difference from main branch
  • Last commit (if on main)

Guidelines

It's a distilled version of what we validate when working in AV. They were collected and modified from different places from the internet. Couple of examples of guidelines, to understand what is there:

| Guideline | Focus | | ------------------------------- | ------------------------------- | | bulletproof-react | React patterns and architecture | | building-html-interfaces | HTML/UI best practices | | colocation | Keeping related code together | | derived-state-vs-actual-state | State management patterns | | directory-structure | Project organization | | focused-changes | Change scope and PR hygiene | | reduce-cognitive-load | Code complexity and readability | | reducing-entropy | Fighting technical debt |

You can go to src/guidelines. Guidelines are accessible via the listGuidelines and readGuideline tools exposed by the plugin. It's also possible to fork this repository, change the guidelines folder and put your own stuff there.

Possibly interesting things to test out:

With Bun's macros - it should be super easy to swap these out. And with opencode subagents, it's easy to validate in parallel.

How the Review Works

  1. Orient - List changed files via git diff --name-only origin/main
  2. Delegate - For larger changes, spawn file-level reviewer subagents
  3. Collect - Gather findings, deduplicate, and produce a summary

License

MIT