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

@agi-ventures-canada/hackathon-cli

v0.2.0

Published

CLI for the Oatmeal hackathon platform

Readme

@agi-ventures-canada/hackathon-cli

Run hackathons from your terminal. This is the command-line companion to Oatmeal — create events, manage teams, configure judging, pick winners, send announcements, and more.

Install

npm install -g @agi-ventures-canada/hackathon-cli
# or run once without installing
npx @agi-ventures-canada/hackathon-cli --help

Requires Node.js 20.9+.

Quick start

hackathon login
# Opens your browser, signs you in, creates an API key, saves it locally.

hackathon events list
hackathon events create           # interactive prompts
hackathon prizes create <hackathon-id> --name "Best AI App"
hackathon announcements create <hackathon-id> --title "Kickoff in 1 hour" --body "See you soon"

The API key is stored at ~/.hackathon/config.json — log in once, use it from anywhere.

Pointing at a different environment

hackathon login --base-url https://staging.getoatmeal.com
hackathon login --base-url http://localhost:3000
hackathon login                              # default: production (getoatmeal.com)

The base URL is saved with the key, so commands work against whatever environment you logged in to.

Commands

Run hackathon --help for the full list. Highlights:

| Group | What it does | |-------|--------------| | events (alias: hackathons) | Create, list, update, and delete events. Import from Luma with --from-url. | | judging | Manage judges, criteria, levels, assignments, and results | | tracks | Prize tracks, round buckets, advancement rules | | prizes | Create and assign prizes | | perks | Sponsor credits, API keys, coupons — create, update, release | | sponsors | Add sponsors, update tiers, reorder, remove | | teams | List teams, create, update members, assign rooms | | announcements | Publish immediately or schedule for later | | challenges | Create sponsor or theme-based prompts | | schedule | Event-scoped schedule items (kickoff, workshops, demos) | | results | Calculate winners once judging closes | | webhooks | Subscribe to event, team, and submission updates | | jobs | Run, inspect, and cancel async jobs | | schedules | Org-level cron jobs (different from event schedule) | | browse | Discover public hackathons |

Most commands take a hackathon ID as the first positional arg:

hackathon prizes list <hackathon-id>
hackathon teams list <hackathon-id>
hackathon announcements publish <hackathon-id> <announcement-id>

Add --json to any command for machine-readable output.

AI agents

Prefer driving the CLI through Claude Code, Cursor, or another AI agent? Install our public skills:

npx skills add AGI-Ventures-Canada/oatmeal

That gives your agent two relevant skills: hackathon-cli (this package) and hackathon-api (direct HTTP calls).

Links

  • Platform: https://getoatmeal.com
  • Docs: https://getoatmeal.com/docs
  • Source: https://github.com/AGI-Ventures-Canada/oatmeal (CLI lives in packages/cli/)
  • Skills: https://github.com/AGI-Ventures-Canada/oatmeal/tree/main/skills
  • Issues: https://github.com/AGI-Ventures-Canada/oatmeal/issues

License

MIT