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

@evernaut/rocket-gha-agent

v0.4.0

Published

Rocket GHA execution agent — runs codebase analysis, doc ingestion, and bash commands in GitHub Actions

Readme

@evernaut/rocket-gha-agent

Thin execution agent for Rocket that runs inside GitHub Actions. Performs codebase analysis and doc ingestion on your repository, sending results back to Rocket for knowledge graph construction.

How it works

  1. Rocket dispatches a GitHub Actions workflow with a session ID
  2. The agent connects to Rocket, receives a single command
  3. The agent executes the command (read-only filesystem operations)
  4. The agent posts the result back to Rocket and exits

All intelligence stays server-side. The agent is a stateless executor that reads files and returns structured data.

Usage

This package is designed to be run via npx in a GitHub Actions workflow. You don't install it directly.

Add .github/workflows/rocket.yml to your repository:

name: Rocket Agent
on:
  workflow_dispatch:
    inputs:
      session_id:
        description: 'Rocket session ID'
        required: true
        type: string
      rocket_url:
        description: 'Rocket server URL'
        required: true
        type: string

jobs:
  agent:
    runs-on: ubuntu-latest
    timeout-minutes: 15
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with:
          node-version: '22'
      - name: Run Rocket Agent
        run: npx @evernaut/rocket-gha-agent@latest
        env:
          ROCKET_SESSION_ID: ${{ inputs.session_id }}
          ROCKET_URL: ${{ inputs.rocket_url }}

Rocket triggers this workflow automatically when you start a knowledge build.

Commands

The agent supports these commands (assigned by the Rocket server):

| Command | Description | | ------------------------ | ------------------------------------------------------------------- | | analyze-file-structure | Directory tree, file counts by extension, naming patterns | | analyze-conventions | Import style, semicolons, quotes, indentation, tooling detection | | analyze-framework | Framework, UI library, state management, router, build tool | | analyze-configs | Read and summarize config files (tsconfig, eslint, prettier, etc.) | | analyze-routes | Extract route definitions (Vue Router, React Router, Express, etc.) | | analyze-components | Extract component tree with props/events/slots | | discover-and-read-docs | Find and read documentation files (README, ADRs, API specs, etc.) | | bash | Execute a bash command (read-only), upload stdout/stderr to R2 |

Security

  • Read-only: only reads files from the checked-out repository (bash commands should not modify files)
  • No secrets: does not access GITHUB_TOKEN or any repository secrets
  • Single endpoint: communicates only with the Rocket server that dispatched it
  • Session-scoped: authenticates via a one-time session UUID
  • No code execution: commands are a fixed allowlist, arguments are data not code
  • CF Access bypass: non-production environments behind Cloudflare Access can pass CF_ACCESS_CLIENT_ID and CF_ACCESS_CLIENT_SECRET env vars via the workflow template's optional inputs. These are forwarded as service token headers so GHA runners can reach the Rocket server through Zero Trust

License

Proprietary. Copyright Evernaut.