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

opencode-skills-antigravity

v1.0.71

Published

OpenCode CLI plugin that automatically downloads and keeps Antigravity Awesome Skills up to date.

Readme

npm version npm downloads license

OpenCode Skills Antigravity

An OpenCode CLI plugin that bundles and auto-syncs the Antigravity Awesome Skills collection — delivered instantly, with zero network latency at startup.


Overview

OpenCode Skills Antigravity bridges the OpenCode CLI with the Antigravity Awesome Skills repository. Instead of fetching skills on every startup, this plugin ships with a pre-bundled snapshot that gets copied directly to your local machine the moment OpenCode launches.

The result: skills are always fresh (synced hourly via GitHub Actions), always available (even offline), and always instant.


How It Works

The plugin operates in two phases:

1. Automated upstream sync (CI)

A GitHub Actions workflow runs every hour, checking the Antigravity Awesome Skills repository for changes. When new or updated skills are detected, the workflow:

  • Re-bundles the skill files into bundled-skills/
  • Bumps the package version (patch)
  • Creates a tagged GitHub Release
  • Publishes the new version to npm

2. Local deployment (startup)

When OpenCode starts, the plugin runs and copies the pre-bundled skills from the npm package to:

~/.config/opencode/skills/

No network calls, no latency, no failures. If the copy somehow fails, a silent fallback attempts to fetch via npx antigravity-awesome-skills in the background.


Installation

Add the plugin to your global OpenCode configuration file at ~/.config/opencode/opencode.json:

{
  "plugin": [
    "opencode-skills-antigravity"
  ]
}

That's it. OpenCode will automatically download the npm package on next startup via Bun — no manual npm install needed.


Usage

Once installed, all bundled skills are available in three ways:

Explicit invocation via CLI:

opencode run /brainstorming help me plan a new feature
opencode run /refactor clean up this function

Slash commands in the OpenCode chat:

/brainstorming
/refactor
/document

Natural language — OpenCode picks the right skill automatically:

"Help me brainstorm ideas for a REST API design"
"Refactor this function to be more readable"

Project Structure

opencode-skills-antigravity/
├── src/
│   └── index.ts          # Plugin entry point — copies bundled skills on startup
├── bundled-skills/        # Pre-bundled skills snapshot (auto-updated by CI)
├── dist/                  # Compiled TypeScript output
├── .github/
│   └── workflows/
│       ├── sync-skills.yml   # Hourly skill sync + auto-publish
│       ├── release.yml       # Manual version bump + GitHub Release
│       ├── publish.yml       # npm publish on new release
│       └── merge-branch.yml  # Keeps develop in sync with main
├── package.json
└── tsconfig.json

Development

Requirements: Node.js ≥ 20, TypeScript ≥ 5

# Install dependencies
npm install

# Build
npm run build

# Output is in dist/

The plugin is written in TypeScript and compiled to ESNext with full type declarations. It targets ES2022 and uses ESM module resolution.


Contributing

Issues and pull requests are welcome at github.com/FrancoStino/opencode-skills-antigravity.

If you'd like to contribute new skills to the upstream collection, head over to antigravity-awesome-skills — they'll be automatically picked up and bundled here within the hour.


License

MIT © Davide Ladisa