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

hackathon-skills

v0.1.0

Published

Install portable hackathon Agent Skills for Claude, Codex, Antigravity, Cursor, Kiro, GitHub Copilot, and compatible agents.

Downloads

24

Readme

Hackathon Grand Prize Agent Skill

A production-oriented, cross-platform Agent Skill that helps coding agents choose, build, validate, demo, pitch, and submit hackathon projects with the strongest realistic chance of winning.

The skill optimizes for one memorable, working core workflow—not feature count. It combines hackathon research, idea scoring, differentiation, architecture, sponsor strategy, execution planning, engineering gates, security review, demo recovery, judge red-teaming, and submission readiness.

Canonical package

The single source of truth is hackathon-grand-prize/:

  • SKILL.md — activation, routing, workflow, safety, and completion gates
  • references/ — detailed frameworks loaded only when needed
  • assets/ — fillable scorecard, demo, pitch, and submission artifacts
  • scripts/ — dependency-free validation and scoring helpers

Use it

Ask naturally, for example:

Analyze this hackathon's official rules and recommend three differentiated ideas.
Review our current project like a hostile judge and fix the highest-impact gaps.
Create a deterministic three-minute demo with fallback and recovery paths.
Prepare and validate our final README, pitch, and submission checklist.

Or invoke one of the documented modes, including /hackathon-analyze, /hackathon-ideas, /hackathon-build, /hackathon-review, /hackathon-demo, /hackathon-pitch, and /hackathon-submit.

Install with npm / npx

The repository is packaged as the zero-dependency hackathon-skills CLI. List the catalog and install one skill into an agent's native project directory:

npx hackathon-skills list
npx hackathon-skills add hackathon-grand-prize --agent kiro

Other examples:

npx hackathon-skills add hackathon-grand-prize --agent claude --scope user
npx hackathon-skills add hackathon-grand-prize --agent cursor --dry-run
npx hackathon-skills agents

Supported agent values are agents, claude, codex, antigravity, cursor, kiro, and copilot. Project scope is the default. Use --target <skills-directory> for an explicitly verified custom location. Existing installations are refused by default; --force preserves the previous directory as a timestamped backup before installing. Use --json for automation.

Running with npx does not add a dependency to the target project. Until the first registry release, the same CLI can be exercised from a local package tarball produced by npm pack.

Manual install

Install the entire hackathon-grand-prize/ directory into one skill directory supported by your client. Do not copy only SKILL.md; the skill depends on its bundled references, assets, and scripts.

| Client | Recommended project destination | |---|---| | Claude Code | .claude/skills/hackathon-grand-prize/ | | OpenAI Codex | .agents/skills/hackathon-grand-prize/ | | Google Antigravity CLI | .agents/skills/hackathon-grand-prize/ | | Cursor | .cursor/skills/hackathon-grand-prize/ or .agents/skills/hackathon-grand-prize/ | | Kiro | .kiro/skills/hackathon-grand-prize/ | | VS Code / GitHub Copilot | .github/skills/hackathon-grand-prize/ or .agents/skills/hackathon-grand-prize/ |

Choose one destination per client/workspace to avoid duplicate skill-name discovery. This repository also contains lightweight development adapters in .agents, .claude, .github, .cursor, and .kiro; they reference the canonical package and are not standalone distributions.

See the package compatibility and installation guide for exact commands and client notes.

Validate

Python 3.9 or newer is required only for the optional helper scripts; no third-party packages are used.

python hackathon-grand-prize/scripts/validate-skill.py
python -m compileall -q hackathon-grand-prize/scripts

The scoring, health, and submission commands are documented in hackathon-grand-prize/README.md. CLI exit codes are consistent: 0 passes, 1 reports a failed gate, and 2 reports invalid input or usage.

Design principles

  • One canonical, self-contained skill package
  • Trigger-rich metadata and explicit mode routing
  • Progressive disclosure through focused references
  • Official-source research with dated citations
  • Facts, assumptions, proof strength, and presentation medium tracked separately
  • Human approval for destructive, production, financial, or external actions
  • Deterministic validation, demo fallbacks, and evidence-backed readiness gates

Publishing

This package is released under the MIT License. Before publishing, authenticate the npm account that owns the package name and run:

npm whoami
npm pack --dry-run
npm publish --access public

The unscoped name hackathon-skills returned as unregistered on npm on 2026-08-17, but availability is not reserved until publication. Enable npm account two-factor authentication and trusted publishing/provenance where your release workflow supports it.

Standards and client documentation

This package follows the open Agent Skills specification. Client paths and behavior are based on current official documentation for GitHub Copilot, Claude Code, Cursor, Kiro, and Google Antigravity CLI. Packaging follows the official npm guidance for package binaries and npx and public package publishing.

Content derived from those sources is rephrased for compliance with licensing restrictions.