Quirón: a centaur holding up an eight-point star

Quirón, an AI humanizer skill that measures its own work

Quirón is a skill for Claude Code, Codex and Cursor. Give your agent a draft and ask it to humanize the text, or to make a README sound less like ChatGPT. It takes out the AI slop and then measures the rewrite against human writing published before ChatGPT, so you get the new text along with a measurement that says whether it now reads like a person wrote it.

Get it on GitHub See it on skills.sh

Install

The skills CLI installs it in Claude Code and in every other agent it supports, Gemini CLI and GitHub Copilot among them. It needs no API key, because it runs on the model you already use, and the scripts need nothing beyond the Python 3 standard library.

npx skills add ilien-dev/quiron

In Claude Code you can also add it as a plugin from its own marketplace:

/plugin marketplace add ilien-dev/quiron
/plugin install quiron@quiron

What it catches

Ask a model for a blog post and you get a shape you learn to spot. Quirón's checklist has 33 of these signs of AI writing, and each one was tested against real posts before it was kept. A few of them:

The famous marker words from 2023 barely show up anymore. In this project's 2026 run they turned up in 1% of assistant posts or fewer, roughly as often as in human ones. The words that give a 2026 model away are ordinary, and you would never flag them by eye.

A meter, not a self-grade

Most humanizer skills hand the model a list of patterns and trust it to follow the instructions. Quirón has the list too, but it also ships a script that counts 23 rates in the text and compares each one with the range found in 167 dev.to posts written before ChatGPT existed. Fiction and Spanish have their own bands.

The meter catches something a checklist misses. Tell a model to write like a person and it usually overshoots: the sentences get choppier and the words plainer than any person's. The meter flags that as loudly as it flags the AI side, so you know when to stop.

On an assistant-written Stripe tutorial it finds 13 of 23 rates inside the human band. The rewrite, built from the author's own notes, gets all 23.

$ python3 scripts/aimeter.py eval/ai/blog/e2e-raw/aspittel-782713.md

feature                   this   human band      verdict
long words (7+) /1k     353.83   159.68 - 250.46  above band, AI side
nominalizations /1k      55.21     7.29 - 32.65   above band, AI side
em dashes /1k             3.76     0.00 - 2.74    above band, AI side
lists of three /1k       11.29     0.00 - 5.51    above band, AI side
plain words /1k          33.88    43.19 - 95.24   below band, AI side
...
13/23 features inside the human band (p10-p90 of 167 human texts)

Use it on your own writing

Quirón is meant for text you write for yourself or your team, such as internal documentation or the notes from a meeting. It is not for passing AI writing off as human where the reader has a right to know who wrote it, like schoolwork or a job application. It is free and open source under the GNU AGPL v3.

Questions

Does it get text past AI detectors like GPTZero or Turnitin?
No. Those tools read token probabilities, and Quirón doesn't touch them. It works only on what a human reader actually notices.
Does it work in Spanish?
Yes. It has its own bands, measured on 241 Spanish dev.to posts, and its own word lists. Other languages get the checklist as a best effort.
Does it make things up to sound human?
Its instructions forbid it. A rewrite may use only facts from your text or your notes, and a script lists the numbers and links in the rewrite that the source doesn't have. When the text needs detail it lacks, the skill asks you for it.