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

gemini-init

v1.0.0

Published

Initialize AI agent context for any project. Provides workflows, skills, and a GEMINI.md brain file for use with Antigravity IDE.

Readme

gemini-init

Bootstrap a production-ready AI agent context into any project in under 60 seconds.

npx gemini-init

What It Does

gemini-init drops a complete AI agent system into your project:

| What gets installed | Purpose | | :--- | :--- | | GEMINI.md | The AI's brain — persistent context, behavior rules, Known Traps | | .agent/workflows/ | 18 standardized procedures (/feature, /debug, /review, etc.) | | .agent/skills/ | 20 specialized AI behaviors (debugging, security, accessibility, etc.) | | .agent/session.md | Persistent work log — AI reads this at the start of every session | | docs/ | Architecture, API, conventions, and feature spec templates | | .env.example | Pre-structured environment variable template | | CHANGELOG.md | Ready for /release workflow | | .github/workflows/ai-check.yml | CI check that validates AI context on every PR |

The AI maintains all documentation automatically. You only provide business intent.


Quick Start

# Standard install (interactive wizard)
npx gemini-init

# Use a pre-filled stack preset
npx gemini-init --preset=nextjs
npx gemini-init --preset=android-kotlin
npx gemini-init --preset=python-fastapi
npx gemini-init --preset=node-express

# Preview what would be installed (no files written)
npx gemini-init --dry-run

# Upgrade .agent/ skills and workflows (never touches GEMINI.md or docs/)
npx gemini-init --upgrade

Project Detection Matrix

gemini-init detects your project state and adjusts accordingly:

| | Single Repo | Monorepo | | :--- | :--- | :--- | | Fresh Project | Drops all files, prints setup checklist, suggests /setup | Drops root files + per-package GEMINI.md stubs | | Ongoing Project | Smart overwrite prompts, suggests /adopt to auto-fill docs | Same + per-package stubs for any new packages |


After Install — Next Steps

Fresh Project:

  1. Fill in the [FILL IN] sections of GEMINI.md (or let the AI do it)
  2. Open Antigravity IDE and type: /setup
  3. Type: /flight-check
  4. Start building: "I want to build <feature name>"

Ongoing Project:

  1. Open Antigravity IDE and type: /adopt
  2. Review GEMINI.md and add any project-specific Known Traps
  3. Type: /flight-check
  4. Continue where you left off

The 18 Workflows

| Category | Commands | | :--- | :--- | | Lifecycle | /setup, /adopt, /flight-check, /onboard | | Features | /spec <name>, /feature <name> | | Quality | /debug <desc>, /review, /review --delta, /test, /audit | | Maintenance | /cleanup, /document <file>, /dependency-update, /migrate | | Release | /release, /hotfix <desc>, /rollback, /deploy <env> |


License

MIT