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

gsd-kit

v1.0.0

Published

Get Shit Done - A spec-driven development system for Google Antigravity

Readme

GSD Kit - Get Shit Done for Antigravity

A spec-driven, context-engineered development methodology for Google Antigravity AI.

Quick Install (Copy & Paste)

Paste this into your Antigravity agent:

Clone https://github.com/nonameeee7/get-shit-done-for-antigravity to ~/.agent/

Or install via npm:

npx gsd-kit --global

Then run in Antigravity:

/help

Installation

Option 1: npm (Recommended)

npx gsd-kit --global

Option 2: Clone Manually

# Clone the repo
git clone https://github.com/nonameeee7/get-shit-done-for-antigravity.git ~/.agent/gsd

# Or copy to your project
cp -r get-shit-done-for-antigravity/.agent/ /your/project/

Option 3: Download & Extract

  1. Download: https://github.com/nonameeee7/get-shit-done-for-antigravity/archive/main.zip
  2. Extract to your .agent/ folder

Usage

After installation, run in Antigravity:

/new-project              # Initialize new project
/discuss-phase 1         # Discuss phase requirements
/plan-phase 1            # Create execution plans
/execute-phase 1         # Execute all plans
/verify-work 1           # Verify the work

All Commands

| Command | Description | |---------|-------------| | /new-project [--auto] | Initialize new project | | /discuss-phase [N] | Discuss phase requirements | | /plan-phase [N] | Create execution plans | | /execute-phase <N> | Execute phase plans | | /verify-work [N] | Verify phase completion | | /debug [desc] | Systematic debugging | | /quick | Ad-hoc task mode | | /new-milestone [name] | Start new version | | /complete-milestone | Archive milestone | | /audit-milestone | Review milestone | | /add-phase | Add phase to roadmap | | /remove-phase [N] | Remove phase | | /progress | Show current position | | /pause-work | Save session | | /resume-work | Restore session | | /settings | Configure settings | | /set-profile <profile> | Set model profile | | /add-todo [desc] | Add todo | | /check-todos | List todos | | /map-codebase | Analyze codebase | | /help | Show all commands |

Project Structure

When you initialize a project:

.planning/
├── PROJECT.md           # Project vision
├── REQUIREMENTS.md       # Scoped requirements
├── ROADMAP.md            # Phase breakdown
├── STATE.md              # Session state
├── config.json           # Settings
└── phases/               # Phase directories

Task Format

Tasks use YAML format:

tasks:
  - name: Create login endpoint
    files: src/app/api/auth/login/route.ts
    action: |
      Use jose for JWT (not jsonwebtoken).
      Validate credentials against users table.
      Return httpOnly cookie on success.
    verify: curl -X POST localhost:3000/api/auth/login returns 200
    done: Valid credentials return cookie, invalid return 401

Requirements

  • Node.js 16+
  • Google Antigravity
  • Git

Based On

glittercowboy/get-shit-done

License

MIT