Narrow Section 26 hyphen rule to drop only predicate-position cases#121
Merged
blader merged 1 commit intoMay 27, 2026
Merged
Conversation
The original rule said to strip hyphens from compound modifiers
uniformly. That produces ungrammatical English in attributive position:
"a high quality report" is wrong; "a high-quality report" is correct.
The actual AI tell is uniform hyphenation INCLUDING in predicate
position ("the report is high-quality"). Humans typically hyphenate
attributive use only and drop the hyphen when the compound follows
the noun.
Reworded the Problem statement to spell out the attributive-vs-
predicate distinction. Reworked the Before/After so the same compound
modifiers appear in both positions, demonstrating that only the
predicate-position hyphens get dropped.
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.
Narrow Section 26 hyphen rule to drop only predicate-position cases
The problem
Section 26 currently tells writers to strip hyphens from compound modifiers like
well-known,high-quality,real-time,data-driven,client-facinguniformly. The Before/After example demonstrates exactly that — every hyphenated compound modifier loses its hyphen, regardless of position.That produces ungrammatical English in attributive position:
a high-quality reportis correct (standard attributive hyphenation)a high quality reportis wrongA user (or an automated tool) applying the rule literally to text that uses standard attributive hyphenation will end up with grammatically incorrect prose.
What the actual AI tell is
The pattern that signals LLM output isn't any hyphenation of compound modifiers — it's uniform hyphenation that doesn't distinguish position:
the report is high-qualityanda high-quality report(hyphen in both)the report is high qualitybuta high-quality report(hyphen only in attributive)Humans hyphenate inconsistently — typically only when the compound is attributive (sits before the noun it modifies) and often drop the hyphen in predicate position (after a linking verb).
Proposed change
Reword the Problem statement to spell out the attributive-vs-predicate distinction:
Rework the Before/After so the same compound modifiers appear in both positions, and only the predicate-position hyphens get dropped:
Before:
After:
This makes the contrast actually illustrate the human-vs-LLM pattern: the attributive uses keep their hyphens (correct English); only the predicate uses lose them (where the AI tell lives).
Context
This was caught during an external code review on a private repo where this skill is vendored as a dependency. The reviewer (independent of either the vendor or the maintainer) flagged the over-broad rule because it would corrupt prose if humanizer is applied as instructed to writing that uses standard attributive hyphenation.
Happy to adjust the wording or examples if you'd prefer a different framing — the main concern is that the rule as written can produce ungrammatical output.