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

@leejungkiin/awkit

v1.1.0

Published

AWKit v1.0.9 — Antigravity Workflow Kit. Unified AI agent orchestration system.

Readme

AWKit — Antigravity Workflow Kit v1.0

v1.0.0 · Single Source of Truth · Beads-First · Ambient Memory

AWKit là framework điều phối AI agent chuyên nghiệp. Đây là nơi duy nhất chứa toàn bộ workflows, skills, GEMINI.md và cấu hình — không còn phân tán giữa nhiều repo.


🚀 Quick Start

Cài đặt nhanh qua NPM (Khuyên dùng)

npm install -g @leejungkiin/awkit
awkit install
awkit doctor

📦 Commands

| Command | Description | |---------|-------------| | awkit install | Deploy AWKit vào ~/.gemini/antigravity/ | | awkit update | Update lên version mới nhất | | awkit sync | Full sync: harvest + install (one shot) | | awkit status | So sánh repo vs installed (diff view) | | awkit harvest | Pull từ ~/.gemini/antigravity/ về repo | | awkit doctor | Kiểm tra sức khoẻ installation | | awkit enable-pack <name> | Kích hoạt skill pack | | awkit disable-pack <name> | Vô hiệu skill pack | | awkit list-packs | Xem danh sách skill packs | | awkit version | Show version |

Typical Workflow

# 1. Check what's out of sync
awkit status

# 2a. You edited in ~/.gemini/ → pull back to repo
awkit harvest

# 2b. You edited in repo → deploy to ~/.gemini/
awkit install

# 2c. Both directions (full round-trip)
awkit sync

# 3. Commit the snapshot
git add -A && git commit -m "chore: sync AWKit v7.0"
main-awf/ (AWKit v7.0 — Source of Truth)
├── bin/
│   ├── awk.js                  ← CLI entry point
│   └── awf.js                  ← (legacy, kept for reference)
├── core/
│   ├── GEMINI.md               ← Master AI config (v6.4+)
│   ├── AGENTS.md               ← Agent rules
│   └── orchestrator.md         ← Orchestrator skill
├── workflows/                  ← 75+ workflows, categorized
│   ├── lifecycle/              plan, code, debug, deploy...
│   ├── context/                recap, next, save-brain...
│   ├── quality/                audit, performance, ux...
│   ├── ui/                     visualize, design-to-ui...
│   ├── ads/                    ads-audit, optimize...
│   ├── mobile/                 maestro, turbo-build...
│   ├── expert/                 planExpert, codeExpert...
│   ├── git/                    commit, hotfix, rollback...
│   ├── roles/                  tech-lead, pm, qa...
│   ├── meta/                   customize, file-protection...
│   └── _uncategorized/         misc files
├── skills/                     ← 10+ skills (auto-activate)
│   ├── orchestrator/
│   ├── memory-sync/
│   ├── brainstorm-agent/
│   ├── beads-manager/
│   ├── awf-session-restore/
│   └── ...
├── skill-packs/                ← Optional add-ons
│   └── neural-memory/          (Phase 3 - coming soon)
├── schemas/                    ← JSON schemas
├── templates/                  ← Project templates
├── scripts/
│   └── harvest.js              ← Migration: pull from ~/.gemini/
├── VERSION                     → 1.0.0
└── package.json                (@leejungkiin/awkit)

🌾 Harvest (Migration)

Nếu bạn chỉnh sửa trực tiếp trong ~/.gemini/antigravity/ và muốn sync về repo:

# Xem trước (không thay đổi file)
node scripts/harvest.js --dry-run

# Thực thi harvest
node scripts/harvest.js

🔄 Workflow

main-awf/ (edit here)
    │
    ▼  awkit install
~/.gemini/antigravity/ (runtime)
    │
    ▼  AI reads from here
Gemini / Claude / Any AI

📦 Skill Packs

awkit list-packs
awkit enable-pack neural-memory
awkit enable-pack ios-dev

🏗️ Versioning

| Version | Name | Notes | |---------|------|-------| | 4.x | AWF v4 | Shell-based, awf- prefix skills | | 5.x | Antigravity v5 | Node.js, Beads integration | | 6.x | AWF v6 | main-awf, multiple sources | | 1.0 | AWKit v1.0 | Single source of truth, this repo |


AWKit v1.0 — Antigravity Workflow Kit · Created by Kien AI