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

my-agent-kit-lite

v2.3.0

Published

Lite AI coding agent kit — 7 agents, 21 skills, 7 hooks. Design → code → test → review → PR workflow for dev teams. Derived from my-agent-kit.

Downloads

67

Readme


A focused subset of my-agent-kit that ships only what you need for the design → code → test → review workflow. No multimedia, no MCP scaffolding, no research/marketing skills. Smaller install, fewer skills to remove.

Why Lite

Most coding sessions follow the same shape: design something, implement it, test it, review it. The full kit ships extras (research loops, multimedia, MCP authoring, marketing, mobile, payments, etc.) that solo devs don't always need. Lite drops those and keeps the core.

If you need the extras, switch to the full kit: npx my-agent-kit init . --upgrade --force.

Install

npx my-agent-kit-lite init

Run inside your project directory. Add --all for Copilot + Codex support.

Quick Start

cd your-project && claude
/mk:cook "add user authentication with Google OAuth"

The kit handles the rest: plan → implement → test → review → ready to ship.

What's Inside

| Component | Count | What | |---|---|---| | Agents | 7 | planner, ui-ux-designer, fullstack-developer, tester, code-reviewer, code-simplifier, git-manager | | Skills | ~18 | cook, fix, mk-plan, test, code-review, ship, scout, sequential-thinking, simplify, security-scan, mk-security, design, ui-styling, frontend-design, docs, docs-seeker, strip-identity, _shared | | Hooks | 7 | session-init, subagent-init, session-state, dev-rules-reminder, workflow-artifact-gate, simplify-gate, scout-block | | Rules | 4 | primary-workflow, development-rules, skill-workflow-routing, documentation-management |

Workflow

/mk:plan "feature X"      → planner + ui-ux-designer (design)
/mk:cook "feature X"      → plan → code → test → review (full pipeline)
/mk:fix "bug Y"           → same pipeline for fixes
/mk:test                  → run + verify tests
/mk:code-review           → review with JSON artifacts (workflow gate)
/mk:ship                  → finalize → commit/push

What's missing vs. full

Lite cuts: mk-autoresearch, mk-loop, mk-predict, mk-scenario, mk-debug, mk-help, multimedia (ai-artist, excalidraw, graphify, mermaidjs-v11, remotion, show-off, stitch, threejs, shader, media-processing), domain (shopify, better-auth, payment-integration, mobile-development, tanstack, react-best-practices), infra (backend-development, databases, deploy, devops, agent-browser, chrome-devtools, chrome-profile), MCP (mcp-builder, mcp-management, use-mcp, google-adk-python, gkg), process/meta skills, and 7 agents (brainstormer, debugger, docs-manager, journal-writer, mcp-manager, project-manager, researcher).

Need any of these? Switch to the full kit.

Workflow Artifact Gate

The lite kit includes the workflow artifact gate from full (v2.1.0). It turns mk:cook / mk:fix review into a file-backed contract: 5 JSON artifacts (context-snippets, risk-gate, verification, review-decision, adversarial-validation) must validate before any finalize / commit / ship / push / PR / deploy action.

Opt-in per project via .claude/.mk.json:

{ "hooks": { "workflow-artifact-gate": true } }

Cross-Tool Support

| Tool | Support | |---|---| | Claude Code | Full — CLAUDE.md + .claude/ | | GitHub Copilot | Full — reads .claude/ natively (VS Code 1.108+) | | Codex CLI | Good — AGENTS.md + .agents/skills/ symlink | | Cursor / Windsurf | Basic — reads AGENTS.md |

Switching between lite and full

# Lite → Full
npx my-agent-kit init . --upgrade --force

# Full → Lite
npx my-agent-kit-lite init . --upgrade --force

The --upgrade flag drops files from the other kit's metadata.json deletions[] list so you get a clean swap.

License

MIT