Chisle Audit
A read-only skill that scans a diff, file, or repo for both over-engineered code and bloated prose, returning a ranked list of what to cut.
Dev & CodingBeginner★ 427⑂ 27AI score 9/10Last updated: Sep 16, 2026
What it does
- Runs a single-pass efficiency audit over your
git diff, a specific path, or the whole repo tree. - Code axis (YAGNI): flags hand-rolled stdlib (debounce, deep-clone, groupBy, retry loops), abstractions with a single implementation, unnecessary dependencies, config flags that never vary, and speculative scaffolding with no caller.
- Prose axis: flags comments that restate the code, padded docstrings/READMEs, multi-paragraph explanations that could be one sentence, decorative tables/emoji, and dead TODO graveyards.
- Changes nothing. Emits a ranked list in the form
path:line [code|prose] bloat → lean replacement (~N lines)plus a two-line summary. - Deliberately skips input validation, error handling, security, accessibility, and comments that explain why.
Who it's for
- Developers who want to self-review before opening a PR.
- Teams managing verbose AI-generated code and docs.
- Open-source maintainers whose READMEs keep growing.
Examples
- Type
chisle auditbefore committing → get a ranked cut list for your staged changes. audit src/utils/→ surface hand-rolled helpers replaceable by the standard library.review this PR for over-engineering and verbosity→ a combined report covering both code and documentation.
· · · 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-audit/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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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-audit folder from the GitHub repo JayPokale/Chisle into my ~/.claude/skills/chisle-audit/. 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 /tmp/Chisle && mkdir -p ~/.claude/skills && cp -r /tmp/Chisle/skills/chisle-audit ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open your terminal.
- Clone the repo:
git clone https://github.com/JayPokale/Chisle.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r Chisle/skills/chisle-audit ~/.claude/skills/ - Verify that
~/.claude/skills/chisle-audit/SKILL.mdexists. - Restart Claude Code and try saying
chisle auditorwhat can I cut from this diff?
View source on GitHub ↗License: MIT