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 🙏

© 2025 – Pkg Stats / Ryan Hefner

check-my-toolkit

v0.2.0

Published

Unified project health checks - code, process, and stack

Downloads

330

Readme

check-my-toolkit

Unified project health checks for code quality, process compliance, and stack validation.

Installation

npm install -g check-my-toolkit

Or use directly with npx:

npx check-my-toolkit code check

Quick Start

  1. Create a check.toml configuration file in your project root:
[code.linting]
eslint = true
ruff = true

[code.types]
tsc = true
  1. Run checks:
cm code check

Commands

| Command | Description | |---------|-------------| | cm code check | Run linting (ESLint, Ruff) and type checking (tsc) | | cm code audit | Verify linting and type checking configs exist | | cm validate | Validate check.toml configuration file |

Configuration

Configuration is stored in check.toml at your project root.

Code Domain

[code.linting]
eslint = true    # Run ESLint
ruff = true      # Run Ruff (Python)

[code.types]
tsc = true       # Run TypeScript type checking

Config Discovery

The CLI automatically discovers check.toml by walking up the directory tree from the current working directory.

Output Formats

Text (default)

[code.linting] ESLint
  ✗ src/index.ts:10:5 - 'foo' is assigned but never used

[code.types] tsc
  ✓ No type errors

code: 1 violation found

JSON

cm code check --format json
{
  "version": "0.1.0",
  "configPath": "/path/to/check.toml",
  "domains": {
    "code": {
      "status": "fail",
      "violationCount": 1,
      "violations": [...]
    }
  },
  "summary": {
    "totalViolations": 1,
    "exitCode": 1
  }
}

Exit Codes

| Code | Meaning | |------|---------| | 0 | All checks passed | | 1 | Violations found | | 2 | Configuration error | | 3 | Runtime error |

Supported Tools

| Tool | Language | Command | |------|----------|---------| | ESLint | TypeScript/JavaScript | eslint . | | Ruff | Python | ruff check . | | tsc | TypeScript | tsc --noEmit |

Tools must be installed in your project. If a tool is not found, it will be skipped with a warning.

CI Integration

Add to your GitHub Actions workflow:

- name: Run code checks
  run: npx check-my-toolkit code check

Roadmap

This toolkit is designed to grow into three domains:

  • code - Linting, type checking, code quality (current focus)
  • process - PR checks, branch naming, commit conventions
  • stack - Tool versions, environment variables, service dependencies

Development

# Install dependencies
npm install

# Build
npm run build

# Run tests
npm test

# Type check
npm run typecheck

# Lint
npm run lint

License

MIT