by NulightJens
Two-pass pipeline for removing AI writing tells from outward-facing text: a surface pass plus a structural pass grounded in the StoryScope study. Packaged as Claude Code Skills. Free community: skool.com/jens-ai-community-1306
Unlocks once the catalog security scan passes (runs nightly).
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
# Add to your Claude Code skills
git clone https://github.com/NulightJens/humanizer-stackGuides for using data processing skills like humanizer-stack.
A two-pass pipeline for removing the signs of AI writing from outward-facing text, packaged as Claude Code Skills.
Most humanizers only fix words. That is the easy half, and it is the half that is decaying fastest. This repo pairs a surface pass with a structural pass, because the research says structure is where the durable fingerprint lives.
Free community. I build tools like this in the open inside the Jens AI Community, a free Skool group for putting AI to work in your business. If this repo is useful to you, come join us: https://www.skool.com/jens-ai-community-1306
The StoryScope study (Russell et al., 2026) classified 61,608 stories from humans and five LLMs using only discourse-level features, with every style feature withheld. It detected AI text at 93.2% F1.
Then the authors ran AI text through LAMP, a professional span-level rewriting system that strips cliche, purple prose, and redundant exposition. Functionally, a very good surface humanizer.
Detection dropped 1.6 points.
Meanwhile the surface layer is eroding on its own. GPT 5.4 already cut its em-dash usage sharply, and fine-tuning drops stylistic detection from 97% to 3%. Word-level tells are a moving target. Structural tells require structural rewrites.
So: pass 1 fixes the words. Pass 2 fixes the shape. Run them in that order.
skills/
humanizer/ Pass 1: words and phrasing
SKILL.md
references/copy-tells.md Copy-specific tells (em dash, hype vocab, antithesis)
structural-humanizer/ Pass 2: discourse structure
SKILL.md
references/
storyscope-findings.md The study distilled: 30 core features with rates
genre-calibration.md Which audits apply per genre
scripts/structural_scan.py Deterministic scanner for grep-able structural tells
scripts/
copy_scan.py Deterministic scanner for mechanical copy tells
docs/
PIPELINE.md How the passes chain, and what each one owns
humanizerVocabulary, punctuation, and phrasing. Inflated symbolism, promotional language, superficial "-ing" analyses, vague attributions, em dash overuse, rule of three, AI vocabulary, negative parallelism. Built from Wikipedia's Signs of AI writing.
The copy-tells.md reference adds the tells that show up specifically in public copy,
ranked by a 3.2M-post Reddit analysis of what people actually flag.
structural-humanizerSix audits run one at a time, because aspect-based checking found 95% of issues in the study's own pipeline against 68% for a single combined pass:
Do not trade one default for another. The study's deepest finding is convergence: all five models occupy one tight region of structural space while humans are dispersed. Rarity is the human signal.
If every piece now opens mid-scene, names three feelings, and ends unresolved, you have built a new detectable cluster. Pick one or two interventions per piece, vary them across pieces, and be able to say why this piece got this shape.
git clone https://github.com/NulightJens/humanizer-stack.git
cd humanizer-stack
./install.sh
This symlinks both skills into ~/.claude/skills/, so updates land with a git pull.
Pass --copy if you would rather have independent copies than symlinks.
To install manually, copy skills/humanizer and skills/structural-humanizer into
~/.claude/skills/ (user-level) or .claude/skills/ (project-level).
In Claude Code, the skills trigger on intent:
humanize this post
de-slop this lesson
run the structural pass on draft.md
Run the surface pass first, then the structural pass. docs/PIPELINE.md covers the
order and what each layer owns.
Both scanners are deterministic and hook-friendly. They catch the pattern-matchable slice only, and neither replaces the judgment work in the skills.
python3 scripts/copy_scan.py draft.md
python3 skills/structural-humanizer/scripts/structural_scan.py draft.md
python3 scripts/copy_scan.py --json draft.md # machine-readable
python3 scripts/copy_scan.py --strict draft.md # exit 1 on any hit
cat draft.md | python3 scripts/copy_scan.py - # stdin
Mark a line copy-ignore to suppress an intentional usage.
Built on work by @blader (MIT), jcarterjohnson (MIT), and Wikipedia's WikiProject AI Cleanup (CC BY-SA 4.0). Grounded in Russell et al. 2026.
Full breakdown with license obligations: ATTRIBUTION.md.
MIT for this repository's own work. Portions carry upstream terms, including CC BY-SA 4.0 material with share-alike obligations. See ATTRIBUTION.md before redistributing.
humanizer-stack is an open-source data processing skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by NulightJens. Two-pass pipeline for removing AI writing tells from outward-facing text: a surface pass plus a structural pass grounded in the StoryScope study. Packaged as Claude Code Skills. Free community: skool.com/jens-ai-community-1306. It has 53 GitHub stars.
humanizer-stack's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/NulightJens/humanizer-stack" and add it to your Claude Code skills directory (see the Installation section above).
humanizer-stack is primarily written in Python. It is open-source under NulightJens on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other Data Processing skills you can browse and compare side by side. Open the Data Processing category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh humanizer-stack against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars