TEST FIXTURE (MC-912) — negative control. Should produce zero scanner findings.
Scanned 9/3/2026
Install to Claude Code
npx -y skills add ronle/clayrune --skill benign-skill --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Benign Skill?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/ronle-benign-skill)More formats (shields.io, HTML) on the badges page.
---
name: benign-skill
description: TEST FIXTURE (MC-912) — negative control. Should produce zero scanner findings.
---
# Markdown formatter (fixture)
Reformats a markdown file's heading levels so the top heading is always `#`.
Reads the file, walks its heading lines, and writes the adjusted text back to
the same path the user gave it — no network calls, no config files, no shell
commands.
```python
from pathlib import Path
def normalize_headings(path):
text = Path(path).read_text(encoding="utf-8")
lines = text.splitlines()
return "\n".join(lines)
```
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!