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

csharp-code-calisthenics-reviewer

v0.1.0

Published

Deterministic C# code calisthenics review skill packaged as a raw skill bundle and Codex plugin.

Downloads

123

Readme

csharp-code-calisthenics-reviewer

csharp-code-calisthenics-reviewer is an npm-distributed skill package for reviewing a single C# file or small class against a narrow set of code-calisthenics rules and suggesting a deterministic refactor plan.

What v1 reviews

The skill checks exactly these 5 rules:

  • Only one level of indentation per method
  • Avoid else
  • Wrap primitives in value objects when it makes sense
  • First-class collections
  • Small methods with intention-revealing names

The skill is instruction-heavy by design. It does not perform full automatic rewrites by default, but it may include short illustrative snippets when they clarify a proposed refactor.

Repo layout

src/
  raw-skill/
    SKILL.md
    references/calisthenics-checklist.md
    examples/input/OrderService.cs
    examples/output/review.md
  codex-plugin/
    .codex-plugin/plugin.json
    skills/csharp-code-calisthenics-reviewer/
bin/
  installer.js
scripts/
  build.js
.agents/
  plugins/marketplace.json

src/raw-skill is the canonical source. npm run build mirrors it into the Codex plugin skill folder and synchronizes the plugin manifest version from package.json.

Install

npm / npx

Build first:

npm install
npm run build

Run from the published package or locally:

npx csharp-code-calisthenics-reviewer install --target codex --scope personal
npx csharp-code-calisthenics-reviewer install --target codex --scope repo --path /path/to/repo
npx csharp-code-calisthenics-reviewer install --target dir --path /path/to/destination
npx csharp-code-calisthenics-reviewer install --target claude --path /path/to/destination

Optional flags:

--dry-run
--force

Skillfish

Use the raw skill bundle:

npx csharp-code-calisthenics-reviewer install --target dir --path /path/to/skills/csharp-code-calisthenics-reviewer

Codex local plugin install

Personal install:

npx csharp-code-calisthenics-reviewer install --target codex --scope personal

This installs the plugin to ~/.codex/plugins/csharp-code-calisthenics-reviewer and creates or updates ~/.agents/plugins/marketplace.json.

Repo install:

npx csharp-code-calisthenics-reviewer install --target codex --scope repo --path /path/to/repo

This installs the plugin to <repo>/plugins/csharp-code-calisthenics-reviewer and creates or updates <repo>/.agents/plugins/marketplace.json.

Claude-compatible path copy

npx csharp-code-calisthenics-reviewer install --target claude --path /path/to/destination

This performs an explicit path-based copy only. v1 does not assume or document an official Claude install location.

Build and verify

npm run build
python C:/Users/USUARIO/.codex/skills/.system/skill-creator/scripts/quick_validate.py src/raw-skill
npm pack

On Windows PowerShell, if npm pack is blocked by npm.ps1 execution policy or by the global npm cache, use:

npm run pack:ps

Marketplace metadata

The Codex plugin manifest lives at src/codex-plugin/.codex-plugin/plugin.json.

The repository also includes .agents/plugins/marketplace.json as a repo-local marketplace catalog entry that points to ./plugins/csharp-code-calisthenics-reviewer. Installer runs generate or update marketplace entries at the chosen destination without duplicating existing entries.