How to Use ChatGPT for Writers

ChatGPT is a fast, low‑cost assistant that can spark ideas, polish prose, and keep a writing project on schedule. In this tutorial we walk through each step, from setting up an account to creating a full chapter outline. Follow the screenshots and code blocks to make the most of the model for fiction, nonfiction, and copywriting.

Table of contents

1. Set up ChatGPT and tools

Create an OpenAI account

Visit platform.openai.com and register with an email address. Verify the account and add a payment method. The free tier includes $5 of usage each month, which is enough for light drafting.

OpenAI signup screen
OpenAI signup page – fill in your email and set a password.

Choose a client

Two popular options are the web chat at chat.openai.com and the API accessed via curl or a language‑specific SDK. For most writers the web chat is simplest.

# Example: test the API with curl
curl https://api.openai.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model":"gpt-4o-mini",
    "messages":[{"role":"user","content":"Write a 100‑word mystery hook."}]
  }'

Install a writing‑oriented plugin

Obsidian’s Text Generator plugin (free) lets you send a selected block to ChatGPT and insert the response directly into your markdown file.

2. Prompt basics for writers

Structure a clear request

Effective prompts include three parts: role, task, and constraints. Example:

You are a suspense novelist. Write a 250‑word opening scene set in a subway station at midnight. Use short sentences and avoid adverbs.

Use temperature and token limits

Set temperature to 0.7 for creativity, 0.2 for factual consistency. Limit max_tokens to control length. In the web UI, click the three‑dot menu → “Settings” → “Response length”.

3. Generate a story opening

Step‑by‑step prompt

  1. Define setting and protagonist.
  2. State the inciting incident.
  3. Ask for exactly 300 words.
Write a 300‑word opening for a sci‑fi thriller. Setting: a neon‑lit cargo dock on Mars. Protagonist: Lina, a former pilot turned smuggler. Inciting incident: a mysterious crate arrives with a ticking timer.

Result example

Below is a condensed version of the model’s output.

Dust swirled around the rusted hulls as Lina checked the seals. The crate pulsed a soft blue, counting down…
First 20 words of the generated opening.

Refine with feedback

Copy the paragraph and ask for a rewrite with “more sensory detail and less dialogue”. The model will adjust while keeping the same plot beat.

4. Build a novel outline

Three‑act skeleton

Prompt the model for a high‑level structure first.

Outline a three‑act structure for a 80,000‑word fantasy novel about a reluctant heir who must unite fractured kingdoms.

Expand to chapter bullets

Take each act and request chapter‑by‑chapter points.

Provide 12 chapter titles and one‑sentence summaries for Act 2 of the outline above. Aim for 5,000‑word chapters.

Comparison table of outline depth

DepthPromptTypical output
High‑level“Three‑act outline”3 bullet points
Mid‑level“Chapter titles”12 titles + summaries
Low‑level“Scene list for Chapter 4”8‑10 scene beats

5. Edit and polish text

Grammar check

Ask the model to act as a copy editor.

Proofread the following paragraph and correct any grammar or punctuation errors. Keep the author's voice.

Style tightening

Request a word‑count reduction.

Rewrite this 450‑word paragraph in 250 words. Remove filler and replace weak verbs with stronger alternatives.

Dialogue polishing

Provide speaker tags and ask for natural speech.

Make the dialogue between Maya and the AI sound like a realistic tech‑support call. Keep the technical details.

6. Integrate ChatGPT into your daily workflow

Morning idea sprint (15 min)

Midday outline checkpoint (30 min)

Evening polish (20 min)

7. Tool comparison

FeatureChatGPT WebObsidian Text GeneratorNotion AI
CostFree tier $5/mo, pay‑as‑you‑go thereafterFree plugin, API cost appliesFree for personal use, $8/mo for team
InterfaceBrowser chat, no codeInline markdown, keyboard shortcutsBlock‑level AI, visual editor
CustomizationTemperature & token settingsPrompt templates, system messagesPre‑set tones (creative, professional)
ExportCopy‑paste onlyDirect to markdown fileExport to PDF/HTML
Best forQuick ideas, one‑off queriesLong‑form drafting in notesCollaborative docs and brainstorming

FAQ

What is the best prompt to start a story with ChatGPT?

Begin with a clear setting, character goal, and conflict. Example: “Write a 500‑word opening scene set in a rainy Tokyo marketplace where a teenage hacker discovers a hidden AI.”

Can ChatGPT help me outline a novel?

Yes. Ask for a three‑act structure, then request chapter‑by‑chapter bullet points. Refine each chapter with specific word‑count goals.

How do I avoid generic language in AI‑generated text?

Add style constraints. Tell ChatGPT to use vivid verbs, limit adjectives, and emulate a chosen author’s voice.

Is it safe to share my manuscript with ChatGPT?

OpenAI does not store personal data from API calls, but avoid uploading copyrighted text in public demos. Use the API with a private key for full control.

What free tools work with ChatGPT for writers?

Notion AI, Obsidian’s Text Generator plugin, and the free ChatGPT web interface all integrate smoothly with writing workflows.

Using ChatGPT as a co‑author can speed up brainstorming, tighten prose, and keep projects on track. Start with the simple prompts above, then experiment with temperature and custom roles. The more you practice, the more the model becomes a reliable part of your writer’s toolkit.

Get tools like this in your inbox
One useful tool per week. No spam. Unsubscribe anytime.