Rewriting Is a Prompt with a Dial
the rewrite loop
Part of: Tone Rewriter
A tone rewriter takes one piece of text and hands it back saying the same thing in a different voice. "hey can u send that over?" becomes "Could you please send that over when you have a moment?" Same request, different tone. By the end of this project you'll have a tool that does this for any text and any tone you choose. The one job, stated precisely Every rewrite has two halves, and they must never blur together. First, keep the meaning: facts, names, numbers, and intent stay identical. Second, change the style: word choice, formality, warmth, and sentence length are all fair game. That split is the whole product. A rewriter that changes the meaning is broken. A rewriter that changes nothing is useless. You're building a dial that only moves the style axis. The same loop as every AI product Rewriting follows the usual loop. Take input (the text plus a chosen tone), build a prompt, call the model, read the reply, ship it. The one part that's specific to this product is the prompt, where you tell the model exactly what to keep and what to change. The instructions live in a system prompt (the standing rules). The text to rewrite rides in a user message: Notice the shape. The tone a
Challenge: Assemble the Rewrite Request