Read-only code quality audit — scan the current working directory for common issues (bugs, dead code, security hotspots, missing error handling) and return a prioritised findings report. No files are edited. Use when asked to "audit the code", "quick audit", "find issues", "code scan", or "what's wrong with this codebase". (munder-difflin)
Scanned 8/31/2026
Install to Claude Code
npx -y skills add chaitanyagiri/munder-difflin --skill md-audit --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Md Audit?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/chaitanyagiri-md-audit)More formats (shields.io, HTML) on the badges page.
---
name: md-audit
version: 1.0.0
description: |
Read-only code quality audit — scan the current working directory for common
issues (bugs, dead code, security hotspots, missing error handling) and return
a prioritised findings report. No files are edited.
Use when asked to "audit the code", "quick audit", "find issues", "code scan",
or "what's wrong with this codebase". (munder-difflin)
allowed-tools:
- Read
- Bash
- Grep
---
## Code Audit (read-only)
Perform a read-only code quality scan and return a findings report. Do NOT edit any files.
Steps:
1. **Scope** — identify the primary language and entry points (`package.json`, `Cargo.toml`, `go.mod`, `pyproject.toml`, or similar).
2. **Scan** — use `Grep` and `Read` to look for:
- Unhandled promise rejections / ignored errors
- Hard-coded secrets or credentials (keys, tokens, passwords)
- `TODO`/`FIXME`/`HACK` comments that signal known debt
- Dead exports (exported symbols with no in-repo import)
- Obvious type-safety gaps (unchecked `any`, missing null guards)
3. **Report** — output a findings list sorted by severity (Critical → High → Medium → Low):
```
## Audit Report — <project name>
### Critical
- [file:line] <description>
### High
- ...
### Summary
<total count> findings across <file count> files scanned.
```
4. Stop after reporting. Do not apply any fixes.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!