Perception · Free taster

The Drill

AI wrote each of these. Your job: Ship, Flag, or Escalate. You're scored on calibration — catching real problems without false alarms. No account needed.

CARD 1 / 9catches 0/0false alarms 0/0
AI-generated · Python / FlaskSecure Code Review
Prompt to the AI » "Add a search endpoint that filters items by a query string."
@app.get("/search")def search():    term = request.args.get("q")    sql = f"SELECT * FROM items WHERE name LIKE '%{term}%'"    return jsonify(db.execute(sql).fetchall())

Want the full course? Open The Reviewer's Eye →