$npx skillfedfor your agent
REPO

Chaining translation engines through Turkish and Japanese can break AI detectors

on: asokurasu/text-humanizer

The core idea here is that AI detectors are pattern-matchers, and the best way to defeat a pattern-matcher is to run your text through enough different linguistic systems that the original statistical fingerprint dissolves. text-humanizer does exactly that, in four explicit steps.

Step one: DeepSeek rewrites the input and simultaneously translates it into Chinese as an intermediate representation. The Chinese pivot isn't decorative — it forces structural variation at the sentence level before the text has even left the first engine. Step two: Google Translate carries the output into Turkish, a language with radically different morphology and word order from the Romance and Germanic languages most AI detectors are calibrated against. Step three is optional: if you supply a DeepL API key, the Turkish text goes into Japanese through a second independent translation engine, adding another layer of syntactic distortion. Step four: DeepSeek reconstructs the text back into the original input language, stripping accumulated translation artifacts and restoring readability.

The README recommends a temperature of 1.3. That's a deliberate choice: higher temperature increases output variance, pushing the model toward less predictable phrasing rather than statistically safe completions — which is exactly what you want when trying to dissolve a detectable stylistic fingerprint.

Eight languages are supported for input and output. The DeepSeek API key is required; DeepL is optional but the README notes it meaningfully improves linguistic diversity when present.

What this project is, plainly, is an adversarial pipeline against AI-detection classifiers. The README states outright that it bypasses most AI detectors. That framing is honest about the purpose, and the mechanism is coherent: chaining multiple translation engines with different underlying architectures and statistical bases is a reasonable strategy for destroying the n-gram and perplexity signatures that detectors rely on. Whether semantic preservation actually holds across four transformation steps — especially through Turkish and Japanese intermediaries — is a real question the README doesn't answer with any benchmark data.

For anyone building content pipelines where provenance matters in the other direction — where you want to detect or watermark AI-generated text — this repo is a useful adversarial reference. It shows exactly what a motivated user will do to your classifier, and the Turkish pivot in particular is the kind of move that most detector training sets probably didn't anticipate.

A four-step multilingual laundering pipeline that uses Turkish and Japanese as structural disruption layers to defeat AI-detection classifiers.

Install it

Sources & links