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

@koibykoik/code-correctness-skill

v0.1.3

Published

Agent skill for refactoring and reviewing existing code with more judgment than ceremony.

Readme

code-correctness

clean code is not about making code look expensive. it is about making code easier to trust.

code-correctness is a skill for reviewing and refactoring existing code without falling into the usual ai habits: overexplaining, over-abstracting, renaming things into nonsense, or touching code that was fine to begin with.

it pushes toward better names, cleaner function boundaries, visible side effects, good restraint, and code that reads like it means what it says.

what it helps with

  • confusing names
  • long or mixed-responsibility functions
  • hidden side effects
  • stale or noisy comments
  • flag-heavy apis
  • code that is technically fine but annoying to read or risky to change

what it does differently

  • it treats restraint as a valid outcome
  • it keeps comments that still carry real context
  • it respects framework idioms and hot paths
  • it does not force DRY where repetition is clearer
  • it is tuned for code intent, not cleanup theater

install

direct from github

npx skills add koikbr/code-correctness-skill

list what the repo exposes:

npx skills add koikbr/code-correctness-skill --list

install only this skill explicitly:

npx skills add koikbr/code-correctness-skill --skill code-correctness

manual

copy or symlink the folder into your local skills directory:

mkdir -p ~/.agents/skills
cp -r code-correctness ~/.agents/skills/

for Claude Code, a common location is:

mkdir -p ~/.claude/skills
cp -r code-correctness ~/.claude/skills/

when to use it

use it when the task is about improving existing code, especially if the user says things like:

  • this function is too long
  • these names are confusing
  • this code is hard to follow
  • please clean this up
  • refactor without changing behavior
  • make this easier to maintain

why it exists

a lot of ai refactors are almost right. that is the problem.

they make code look cleaner while making it less honest. they add helpers nobody needed, flatten framework patterns that were there for a reason, delete comments that still matter, or keep changing good code because silence feels wrong.

this skill was built to push in the other direction.

files

  • SKILL.md - the skill instructions
  • README.md - overview and install notes

support

  • website: https://koik.com.br
  • github: https://github.com/koikbr/code-correctness-skill
  • email: [email protected]

license

GPL-3.0

author

koi