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

@sotarak/ant-cli

v0.1.2

Published

CLI tool to initialize .agent configuration for various frameworks — powered by Antigravity

Readme

✨ Features

  • 🎯 Framework Auto-Discovery: Automatically detects ReactJS, Next.js, Create React App, NestJS, React Native, and Expo via codebase dependencies.
  • ⚡️ Agent Initialization: Instantly scaffolds an .agent/ directory with pre-configured AI workflows/ and skills/ specially tailored to your tech stack.
  • 🩺 Diagnostic Scans: Use the built-in doctor command to validate your agent's health, verify file structures, and detect out-of-sync configurations.
  • 🚀 One-Click IDE Launch: Open the project seamlessly in the native Antigravity IDE without leaving your terminal.
  • 🔄 Smart Updates: Keeps your .agent setups modern and up-to-date with the latest templates bundled in the CLI using intelligent patching.

📦 Installation

You can run Ant CLI directly using npx (recommended) or install it globally on your machine.

Using npx (Recommended)

This guarantees you are always using the latest agent configurations locally without polluting your global dependencies.

npx @sotarak/ant-cli init

Global Install

If you prefer having the ant executable command available anywhere on your system:

npm install -g @sotarak/ant-cli
# or
pnpm add -g @sotarak/ant-cli

Note: The package name is scoped as @sotarak/ant-cli, but the terminal executable installed is simply ant.


🛠 Usage

Bootstrap your project

Initializes a new .agent directory in your project. It safely checks for existing configurations, detects your framework automatically, and bootstraps the correct workflows and skills.

ant init         # Run in the current directory
ant init ./src   # Specify a target project directory
ant init -f      # Force an overwrite of an existing .agent directory

Check agent health

Validates the diagnostic health of the .agent setup in your project. It checks for the required folder structure (e.g., workflows/, skills/) and verifies if your project templates are outdated compared to the CLI version.

ant doctor

Update agent templates

Upgrades an existing .agent directory to the latest CLI template version. It automatically pulls the stored framework selection and safely patches your templates without breaking your custom modifications.

ant update

Open in Antigravity IDE

Opens the current project repository directly in the Antigravity IDE natively as a detached background process.

ant .            # Shortcut to open the current directory
ant open         # Open current directory explicitly
ant open ./apps  # Open a specific path

🧑‍💻 Contributing & Development

We welcome contributions! If you're looking to modify Ant CLI locally:

  1. Clone the repository & Install dependencies

    git clone [email protected]:sotarak/ant-cli.git
    cd ant-cli
    pnpm install
  2. Run Locally during Development

    pnpm dev init ./example
  3. Check Code Quality We enforce strict linting and formatting. Run these before committing:

    pnpm run format      # Formats code using Prettier
    pnpm run lint        # Verifies code rules using Biome
    pnpm run typecheck   # Validates TypeScript compilation
    pnpm run test        # Runs unit test suites via Vitest
  4. Build Production Distribution

    pnpm run build

📄 License

This project is licensed under the MIT License.