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

agentic-dev-kit

v1.0.5

Published

Token-Optimized, Modular AI Agent Rules & Tri-Tier Memory Protocol

Readme

Agentic Dev Kit (ADK)

Token-Optimized, Modular AI Agent Rules & Tri-Tier Memory Protocol for Modern Engineering.

🌟 Highlights

  • Token Efficiency First: All rules/skills are kept under 50-150 lines with frontmatter-based lazy loading.
  • Automated Code Quality: Includes strict code conventions, senior code review checklist, and frontend core principles.
  • Dual-Zone Tri-Tier Memory:
    • 🔒 .agents/local/HANDOFF.md: Private, isolated local session handoff (automatically ignored by Git).
    • 🌐 .agents/knowledge/: Shared team architecture index, ADRs (architecture.md), and issue post-mortems (resolved-issues.md).
  • Learning & Mastery Engine: Accelerated tech learning via 80/20 Roadmaps, Labs, Mental Model Mapping, and 3-Question 60s Rapid Blitz Quizzes.
  • CLI Installer: Easily initialize via npx agentic-dev-kit or npx agentic-dev-kit@latest init.

🚀 Quick Start

1. Project Initialization via NPX

Inside any project repository, run:

npx agentic-dev-kit@latest init

2. Learning Mode Activation

To learn any new technology or language:

I want to learn Golang. My current background is TypeScript/React. Activate learning-mastery skill.

📂 Repository Structure

agentic-dev-kit/
├── AGENTS.md                  # Master Agent Entrypoint & Shortcut Helpers
├── bin/cli.js                 # CLI auto-installer script for npx
├── package.json               # NPM package configuration
├── examples/
│   └── prompt-playbook.md     # High-efficiency English prompt patterns & shortcuts
├── rules/                     # Core system rules (< 150 lines each)
│   ├── code-convention.md     # Naming, Guard Clauses, Strict Types, Error Handling
│   ├── code-review.md         # 5-point automated code review checklist
│   ├── frontend-core.md       # Framework-agnostic frontend principles
│   └── memory-management.md   # Memory lifecycle & self-pruning rules
├── skills/                    # Domain skills (Lazy loaded)
│   ├── business-analysis/     # Problem Framing, BRD/SRS, BPMN 2.0 & Traceability
│   ├── learning-mastery/      # Accelerated learning, Mental Mapping & 3-Q 60s Micro-Quiz
│   ├── angular/               # Angular 17+, standalone components, signals, routing & RxJS
│   ├── nodejs/                # Node.js backend, Express/Fastify, Zod, Async Safety
│   ├── nestjs/                # NestJS modular architecture, DI, Swagger, Filters
│   ├── react-next/            # Next.js App Router, RSC & Server Actions
│   ├── vue-nuxt/              # Vue 3 Composition API & Nuxt 3
│   ├── react-native/          # Mobile Expo & Performance
│   ├── rust-wasm/             # Rust & WebAssembly bindings
│   ├── python-fastapi/        # Python 3.11+, FastAPI, Pydantic v2
│   ├── tailwind-styling/      # TailwindCSS, dark mode, design tokens
│   └── testing/               # Vitest, Jest, unit & integration tests
├── templates/
│   └── .agents/               # Dual-Zone Memory template
│       ├── .gitignore         # Ignores local/ automatically
│       ├── local/HANDOFF.md   # Private active session handoff
│       └── knowledge/         # Shared team index, ADRs & resolved issues
└── scripts/
    └── install.sh             # 1-Click bash installer script