Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Chisle Review

Reviews a diff or file purely for what can be deleted or simplified — over-engineering, speculative abstractions, and reinvented stdlib.

Dev & CodingBeginner42727AI score 10/10Last updated: Sep 16, 2026

What it does

It runs a code review through the "Chisle lens": not style nits, but what could be removed or shrunk.

  • Flags abstractions with a single implementation (interface/factory/wrapper for one case)
  • Catches reinvented stdlib: hand-rolled debounce, deep clone, groupBy, date math
  • Calls out new dependencies where a few lines or an installed dep suffices
  • Removes config/options that never vary and "for later" scaffolding with no caller
  • Suggests native platform features (CSS, DB constraints, <input type>) over verbose code

It explicitly avoids flagging trust-boundary validation, data-loss-preventing error handling, security/accessibility code, and anything the task required.

Output is one finding per line — path:line: what's over-built. the lazier replacement. — closing with N findings. Est. <X> lines removable.

Who it's for

  • Reviewers on teams where PRs keep ballooning
  • Developers cleaning up legacy code
  • Anyone trimming verbose AI-generated code
  • People who prefer terse, praise-free reviews

Examples

  1. Say "chisle review" and paste your branch diff to catch bloat before merging
  2. "Review this file for bloat" — get a hand-rolled debounce swapped for inline setTimeout/clearTimeout
  3. Run /chisle-review on a feature PR to list abstraction layers with no callers and unnecessary new packages

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/JayPokale/Chisle/HEAD/skills/chisle-review/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the skills/chisle-review folder from the GitHub repo JayPokale/Chisle into my ~/.claude/skills/chisle-review/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/JayPokale/Chisle.git && mkdir -p ~/.claude/skills && cp -r Chisle/skills/chisle-review ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open your terminal.
  2. Clone the repo: git clone https://github.com/JayPokale/Chisle.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill in: cp -r Chisle/skills/chisle-review ~/.claude/skills/
  5. Restart Claude Code.
  6. Show it a file or diff and type "chisle review" (or /chisle-review) to trigger it.