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

required-reading

v2.0.1

Published

Full-lifecycle engineering standards enforcement for Claude Code — covers 10 domains from code quality to architecture, testing, security, DevOps, data, delivery, product, UX, and leadership. Includes checklists, multi-agent team mode, and domain speciali

Readme

required-reading

Claude knows every engineering principle. This plugin makes it enforce them.

A Claude Code plugin that transforms Claude from a permissive code generator into a full-lifecycle engineering standards enforcer — covering 10 domains, with checklists that ensure nothing gets skipped, and a multi-agent team mode that spins up domain specialists for thorough reviews.

What It Does

Claude defaults to matching whatever style the codebase uses, staying quiet about violations, and being "helpful" by writing code that works but accumulates technical debt.

required-reading changes that. Once installed, Claude will:

  • Enforce standards across 10 domains — not just code quality, but architecture, testing, security, DevOps, data, delivery, product, UX, and leadership
  • Run pre-delivery checklists — triggered automatically by work type (writing code, reviewing, designing, deploying, etc.)
  • Flag anti-patterns on sight — God classes, anemic domain models, N+1 queries, hardcoded secrets, flaky tests, and dozens more
  • Launch specialist subagents — Team Mode spins up parallel domain experts for comprehensive multi-domain reviews
  • Be pragmatic — scope-appropriate enforcement, prototype-aware, performance-conscious, legacy-friendly

What It Covers

| Domain | Key Standards | |--------|--------------| | Software Engineering | Naming, function design, CQS, error handling, refactoring, legacy code strategy | | Architecture & Design | SOLID, deep modules, dependency rule, bounded contexts, DDD, design patterns | | QA & Testing | TDD, test pyramid, test design, test doubles, boundary analysis, no flaky tests | | Security | Input validation, output encoding, auth/authz, secrets management, STRIDE threat modeling | | DevOps & Reliability | CI/CD, IaC, deployment strategies, observability, SLOs, stability patterns | | Data Engineering | Data modeling, indexing, query optimization, pipelines, schema migrations, data quality | | Delivery & Process | Small batches, WIP limits, estimation, Definition of Done, tech debt visibility | | Product Management | Outcomes over outputs, validated learning, continuous discovery, story mapping | | UX Engineering | Usability, WCAG 2.1 AA, Core Web Vitals, atomic design, design tokens | | Technical Leadership | ADRs, psychological safety, intent-based leadership, capacity allocation |

Installation

Quick Install

npx required-reading

Installs the core skill + all 10 domain specialists to ~/.claude/skills/. Works on macOS, Linux, and Windows.

Claude Code Plugin

/plugin marketplace add Drmsay/Required-Reading
/plugin install required-reading@required-reading

Per-Project

Copy the contents of claude-md-snippet.md into your project's CLAUDE.md for a condensed version scoped to a single project.

Checklists

Checklists trigger automatically based on the type of work:

| Work Type | Triggered By | |-----------|-------------| | WRITE_CODE | Writing new functions, classes, modules | | MODIFY_CODE | Fixing, changing, refactoring existing code | | REVIEW_CODE | Reviewing PRs, diffs, or code | | DESIGN_SYSTEM | Designing architecture, APIs, databases | | WRITE_TESTS | Writing or adding tests | | DEPLOY_RELEASE | Deploying, releasing, CI/CD work | | DATA_WORK | Schema, migrations, queries, pipelines | | PLAN_FEATURE | Planning, scoping, estimating | | DESIGN_UI | UI/UX design and component work | | INCIDENT_RESPONSE | Outages, incidents, production issues |

Example checklist output:

### Pre-Delivery Checklist: WRITE_CODE

- [x] ENGINEERING: Names reveal intent, domain language used
- [x] ENGINEERING: Functions do one thing, ≤3 params
- [x] ARCHITECTURE: Dependencies point inward
- [x] TESTING: Tests written for new behavior
- [ ] SECURITY: **ACTION NEEDED** — User input passed to processOrder()
      without validation. Add input validation before processing.
- [x] DEVOPS: Configuration externalized

**Result: 5/6 passed. 1 action item.**

Team Mode

For comprehensive reviews, Claude launches parallel domain-specialist subagents:

> "Review this PR with the full team"

Claude (as Tech Lead) will:

  1. Identify relevant domains
  2. Launch specialist subagents in parallel (Software Engineer, QA, Security, etc.)
  3. Each specialist analyzes from their domain's perspective
  4. Results synthesized into a unified Team Review Report

Selective team launch matches specialists to the work type:

  • Code PR → Software Engineer + QA + Security
  • System design → Architect + Security + DevOps + Data + Product
  • Feature planning → Product + UX + Delivery + Architect
  • Incident → DevOps + Security + Data + Eng Manager

Before & After

| Prompt | Without | With required-reading | |--------|---------|----------------------| | Write a function | Vague names, too many params | Intent-revealing names, ≤3 params, SRP, CQS, checklist | | Design a system | Reasonable architecture | Quality attributes, threat model, SLOs, data model, ADRs, checklist | | Fix a bug | Fixes the bug | Fixes it + flags violations + runs MODIFY_CODE checklist | | Review code | Generic feedback | 10-domain systematic review with severity ratings | | Write tests | Basic assertions | TDD, pyramid, boundary values, proper test doubles | | Deploy | Manual steps | Zero-downtime strategy, rollback plan, observability check |

Pragmatism

required-reading is opinionated, not dogmatic.

  • Scope-appropriate — won't apply system-level concerns to a utility function
  • Prototype-aware — explicitly labeled throwaway code gets looser enforcement
  • Performance-conscious — acknowledges that hot paths may trade readability for speed
  • Legacy-friendly — won't demand a full rewrite during incremental improvement
  • Noise-free — checklists surface real issues, not bureaucratic checkboxes

To bypass: "Skip enforcement" or "Quick and dirty mode." Claude will comply but note what it would change for production.

Project Structure

required-reading/
├── .claude-plugin/
│   ├── marketplace.json
│   └── plugin.json
├── bin/
│   └── install.js
├── skills/
│   ├── required-reading/
│   │   └── SKILL.md                          (core — 10 domains, checklists, team mode)
│   ├── required-reading-software-engineering/
│   │   └── SKILL.md                          (deep-dive specialist)
│   ├── required-reading-architecture/
│   │   └── SKILL.md
│   ├── required-reading-testing/
│   │   └── SKILL.md
│   ├── required-reading-security/
│   │   └── SKILL.md
│   ├── required-reading-devops/
│   │   └── SKILL.md
│   ├── required-reading-data-engineering/
│   │   └── SKILL.md
│   ├── required-reading-delivery/
│   │   └── SKILL.md
│   ├── required-reading-product/
│   │   └── SKILL.md
│   ├── required-reading-ux/
│   │   └── SKILL.md
│   └── required-reading-leadership/
│       └── SKILL.md
├── claude-md-snippet.md
├── package.json
└── README.md

License

MIT