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

@activade/open-workflows

v2.0.6

Published

AI-powered GitHub automation workflows via composite actions

Readme

open-workflows

GitHub automation workflows via composite actions. AI-powered reviews, labeling, and doc sync - plus automated releases with npm provenance.

Quick Start

bunx @activade/open-workflows

The CLI will prompt you to select workflows and install them to .github/workflows/.

Available Actions

| Action | AI | Description | |--------|-----|-------------| | pr-review | Yes | AI-powered code reviews | | issue-label | Yes | Auto-label issues based on content | | doc-sync | Yes | Keep docs in sync with code changes | | changeset | Yes | AI-generated changesets for monorepo releases | | release | No | Semantic versioning with npm provenance |

Manual Usage

AI-Powered Actions

name: PR Review
on:
  pull_request:
jobs:
  review:
    runs-on: ubuntu-latest
    permissions:
      contents: read
      pull-requests: write
    steps:
      - uses: actions/checkout@v4
      - uses: activadee/open-workflows/actions/pr-review@main
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}

Release Action (No AI)

name: Release
on:
  workflow_dispatch:
    inputs:
      bump:
        description: 'Version bump'
        required: true
        type: choice
        options: [patch, minor, major]
jobs:
  release:
    runs-on: ubuntu-latest
    permissions:
      contents: write
      id-token: write
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0
      - uses: activadee/open-workflows/actions/release@main
        with:
          bump: ${{ inputs.bump }}
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

No NPM_TOKEN needed - uses OIDC trusted publishing with provenance.

Changeset Action (AI-Powered)

name: AI Changeset
on:
  pull_request:
    types: [opened, synchronize, reopened]
jobs:
  changeset:
    runs-on: ubuntu-latest
    permissions:
      contents: write
      pull-requests: write
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0
          ref: ${{ github.head_ref }}
          token: ${{ secrets.GITHUB_TOKEN }}
      - uses: activadee/open-workflows/actions/changeset@main
        with:
          mode: commit  # or 'comment' to suggest via PR comment
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}

The changeset action analyzes PR changes and generates Changesets files automatically:

  • Detects which packages are affected in monorepos
  • Infers version bump type from conventional commits
  • Writes user-facing changelog entries

Authentication

For AI Actions

Option 1: API Key

gh secret set ANTHROPIC_API_KEY

Option 2: Claude Max (OAuth)

Use the opencode-auth-sync plugin to automatically sync your OAuth tokens:

bunx @activade/opencode-auth-sync

Or manually set the secret:

gh secret set OPENCODE_AUTH < ~/.local/share/opencode/auth.json

CLI Options

bunx @activade/open-workflows [OPTIONS]

OPTIONS
  --force, -f    Override existing files without prompts
  --version, -v  Display version
  --help, -h     Display help

How It Works

AI Actions (pr-review, issue-label, doc-sync, changeset):

  1. Workflow triggers on GitHub event
  2. Composite action sets up Bun and OpenCode
  3. OpenCode runs with the bundled skill
  4. AI analyzes content and takes action

Changeset Action:

  1. Triggers on PR open/update
  2. AI analyzes diff, commits, and PR description
  3. Generates .changeset/<random>.md with package bumps and changelog
  4. Either commits to PR branch or suggests via comment

Release Action:

  1. Manually triggered with version bump type
  2. Generates changelog from git commits
  3. Publishes to npm with provenance
  4. Creates GitHub release with notes

Customizing

Fork this repository and modify:

  • actions/*/skill.md - AI behavior for AI-powered actions
  • scripts/*.ts - OpenCode custom tools (submit-review, apply-labels)
  • actions/release/src/publish.ts - Release logic

License

MIT