✦ Outline Generator

Stop staring at a blank page.
Get your outline in seconds.

Enter your topic, choose your content type and length. Claude AI builds you a complete, ready-to-write outline — title, hook, sections, key points, and SEO keywords. Free. No signup.

Blog posts, essays, reports & scripts Section-by-section key points SEO keywords included Powered by Claude AI
Topic or title idea
0 / 150 words
Content type
Target length
Target audience (optional)

Ctrl + Enter to generate

Your outline is ready

How it works

From topic to outline in three steps

Forgely's AI outline generator uses Claude to understand your topic deeply and build a structure that makes sense for your content type — not a generic template.

Step 01

Describe your topic

The more specific your description, the better the outline. "How to start dropshipping in 2026 on a $500 budget" produces a much more useful outline than just "dropshipping."

Step 02

Choose type and length

Blog posts get SEO-optimized H2 headings. Essays get argument-driven sections. Reports get executive summary structure. YouTube scripts get spoken-delivery pacing.

Step 03

Write from the outline

Copy your outline, paste it into your doc, and fill in each section. The blank page problem is solved before you start.

Why Forgely

Outlines that actually help you write

📝

Real section headings

Not "Introduction" and "Body" — actual headings specific to your topic that work as H2 tags in your finished article.

🎯

Key points per section

Each section includes 2–4 specific things to cover — real points, not reminders to "add an example here."

✍️

Opening hook included

The AI writes an actual opening hook for your content — not "start with a statistic," but the actual sentence.

📊

Word targets per section

Each section comes with a word-count target so you know how much to write before moving on. Pacing built in.

🔍

SEO keywords

Blog post outlines include primary and secondary keyword suggestions — realistic phrases your readers actually search for.

🔒

Private by design

Your topic is processed and not stored. No account, no browser extension, no data collection.

FAQ

Outline generator questions answered

Is the AI outline generator free?

Yes, completely free. No account, no subscription, no credit card. Enter your topic and get a structured outline instantly.

What types of content can I outline?

Blog posts and articles, academic essays, business reports, and YouTube scripts. Each type uses a different structure optimized for that format — essay outlines are argument-driven, blog outlines are SEO-optimized, script outlines are built for spoken delivery.

How detailed is the outline?

Each outline includes a suggested title, an opening hook, H2 section headings with specific key points to cover in each section, word targets per section, conclusion guidance, and SEO keyword suggestions for blog posts.

Can I use this for SEO content?

Yes. Blog post outlines are structured with SEO in mind — section headings are written as searchable phrases, and the output includes keyword suggestions your readers would realistically search for.

What if I want to change the outline?

The outline is a starting point, not a contract. Copy it, adjust the headings and key points to match your knowledge and angle, and write from there. Most writers find the AI outline covers 80% of what they need and they adjust 20%.

Does Forgely store my topic or outline?

No. Your topic is sent directly to the AI for processing and is not stored on any server. Privacy-first by design.

}; try { const res = await fetch(WORKER_URL, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payload) }); const data = await res.json(); if (!res.ok || data.error) { showError(data.error || 'Something went wrong. Please try again.'); return; } renderOutline(data); outputSection.classList.add('visible'); outputSection.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); copyBtn._outlineData = data; } catch { showError('Network error. Please check your connection and try again.'); } finally { generateBtn.disabled = false; generateBtn.innerHTML = ' Generate Outline'; } } topicInput.addEventListener('input', updateWordCount); generateBtn.addEventListener('click', generate); topicInput.addEventListener('keydown', e => { if ((e.ctrlKey || e.metaKey) && e.key === 'Enter') { e.preventDefault(); generate(); } }); document.getElementById('tryExample').addEventListener('click', () => { topicInput.value = EXAMPLE; updateWordCount(); clearError(); outputSection.classList.remove('visible'); }); copyBtn.addEventListener('click', () => { const text = copyBtn._outlineData ? buildPlainText(copyBtn._outlineData) : ''; navigator.clipboard.writeText(text).then(() => { copyBtn.textContent = 'Copied!'; setTimeout(() => { copyBtn.textContent = 'Copy outline'; }, 2000); }); }); clearBtn.addEventListener('click', () => { topicInput.value = ''; updateWordCount(); clearError(); document.getElementById('audience').value = ''; outputSection.classList.remove('visible'); document.getElementById('outlineTitle').style.display = 'none'; document.getElementById('outlineHook').style.display = 'none'; document.getElementById('outlineConclusion').style.display = 'none'; document.getElementById('seoBlock').style.display = 'none'; sectionsList.innerHTML = ''; topicInput.focus(); }); updateWordCount();