Live Demo
Click to score. No server tricks.
Results computed via the API — same engine, same weights.
In this comprehensive guide, we will explore the transformative power of artificial intelligence and how it can leverage cutting-edge soluti…
Fixed the authentication timeout by adding token expiry validation. The previous implementation only checked token length, which let expired…
This PR introduces a more scalable architecture for the request pipeline using dependency injection and the strategy pattern: ```typescript…
How It Works
4 layers. 29 signals. One score.
Benchmarks
200 samples. 5 domains. No cherry-picking.
Docs & KBs is our hardest domain. Technical documentation sometimes reads like slop — thorough, formulaic, predictable. Our 7 false positives are well-written technical posts that use jargon our vocabulary signals mistake for slop. Every failure is documented. Read HONEST_NUMBERS.md →
Code Smell Detection
We read your code blocks
The first slop detector that analyzes code embedded in PR descriptions. Paste a PR and we flag the patterns.
class RequestHandlerManager {
constructor(
private handler: RequestHandler
) {}
handle(req: Request) {
return this.handler.handle(req); // ← just delegates
}
}interface IUserService {
getUser(id: string): User;
saveUser(user: User): void;
}
// The only implementation — ever
class UserServiceImpl
implements IUserService { ... }Try It
Score text
CLI