Add AI-iness density pre-check to gate pass strength (closes #93)#115
Open
adelaidasofia wants to merge 1 commit intoblader:mainfrom
Open
Add AI-iness density pre-check to gate pass strength (closes #93)#115adelaidasofia wants to merge 1 commit intoblader:mainfrom
adelaidasofia wants to merge 1 commit intoblader:mainfrom
Conversation
Counts Tier 1 dead-giveaway tells per 100 words and picks light/mixed/full mode before applying patterns. Stops the skill from over-correcting human-first text (personal journals, rough drafts, meeting notes) where all-or-nothing rule application was stripping out the quirks that made the writing sound like a person. Tier 1 = the seven dead-giveaway rules already in SKILL.md (1, 4, 7, 20, 21, 22, 25). Density score is Tier 1 hits per 100 words: - 0 tells: light mode, skip the rewrite (apply only specific Tier 1 hits) - 1-2: mixed mode (default), Tier 1 in full + others where they clearly fire - 3+: full mode, all 29 rules Strictly additive to SKILL.md. No new tools, no infra changes. Closes blader#93
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Per #93. Adds a pre-flight density check that counts Tier 1 dead-giveaway tells per 100 words and picks pass strength (light / mixed / full) before applying patterns.
This stops the skill from over-correcting human-first text (personal journals, rough drafts, meeting notes), where all-or-nothing rule application strips the exact quirks that made the writing sound like a person.
What changed
SKILL.mdonly. Strictly additive, no new tools, no infrastructure.## Pre-flight: AI-iness Density Checkinserted before## Process. Defines Tier 1 as the seven dead-giveaway rules already in SKILL.md (1, 4, 7, 20, 21, 22, 25), the density thresholds, and the pre-flight announcement format the user sees.## Processupdated: step 2 runs the pre-flight check; the rest of the steps renumber accordingly.41 added, 8 modified (renumbering only).
Density thresholds
Why these seven rules
Rules 1, 4, 7, 20, 21, 22, 25 are the patterns that almost never appear in authentic human writing (broader-trends framing, promotional language, AI vocabulary, "Certainly!" / "Of course!" openers, knowledge-cutoff disclaimers, sycophantic tone, generic positive conclusions). Restricting the density score to these keeps the signal clean. Lower-tier rules can fire as false positives on human writing, so counting them would inflate the score and trigger over-correction.
Verified
Running in production on a fork (adelaidasofia/humanizer) for several months on personal journal and rough-draft content. Eliminates the "humanizer made my writing worse" failure mode on human-first text. AI-generated text still routes to full mode and gets the comprehensive rewrite.
Notes
This is intentionally scoped to the issue. Other improvements in the fork (Spanish-language rule library, voice fingerprinting, ROI-ranked tiers for all 29 rules) are separate concerns and can ship as later PRs if you want them.