diff --git a/prompts/evaluator/implement.md b/prompts/evaluator/implement.md index 7fc842c..57e7bfd 100644 --- a/prompts/evaluator/implement.md +++ b/prompts/evaluator/implement.md @@ -15,3 +15,6 @@ You are evaluating an implementation story. The generator claims to have built a - Tests exist but don't assert meaningful behavior - Passes typecheck only because types are overly loose - Code exists but doesn't actually run +- Removed an import or variable during refactoring but it's still used elsewhere in the file +- New instance of a shared resource (e.g., DB connection, rate limiter) instead of using the existing one +- Error details leaked to HTTP responses (use logging server-side, return generic message to client)