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

ag-unity

v4.0.0

Published

Unity skills for Antigravity AI agent — Install 12 skills (8 Unity + 4 QA) into any project

Readme

Antigravity Unity Skills

13 Unity-specific skills for game development with Google Antigravity. Install skills directly into any Unity project.

📦 Public, read-only repository. Install via npm or clone and run setup.

🌐 Quick Start · What's Inside · Full Skill List

📋 Requirements


⚡ Quick Start

cd /path/to/your/unity-project
npx ag-unity

That's it. 13 skills installed.

git clone https://github.com/zasuozz-oss/antigravity-unity-skills.git ~/AI-Tool/antigravity-unity-skills
cd /path/to/your/unity-project
node ~/AI-Tool/antigravity-unity-skills/bin/cli.mjs

⚠️ Replace /path/to/your/unity-project with your actual Unity project path.

What Happens After Setup

your-project/
└── .agents/
    ├── skills/                # All skills installed flat here
    │   ├── unity-addressables/
    │   ├── unity-csharp-standards/
    │   ├── unity-logic-audit/
    │   ├── unity-qa-parser/
    │   ├── ...
    │   └── .ag-manifest.json  # Tracks group membership
    └── workflows/             # Workflow files
        ├── build-ui-mcp.md
        ├── verify-assets.md
        ├── verify-scripts.md
        └── verify-logics.md

Skills auto-trigger via YAML frontmatter description field — no GEMINI.md configuration needed.


🎯 What Is This?

A collection of 13 Unity-specific skills organized by category, designed to extend Google Antigravity with deep Unity game development knowledge.

Key features:

  • One-command installnpx ag-unity from any project
  • Self-triggering — skills activate via YAML frontmatter, no manual config
  • Project-level install — skills live in your project's .agents/skills/
  • Cross-platform — pure Node.js, no bash/powershell dependency
  • Backup on update — existing skills backed up before overwrite

📚 What's Inside

13 skills across 2 groups:

Unity Skills (9)

| Category | Skills | Description | |----------|--------|-------------| | Architecture | 1 | Async/await, Coroutines, UniTask, lifecycle safety | | UI & UX | 1 | Canvas rebuild, overdraw, raycast, state safety, responsive | | Performance | 1 | Addressables async loading, memory-safe release | | Safety | 1 | DOTween lifecycle, SetLink, kill patterns, leak prevention | | Tools & Standards | 5 | C# conventions, editor scripting, asset/script/logic verification |

QA Skills (4)

| Skill | Description | |-------|-------------| | unity-qa-parser | Parse QA documents | | unity-qa-generator | Generate test cases | | unity-qa-verifier | Verify test results | | unity-qa-scorer | Score test quality |

👉 See INDEX.md for the complete Unity skill list with descriptions.


🔄 Updating Skills

cd /path/to/your/unity-project
npx ag-unity

Re-running the command updates skills. Existing skills are automatically backed up.


📁 Repo Structure

antigravity-unity-skills/
├── package.json             # npm package config
├── bin/
│   └── cli.mjs              # Cross-platform CLI (ESM)
├── global-config/
│   ├── skills/              # Source skills (grouped)
│   │   ├── unity-skills/    # 9 Unity skills
│   │   └── qa-skills/       # 4 QA skills
│   └── workflow/            # Source workflows
│       ├── build-ui-mcp.md
│       ├── verify-assets.md
│       ├── verify-scripts.md
│       └── verify-logics.md
├── docs/                    # Source references
│   ├── SOURCES.md           # Skill → source mapping
│   ├── unity/               # Unity performance docs
│   └── agent-qa/            # QA system design docs
├── tests/
│   └── run-tests.sh         # Automated test suite (48 tests)
└── CHANGELOG.md

🤝 Works With Superpowers

This extension is independent of antigravity-superpowers, but they work great together.


🔗 Links

🙏 Credits

Advisory skills adapted from Besty0728/Unity-Skills (MIT License).

📝 License

MIT


Last Updated: 2026-03-20