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

@lizmotia/ag-kit

v0.1.1

Published

Antigravity-inspired skills, agents, and workflows packaged for OpenAI Codex.

Readme

AG Kit

Portable Codex skills, specialist agents, workflows, and helper scripts packaged as one installable bundle.

@lizmotia/ag-kit installs a project-local .agents directory so OpenAI Codex can discover the same operating system across projects.

Install

Run once inside the target project:

npx @lizmotia/ag-kit init

Or install globally:

npm install -g @lizmotia/ag-kit
ag-kit init

Update an existing installation:

npx @lizmotia/ag-kit update

If you explicitly want to overwrite .agents with init, this is equivalent:

npx @lizmotia/ag-kit init --force

Local development path:

node ./bin/ag-codex.js init --path ../my-project

Compatibility alias:

ag-codex init

What It Installs

The CLI copies a portable .agents tree into the target project root.

That bundle currently includes:

| Component | Count | Purpose | |---------|------:|---------| | Agents | 20 | Specialist execution roles such as frontend, backend, security, QA, and planning | | Skills | 96 top-level / 106 total SKILL files | Codex-readable guidance, patterns, checklists, and domain playbooks | | Workflows | 11 | Entry workflows like brainstorm, create, debug, plan, and test | | Scripts | 17 | Shared helpers for verification, preview, stale checks, health checks, load order, preview, checklist, and session tasks |

Core Idea

AG Kit is designed for Codex skills, not custom slash-command runtimes.

  • Use $brainstorm, $create, $debug, $plan, $test, and related skills inside Codex.
  • Keep .agents/ at the project root so Codex can discover it.
  • Use one portable package instead of manually copying prompts and helper files between repositories.

Typical Flow

  1. Install .agents into a project.
  2. Open that project in VS Code.
  3. Switch to the CODEX tab.
  4. Reload the window or run Force reload skills.
  5. Invoke skills with $.

Examples:

$brainstorm auth system for a SaaS dashboard
$create landing page for a skincare brand
$debug why login returns 500
$plan migrate this app from REST to tRPC
$clean-code review this module before shipping
$ui-ux-pro-max redesign the homepage

If someone clones this repository directly, .agents/ is already included. They only need to:

  1. Open the repo root in VS Code.
  2. Switch to the CODEX tab.
  3. Reload the window or run Force reload skills.
  4. Start invoking skills with $.

CLI

| Command | Description | |---------|-------------| | ag-kit init | Install .agents into the current directory | | ag-kit init --path ./my-project | Install into a specific directory | | ag-kit update | Reinstall and overwrite the existing .agents folder | | ag-kit init --force | Overwrite an existing .agents installation during init | | ag-kit status | Show whether .agents is installed and summarize its contents | | ag-kit help | Show usage information |

Package Scope

The published npm package is:

@lizmotia/ag-kit

The repository also keeps ag-codex as a CLI alias for compatibility, but ag-kit is the primary command going forward.

Updating Existing Projects

Use update when .agents is already installed and you want the latest package contents:

npx @lizmotia/ag-kit update

If you just published a new package version and want to avoid stale npx cache, prefer:

npx @lizmotia/ag-kit@latest update

Global install equivalent:

ag-kit update

init --force is supported, but update is the clearer command for refreshes because it makes the overwrite behavior explicit.

Repository Layout

.
|-- .agents/
|   |-- agents/
|   |-- skills/
|   |-- workflows/
|   |-- scripts/
|   `-- .shared/
|-- bin/ag-codex.js
|-- AGENT_FLOW.md
|-- PUBLISHING.md
|-- SKILLS_AND_WORKFLOWS.md
|-- SKILLS_AND_WORKFLOWS_TH.md
|-- README.md
`-- README(th).md

Published Scope

The npm package is intentionally limited to the portable runtime:

  • .agents/
  • bin/
  • AGENT_FLOW.md
  • PUBLISHING.md
  • UPDATELIST.md
  • SKILLS_AND_WORKFLOWS.md
  • SKILLS_AND_WORKFLOWS_TH.md
  • README.md
  • README(th).md
  • LICENSE
  • package.json

Local-only compatibility files are excluded from the published package.

GitHub Push Notes

These files should ship:

  • .agents/
  • bin/
  • README.md
  • README(th).md
  • UPDATELIST.md
  • SKILLS_AND_WORKFLOWS.md
  • SKILLS_AND_WORKFLOWS_TH.md
  • AGENT_FLOW.md
  • PUBLISHING.md
  • LICENSE
  • package.json
  • .npmignore

These should stay local-only and are ignored:

  • .agent/
  • plugins/
  • .agents/plugins/
  • h4cker/
  • awesome-design-md/
  • local audit and scratch reports

Docs

License

MIT