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

@adlc/antigravity

v1.4.1

Published

ADLC native integration for Google Antigravity (agy)

Downloads

570

Readme

adlc-antigravity

Embrace the ADLC inside Google Antigravity (agy): a phase-router plus doctrine skills and a PreToolUse rails-guard that freezes ADLC rails. Requires the @adlc/cli gate toolkit (npm i -g @adlc/cli).

Manifest: version and adlcContract

plugin.json is the authoritative manifest. agy plugin install copies the whole plugin directory (including plugin.json) to ~/.gemini/config/plugins/adlc-antigravity/, so consumers can read these fields directly from the installed source — no build step.

  • versionplugin.json's own agy-native manifest version, independent of package.json's npm lockstep release version by design (see test/packaging.test.mjs: "plugin.json version is untouched by this ticket, still agy-native, not lockstep"). The two are never synced, and no test asserts they match.
  • adlcContract — a positive integer that versions the runtime contract between this plugin and its consumers. It exists so a consumer's manifest handshake can read it from the installed plugin.json to detect drift. The antigravity-booster handshake (voodootikigod/antigravity-booster#12) uses it this way; before this field existed, the booster could only substring-match agy plugin list, which proved a plugin was named but never that its schema matched.

When to bump adlcContract

adlcContract versions three interfaces. Any breaking change to any one of them bumps the integer by 1. Additive, backward-compatible changes do NOT bump it.

  1. The tickets.json schema accepted by core-inline.mjs. loadTickets() parses .adlc/tickets.json as { tickets: [...] }, and validateTicket() enforces each ticket's shape. Only id and title are required (both must be strings); scope, rails, edges (each with a string to), and duration (a positive number) are optional but validated when present. Requiring a new field, removing/renaming a required one, tightening validation so previously-valid tickets are rejected, or changing the top-level envelope is breaking.

  2. The hook stdin payload shape. The PreToolUse hook reads agy's { toolCall: { name, args } } from stdin, with file-path args under PascalCase keys (TargetFile, AbsolutePath, …) and workspace roots under workspacePaths. Changing which keys the hook must read to locate the tool name, args, target paths, or workspace roots is breaking.

  3. The hook decision output shape. The hook writes agy's verdict to stdout: { allow_tool: true } to allow, or { allow_tool: false, deny_reason: "..." } to deny. Renaming these keys or changing their types/semantics is breaking.

If you change one of these three interfaces in a backward-incompatible way, bump adlcContract in plugin.json and update this list.

Tests

node --test plugins/adlc-antigravity/test/*.test.mjs