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

lumi-kit

v2.0.0

Published

AI-driven development toolkit with modular BMAD architecture (Claude, Cursor, Antigravity, Codex, Gemini CLI)

Readme

🌟 Lumi-Kit v2

AI-driven development toolkit with modular architecture following BMAD patterns.

npm version License: MIT

✨ What's New in v2

  • 🏗️ Modular Architecture - Separate modules for docs, git, review
  • 🤖 YAML Agents - Rich agent definitions with personas and menus
  • 🔄 Workflow System - Multi-step guided workflows with checkpoints
  • 📦 Module Manifest - Install only what you need

🚀 Quick Start

# Install with npx
npx lumi-kit@latest init .

# Or install globally
npm install -g lumi-kit
lumi-kit init .

📦 Modules

| Module | Description | Agents | |--------|-------------|--------| | core | Master orchestrator | lumi-master | | docs | 11-phase documentation generator | docs-architect | | git | Semantic commits & PR helper | git-expert | | review | Code review specialist | review-specialist |

🔌 Supported Platforms

| Platform | Directory | Format | |----------|-----------|--------| | Claude Code | .claude/commands/ | Markdown | | Cursor | .cursor/rules/ | Markdown (.mdc) | | Antigravity | .agent/skills/ | Markdown | | Codex | .codex/commands/ | Markdown | | Gemini CLI | .gemini/commands/ | TOML |

📂 Project Structure

After lumi-kit init, your project will have:

your-project/
├── .claude/commands/           # Platform agents
│   ├── lumi-master.md
│   ├── lumi-docs-architect.md
│   └── ...
└── _lumi/                      # Lumi core
    ├── config.yaml             # Configuration
    ├── agents/                 # Agent YAML definitions
    ├── workflows/              # Workflow definitions
    └── templates/              # Doc templates

🤖 Agents

Lumi Master (core)

Master orchestrator that coordinates all modules.

agent:
  metadata:
    name: "Lumi Master"
    icon: "🌟"
  persona:
    role: "Master Orchestrator"
  menu:
    - trigger: "docs" → Generate documentation
    - trigger: "git" → Git workflow
    - trigger: "review" → Code review

Docs Architect (docs)

11-phase documentation generator with checkpoints.

Phases:

  1. Structure Scan
  2. Code Analysis
  3. Architecture Diagrams
  4. Component Documentation
  5. Flow Documentation
  6. API Documentation
  7. Security Audit
  8. Performance Audit
  9. Quality Review
  10. Guides & Summary
  11. Web Viewer

Git Expert (git)

Semantic commits following Conventional Commits.

Commands:

  • commit - Generate semantic commit message
  • pr - Generate PR description
  • changelog - Generate changelog entries

Review Specialist (review)

Comprehensive code review with severity levels.

Review Areas:

  • 🔒 Security vulnerabilities
  • ⚡ Performance issues
  • ✨ Code quality
  • 🧪 Test coverage

🔄 Workflows

Workflows are multi-step guided processes:

workflow:
  metadata:
    name: "Analyze Codebase"
  phases:
    - id: "P1"
      name: "Structure Scan"
      goal: "Scan directories, list files"
    - id: "P2"
      name: "Code Analysis"
      goal: "Extract components"
  instructions: "instructions.md"

⚙️ Configuration

_lumi/config.yaml:

user_name: "Developer"
communication_language: "English"
output_folder: "docs"
checkpoint_enabled: true

modules:
  - core
  - docs
  - git
  - review

platform: "claude"

🛠️ Commands

lumi-kit init [path]      # Initialize in project
lumi-kit init . --all     # All platforms
lumi-kit check            # Check requirements

📋 BMAD Architecture

Lumi-Kit v2 follows the BMAD-METHOD patterns:

  • Modular design - Core + optional modules
  • YAML agents - Rich definitions with personas
  • Workflows - Step-by-step guided processes
  • Checkpoint system - Resume interrupted work

📄 License

MIT © Nghi-NV

🔗 Links