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

bigbang-skills

v1.1.0

Published

Pre-project rules initializer for AI coding agents (opencode, Gemini, Cline, Cursor, Copilot). Generates AGENTS.md with configurable presets, language-aware rules, and 23 maintainability standards.

Readme

BigBang — Pre-Project Rules Initializer

npm version License: MIT

Agent-agnostic skill that generates AGENTS.md with 23 maintainability rules before starting any project. Works with opencode, Gemini, Cline, Cursor, Copilot, and any AI agent that reads AGENTS.md.

Features

  • Configurable presets — strict (enterprise), prototype (fast/loose), library (public package), or fully custom
  • Language-aware — Python gets PEP 8 + mypy, Go gets gofmt, Rust gets clippy, JS/TS gets ESLint + strict TypeScript
  • 23 rules — SOLID, YAGNI, design patterns, naming, testing, security, error handling, performance, deps, git, API design, database, logging, Docker, type safety, code review, and more
  • Version-stamped — generated AGENTS.md includes a BigBang version and date
  • Before/after examples — concrete snippets per rule
  • Agent-agnostic — generates AGENTS.md + agent-specific files (.cursorrules, .clinerules, etc.)

Rules

| # | Rule | strict | prototype | library | |---|------|--------|-----------|---------| | 1–9 | Architecture + Style | ✓ | ✓ | ✓ | | 10 | Conventional Commits | ✓ | ✗ | ✓ | | 11 | Testing (≥90% cov) | ✓ | ✗ | ✓ | | 12–16 | Security + Process | ✓ | ✓ | ✓ | | 17 | Changelog + SemVer | ✓ | ✗ | ✓ | | 18 | API Design | ✓ | ✗ | ✓ | | 19 | Database | ✓ | ✗ | ✗ | | 20 | Logging | ✓ | ✗ | ✗ | | 21 | Docker | ✓ | ✗ | ✗ | | 22 | Type Safety | ✓ | ✓ | ✓ | | 23 | Code Review | ✓ | ✗ | ✓ |

Also generates: linter config, CHANGELOG.md, bigbang.config.json, Dockerfile, CI workflow, .env.example, and more.

Installation

npm install bigbang-skills

Or clone the repo and copy to your skills directory:

git clone https://github.com/luckyman147/BigBang.git
cp -r BigBang ~/.claude/skills/bigbang

Usage

When you start a new project, simply say:

  • "create a project"
  • "start a new project"
  • "setup rules"
  • "initialize rules"

Then choose a preset (strict/prototype/library) or customize each rule. The agent generates AGENTS.md + config files matching your stack.

Presets

| Preset | File limit | Coverage | Docker/DB rules | Best for | |--------|-----------|----------|-----------------|----------| | strict | 150 lines | 90% | ✓ | Enterprise, production services | | prototype | 300 lines | off | ✗ | MVPs, hackathons, experiments | | library | 200 lines | 90% | ✗ | npm/PyPI/crates.io packages |

Customizing

Copy configs/bigbang.config.json to your project root and toggle any rule:

{
  "rules": {
    "file-size-limit": {
      "enabled": true,
      "maxLines": 200
    }
  }
}

Topics

ai-agents agent-skills coding-standards agents-md developer-tools project-initializer solid-principles yagni clean-code opencode cursor cline copilot

Author

luckyman147GitHub