·dotnet-slopwatch
</>

dotnet-slopwatch

aaronontheweb/dotnet-skills

Use Slopwatch to detect LLM reward hacking in .NET code changes. Run after every code modification to catch disabled tests, suppressed warnings, empty catch blocks, and other shortcuts that mask real problems.

20Installs·1Trend·@aaronontheweb

Installation

$npx skills add https://github.com/aaronontheweb/dotnet-skills --skill dotnet-slopwatch

SKILL.md

Use this skill constantly. Every time an LLM (including Claude) makes changes to:

"Slop" refers to shortcuts LLMs take that make tests pass or builds succeed without actually solving the underlying problem. These are reward hacking behaviors - the LLM optimizes for apparent success rather than real fixes.

| Disabled tests | [Fact(Skip="flaky")] | Hides failures instead of fixing them | | Warning suppression | #pragma warning disable CS8618 | Silences compiler without fixing issue | | Empty catch blocks | catch (Exception) { } | Swallows errors, hides bugs | | Arbitrary delays | await Task.Delay(1000); | Masks race conditions, makes tests slow |

Use Slopwatch to detect LLM reward hacking in .NET code changes. Run after every code modification to catch disabled tests, suppressed warnings, empty catch blocks, and other shortcuts that mask real problems. Source: aaronontheweb/dotnet-skills.

View raw

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/aaronontheweb/dotnet-skills --skill dotnet-slopwatch
Category
</>Dev Tools
Verified
First Seen
2026-02-05
Updated
2026-02-18

Quick answers

What is dotnet-slopwatch?

Use Slopwatch to detect LLM reward hacking in .NET code changes. Run after every code modification to catch disabled tests, suppressed warnings, empty catch blocks, and other shortcuts that mask real problems. Source: aaronontheweb/dotnet-skills.

How do I install dotnet-slopwatch?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/aaronontheweb/dotnet-skills --skill dotnet-slopwatch Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor

Where is the source repository?

https://github.com/aaronontheweb/dotnet-skills