🕵️ SicherheitslückenWhat continuous operational resilience looks like under DORA(09.09.2026 um 17:53 Uhr)
🔧 AI Nachrichten OpenAI seeks tougher AI rules. CIOs may feel the ripple effects(10.09.2026 um 12:11 Uhr)
🔧 AI Nachrichten Mistral valued at €21bn after €3bn Series D funding round(08.09.2026 um 10:19 Uhr)
🪟 Windows TippsWindows XP's Cursor Indicator Is Getting a Windows 11 Refresh(25.08.2026 um 13:00 Uhr)
🕵️ SicherheitslückenWhat continuous operational resilience looks like under DORA(09.09.2026 um 17:53 Uhr)
🔧 AI Nachrichten OpenAI seeks tougher AI rules. CIOs may feel the ripple effects(10.09.2026 um 12:11 Uhr)
🔧 AI Nachrichten Mistral valued at €21bn after €3bn Series D funding round(08.09.2026 um 10:19 Uhr)
🪟 Windows TippsWindows XP's Cursor Indicator Is Getting a Windows 11 Refresh(25.08.2026 um 13:00 Uhr)

🔧 Programmierung 🕛 vor 3 Monaten 3 Min Lesezeit
0

Introducing aislop: The Quality Gate for AI-Written Code

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht

I got tired of reviewing pull requests that looked fine until they were not.



The code compiled. The tests passed. The diff looked reasonable. Then, buried in the middle, there would be a catch block that swallowed every error, a TODO that returned fake data, or another as any cast because the agent did not finish the type work.



That is the part people underestimate about AI-generated code. The first problem is not that it is obviously broken. The first problem is that it often looks acceptable.



I built [aislop](https://github.com/scanaislop/aislop) for that gap.






What aislop is



aislop is an open-source CLI for scanning AI-written code before it reaches production. It looks for the patterns AI coding agents leave behind when they are optimizing for "make the prompt work" instead of "keep this codebase healthy."



Run it once:




CODE
npx aislop@latest scan






Or install it and make it part of your local workflow:




CODE
npm install --save-dev aislop
aislop scan --changes






It scores the code, reports findings, and can auto-fix the mechanical issues. The more important part is the gate: it gives your team a way to catch AI slop before it becomes normal.






The problem it solves



Claude Code, Cursor, Codex, Copilot, and other coding agents are useful. This is not an argument against them. I use them because they make real engineering work faster.



But agents have a different failure profile than humans.



They write error handling that makes the function stop throwing, even when that hides the real failure. They add comments that explain the code instead of explaining a decision. They duplicate helpers because discovering the existing helper requires context. They cast through type errors because the compiler is in the way of finishing the task.



None of that means the agent is useless. It means the output needs a different quality gate.



Your existing linter still matters. Tests still matter. Typechecking still matters. aislop sits next to those tools and asks a narrower question:




Did an AI coding agent leave behind patterns that will make this code harder to maintain?







What it catches



Common findings include:




  • Narrative comments above self-explanatory code

  • Swallowed exceptions and empty fallbacks

  • Unsafe as any casts

  • Hallucinated imports

  • Duplicated helpers and dead code

  • Production TODO stubs

  • Hardcoded environment values

  • Oversized files and functions that agents kept appending to



These are not always bugs on day one. That is why they survive review. The damage is cumulative: noisier files, weaker types, less trustworthy error handling, more duplicate logic, and slower future changes.






Why I wanted a dedicated tool



General-purpose linters were designed around human-written code. They catch formatting issues, unused variables, unsafe syntax, and many useful correctness problems. They do not fully understand the repeated fingerprints of agent output.



For example, a linter might catch this:




CODE
try {
await sync();
} catch {}






But it probably will not catch this:




CODE
try {
await sync();
} catch {
return [];
}






The second version is what agents often write. It looks like error handling. In production, it means "the sync failed" and "there were no records" now look identical.



That is the kind of pattern aislop is built to flag.






Where it fits



Start with changed files:




CODE
aislop scan --changes






Then add CI:




CODE
aislop ci --changes --base origin/main






If your team uses agent hooks, install one:




CODE
aislop hook install --claude






The goal is simple: keep the speed of AI-assisted development, but stop the low-quality residue from merging unnoticed.



That is the bet behind aislop: AI coding agents are here to stay, so code quality tooling has to adapt.



Repo:

Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
1 Quelle
Sam Altman calls GPT-6 Astra rollout ‘messy’ as enterprise users wait for access
1 Quelle
Swiss government explores replacing Microsoft 365 with open-source software
1 Quelle
What continuous operational resilience looks like under DORA
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Introducing aislop: The Quality Gate for AI-Written Code

Thematisch verwandte Begriffe: Introducing, aislop, Quality, Gate · 6 Treffer

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...