New: MCP integration. Run plagiarism scans from Claude, Cursor or any AI assistant. Run scans from Claude or Cursor. Set it up

Code Intelligence Hub

Expert insights on AI code detection and academic integrity

AI-Generated Code Detection: The New Frontier in Academic Integrity
Featured

AI-Generated Code Detection: The New Frontier in Academic Integrity

As AI coding assistants become ubiquitous, learn how institutions are adapting to detect AI-generated code and maintain educational standards.

Codequiry Editorial Team Codequiry Editorial Team · Jan 5, 2026
Read More →

Latest Articles

Stay ahead with expert analysis and practical guides

Why a 400-Student Intro Course Adopted Layered Code Checks General 11 min
Dr. Sarah Chen Dr. Sarah Chen · 3 days ago

Why a 400-Student Intro Course Adopted Layered Code Checks

One CS department's switch from a single similarity tool to a layered detection workflow changed what they could see in student code. Peer copying, web sources, and AI-generated submissions each required different signals, and combining them revealed more than any one check alone.

What 41,000 Code Submissions Reveal About Similarity Score Thresholds General 9 min
Priya Sharma Priya Sharma · 1 week ago

What 41,000 Code Submissions Reveal About Similarity Score Thresholds

Across 41,000 student submissions at a large public university, an 85% token-level similarity score between two students predicted confirmed misconduct 92% of the time in introductory courses. This guide walks through the exact calibration workflow, score distributions by language, and tiered review thresholds that worked for my assessment team.

Similarity Score Distributions Across Four Intro CS Languages General 12 min
Priya Sharma Priya Sharma · 3 weeks ago

Similarity Score Distributions Across Four Intro CS Languages

A three-semester analysis of 4,100 CS1 submissions shows why a 70% similarity score means different things in Python, Java, C++, and JavaScript. I break down percentile thresholds, boilerplate effects, false positives, and how to pair similarity checks with AI detection.

What 14,000 Python Submissions Reveal About AI Detection Errors General 4 min
Marcus Rodriguez Marcus Rodriguez · 3 weeks ago

What 14,000 Python Submissions Reveal About AI Detection Errors

A three-semester case study at Briarwood University tracked 14,000 Python assignments through four AI code detectors. The result: false positive rates from 4% to 9% overall, spiking to 23% on common algorithmic patterns. This article breaks down the data, the code patterns that trigger false flags, and a practical workflow for balancing detection with fairness.

Grading Assignments to Detect AI-Generated Code in Student Submissions General 8 min
Marcus Rodriguez Marcus Rodriguez · 3 weeks ago

Grading Assignments to Detect AI-Generated Code in Student Submissions

Most AI-generated code in student submissions goes unnoticed when instructors rely on intuition or a single detector. This research-style guide explains how to layer statistical signals, peer similarity, web-source checks, and rubric design to reliably catch AI-assisted code without manufacturing false positives.

How Greedy String Tiling Detects Plagiarized Code General 1 min
Marcus Rodriguez Marcus Rodriguez · 4 weeks ago

How Greedy String Tiling Detects Plagiarized Code

Greedy string tiling is the matching algorithm behind JPlag and several modern code similarity engines. This report explains how it tokenizes source, extracts maximal contiguous matches, and why it still needs help from AST and fingerprinting to catch refactored plagiarism.

How a 400-Student Python Course Flags AI and Copied Code General 11 min
Alex Petrov Alex Petrov · 1 month ago

How a 400-Student Python Course Flags AI and Copied Code

A 400-student Python course adopted Codequiry to check submissions for plagiarism and AI generation. The instructor found that 18% of assignments contained copy-pasted code from Chegg, and 12% showed strong signs of LLM authorship — a pattern that peer-only checks had missed entirely.

How a University Caught AI-Generated Code in 14Percent of CS2 Submissions General 11 min
Alex Petrov Alex Petrov · 1 month ago

How a University Caught AI-Generated Code in 14Percent of CS2 Submissions

When Riverside University’s CS department ran an AI detector across 300 CS2 assignments alongside MOSS, they discovered a new layer of academic integrity challenges. The case study reveals what they found, how they calibrated thresholds, and why combining AI detection with source-code fingerprinting changed their grading workflow.

How Source Code Plagiarism Detection Escaped the Diff Trap General 11 min
Priya Sharma Priya Sharma · 1 month ago

How Source Code Plagiarism Detection Escaped the Diff Trap

What started as a textual diff in Unix is now a high-stakes algorithmic arms race. This article traces the thirty-year evolution of source code plagiarism detection—from simple token matching and AST comparison to fingerprinting that survives variable renaming, and finally to the fresh challenge of AI-generated code. We examine the real detection rates, the tools that led each era, and where Codequiry fits as the first hybrid platform to unify peer, web, and AI checks in a single reporting workflow.

15,000 CS Submissions Test 3 Plagiarism Detection Algorithms General 10 min
Marcus Rodriguez Marcus Rodriguez · 1 month ago

15,000 CS Submissions Test 3 Plagiarism Detection Algorithms

Code similarity tools all promise to catch cheaters, but their underlying algorithms differ dramatically. We ran a large-scale experiment—15,000 real CS1 Java submissions, 500 manually verified suspicious pairs—to compare winnowing (MOSS), AST hashing (JPlag-style), and fingerprinting side by side. The results expose which techniques survive renaming, refactoring, and template reuse, and why a layered approach matters for low false‑positive rates in production academic workflows.

Putting a Code Similarity Checker in Your Git Pre-Commit Hook General 11 min
Alex Petrov Alex Petrov · 1 month ago

Putting a Code Similarity Checker in Your Git Pre-Commit Hook

A copied snippet might survive a human code review after a quick variable rename and loop inversion. A similarity checker that understands ASTs won’t be fooled. This guide walks through wiring Codequiry’s API into your Git pre‑commit workflow, step by step, so every commit is scanned for non‑original code before it hits the branch.

How AST-Based Similarity Catches Disguised Code Plagiarism General 15 min
Dr. Sarah Chen Dr. Sarah Chen · 1 month ago

How AST-Based Similarity Catches Disguised Code Plagiarism

Token-based plagiarism detectors match sequences of tokens, but smart students can evade them by renaming variables, reordering statements, and refactoring code. Abstract Syntax Tree (AST) comparison digs deeper into the structural DNA of a program, making it far harder to disguise copied code. Learn how AST-based detection works, why it catches what MOSS and JPlag miss, and where Codequiry’s multi-layered approach fits in.