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

circleci-ci-doctor

v0.1.1

Published

Audit .circleci/config.yml for cost, security, and reliability gaps. Sister project to ci-doctor, gitlab-ci-doctor, bitbucket-ci-doctor, azure-pipelines-ci-doctor.

Readme

circleci-ci-doctor

Audit .circleci/config.yml for waste, cost, and security gaps. MIT, no telemetry.

Sister project to ci-doctor (GitHub Actions), gitlab-ci-doctor, bitbucket-ci-doctor, azure-pipelines-ci-doctor. Same engine, CircleCI-native rules.

Install

npx circleci-ci-doctor
# or
npm i -g circleci-ci-doctor

Use

circleci-ci-doctor              # audit ./.circleci/config.yml
circleci-ci-doctor --markdown   # PR-comment friendly
circleci-ci-doctor --json       # machine-readable
circleci-ci-doctor --rules      # list checks
circleci-ci-doctor --demo       # smoke-test
circleci-ci-doctor --severity=warn
circleci-ci-doctor --only=expensive-resource-class,docker-no-pin

Rules

| id | severity | category | what | | --- | --- | --- | --- | | expensive-resource-class | warn | cost | resource_class: xlarge/2xlarge/3xlarge without heavy build/test commands. Each tier ~doubles credit/min. | | macos-executor | warn | cost | macos: executor without xcodebuild/swift/fastlane (~10x Linux Docker cost) | | docker-no-pin | warn | security | docker.image not pinned to @sha256:<digest> | | missing-cache | warn | cost | npm/pip/maven/gradle/cargo/go/bundler install with no restore_cache/save_cache | | orb-no-pin | warn | security | orb ref not MAJOR.MINOR.PATCH (e.g. circleci/node@5 or @volatile) | | missing-no-output-timeout | warn | cost | hang-prone run: step (tests/deploys/migrations) without no_output_timeout | | secret-echo | warn | security | env, printenv, set -x, or echo $TOKEN in a run: block | | wide-filters | warn | cost | workflow job has no filters: — runs on every branch push |

Drop into a workflow

version: 2.1
orbs:
  node: circleci/[email protected]
jobs:
  ci-audit:
    docker:
      - image: cimg/node:20.10@sha256:<digest>
    resource_class: small
    steps:
      - checkout
      - run:
          name: ci-doctor
          command: npx --yes circleci-ci-doctor --markdown | tee ci-doctor.md
          no_output_timeout: 2m
      - store_artifacts:
          path: ci-doctor.md
workflows:
  audit:
    jobs:
      - ci-audit:
          filters:
            branches:
              only: [main, /^pr\/.*/]

In-browser scanner

Paste any .circleci/config.yml at https://depmedicdev-byte.github.io/scan-circleci.html. No upload, no signup.

Family

MIT (c) depmedic


Sponsor / support depmedic

If this saved you 10 minutes of CI debugging, consider one of these. All of them keep the free CLIs free:

More from depmedic

| | | | --- | --- | | ci-doctor | audit GitHub Actions for cost + security (16 rules) | | gitlab-ci-doctor | same engine for .gitlab-ci.yml (14 rules) | | bitbucket-ci-doctor | for bitbucket-pipelines.yml (8 rules) | | azure-pipelines-ci-doctor | for azure-pipelines.yml (8 rules) | | circleci-ci-doctor | for .circleci/config.yml (8 rules) | | gha-budget | $-denominated cost estimate of any GHA workflow | | pin-actions | one-shot SHA pinner for uses: blocks | | cursor-rules-init | scaffold .cursor/rules/ for your stack | | depmedic | all-in-one cli, finds outdated/risky deps | | depmedic/ci-doctor-action | composite GitHub Action: PR comment + SARIF |

In-browser scanners (no install): GitHub · GitLab · Bitbucket · Azure · CircleCI.

Newsletter (weekly, low-volume): https://depmedicdev-byte.github.io/newsletter.html?utm_source=npm&utm_medium=readme&utm_campaign=circleci-ci-doctor.