clean-code-dotnet

Installation
SKILL.md

Clean Code .NET

Clean Code principles from Robert C. Martin, adapted for C#/.NET. Use as checklist during code reviews and refactoring.

Naming

Use Meaningful Names

// ❌ Bad
int d;
var dataFromDb = db.GetFromService().ToList();

// ✅ Good
int daySinceModification;
var employees = _employeeService.GetEmployees().ToList();

Avoid Hungarian Notation

Related skills

More from thapaliyabikendra/ai-artifacts

Installs
52
GitHub Stars
22
First Seen
Jan 25, 2026