# Why Wh- Sentence Starters Are Considered Problematic in Stop Slop

> Discover why Wh- sentence starters are problematic in writing. Learn how they soften statements, delay information, and create a passive tone, hindering directness and active voice.

- Repository: [Hardik Pandya/stop-slop](https://github.com/hardikpandya/stop-slop)
- Tags: deep-dive
- Published: 2026-05-26

---

**Wh- sentence starters are considered problematic because they function as indirect preambles that soften statements, delay core information, and create a passive tone contrary to the skill's goals of directness and active voice.**

The Stop Slop repository provides explicit guidelines for eliminating mechanical writing patterns, including the specific rule against Wh- sentence starters documented in [`references/structures.md`](https://github.com/hardikpandya/stop-slop/blob/main/references/structures.md). This article examines the technical rationale behind the restriction and demonstrates how to apply the restructure rule according to the source code.

## The Wh-Starter Rule in Stop Slop

According to the [`references/structures.md`](https://github.com/hardikpandya/stop-slop/blob/main/references/structures.md) file, the rule is clearly defined:

> "Sentences starting with What, When, Where, Which, Who, Why, How – **Restructure. Lead with the subject or the verb**."

This directive appears at lines 11–13 and establishes that any sentence beginning with these interrogative words requires restructuring. The same guidance appears in the **Quick Checks** section of [`SKILL.md`](https://github.com/hardikpandya/stop-slop/blob/main/SKILL.md) at lines 37–40:

> "Sentence starts with a Wh‑ word? Restructure it."

## Three Reasons Wh-Openers Weaken Your Writing

The Stop Slop skill identifies Wh- sentence starters as structural clichés that conflict with three core writing principles:

### Crutch-Like Framing

Wh-openers act as *question-style* preambles that soften statements before presenting the core claim. Phrases like *"What makes this hard is…"* add an unnecessary layer of indirection, functioning as rhetorical crutches that dilute the impact of the statement.

### Reduced Directness

The skill's **Directness** dimension, defined in [`SKILL.md`](https://github.com/hardikpandya/stop-slop/blob/main/SKILL.md), rewards statements that deliver information immediately. Wh- sentence starters delay the subject and verb, forcing readers to parse through interrogative framing before reaching the actual content. This structural delay reduces readability scores within the Stop Slop framework.

### Weakened Voice

Leading with Wh-words typically forces a passive or impersonal tone. The Stop Slop skill emphasizes **active voice** and placing the reader "in the room." Subject-first constructions create immediate engagement, while Wh-openers create distance between the writer and the assertion.

## How to Restructure Wh- Starters

The solution implemented in Stop Slop requires moving the subject or verb to the front position and eliminating the interrogative preface entirely. The following transformations demonstrate the restructure rule applied to common Wh- sentence starters:

| Original (Wh-starter) | Rewritten (Subject-first) |
|-----------------------|----------------------------|
| What makes this project challenging is the lack of clear requirements. | The project is challenging because requirements are unclear. |
| Why did the team miss the deadline? The timeline was unrealistic. | The team missed the deadline because the timeline was unrealistic. |
| How can we improve user onboarding? By simplifying the sign-up flow. | We can improve user onboarding by simplifying the sign-up flow. |
| When the server goes down, users lose access. | Users lose access when the server goes down. |
| Who decided to change the pricing model? The product lead. | The product lead decided to change the pricing model. |
| Where do we see the biggest performance bottleneck? In the database queries. | The biggest performance bottleneck is in the database queries. |
| Which features should we prioritize? Those that drive revenue. | We should prioritize features that drive revenue. |

## Implementation in the Source Files

The Wh- sentence starter rule integrates into the Stop Slop validation system through two primary locations:

- [`references/structures.md`](https://github.com/hardikpandya/stop-slop/blob/main/references/structures.md): Contains the detailed structural ban list and the specific instruction to restructure sentences starting with What, When, Where, Which, Who, Why, and How.
- [`SKILL.md`](https://github.com/hardikpandya/stop-slop/blob/main/SKILL.md): Houses the **Quick Checks** section that serves as a rapid reference for identifying violations, specifically flagging Wh- words at the start of sentences for immediate restructuring.

## Summary

- Wh- sentence starters (what, when, where, which, who, why, how) are flagged in Stop Slop as structural clichés requiring immediate revision.
- These openers create **crutch-like framing** that adds unnecessary indirection before core claims.
- They violate the **Directness** dimension by delaying subject and verb placement, reducing readability.
- The recommended fix is **subject-first construction**, moving the actor or action to the sentence's opening position.
- Rules are documented in [`references/structures.md`](https://github.com/hardikpandya/stop-slop/blob/main/references/structures.md) lines 11–13 and [`SKILL.md`](https://github.com/hardikpandya/stop-slop/blob/main/SKILL.md) lines 37–40.

## Frequently Asked Questions

### What specific Wh-words does Stop Slop target?

The [`references/structures.md`](https://github.com/hardikpandya/stop-slop/blob/main/references/structures.md) file explicitly lists **What, When, Where, Which, Who, Why,** and **How** as the prohibited sentence starters. This covers all primary English interrogative words that function as indirect openers.

### How do Wh- sentence starters affect the Directness score?

According to the Stop Slop scoring table in [`SKILL.md`](https://github.com/hardikpandya/stop-slop/blob/main/SKILL.md), the **Directness** dimension penalizes any construction that delays core information. Wh- sentence starters force readers through a rhetorical preamble before reaching the subject, resulting in lower directness ratings compared to subject-first alternatives.

### Can Wh-questions ever be used in Stop Slop-approved writing?

The guidelines in [`references/structures.md`](https://github.com/hardikpandya/stop-slop/blob/main/references/structures.md) and [`SKILL.md`](https://github.com/hardikpandya/stop-slop/blob/main/SKILL.md) apply specifically to declarative statements that begin with Wh-words functioning as indirect framing devices. Genuine questions formatted as questions (ending with question marks) fall under different rhetorical considerations, though declarative sentences masquerading as questions remain subject to the restructure rule.

### Where can I find examples of Wh-starter transformations?

The [`references/examples.md`](https://github.com/hardikpandya/stop-slop/blob/main/references/examples.md) file contains before-and-after transformations illustrating the restructure rule in practice. Additionally, [`references/structures.md`](https://github.com/hardikpandya/stop-slop/blob/main/references/structures.md) provides the canonical list of structural clichés, while [`SKILL.md`](https://github.com/hardikpandya/stop-slop/blob/main/SKILL.md) offers the quick reference validation rules.