I was scrolling LinkedIn yesterday and counted six posts in a row that started with the word "Unlock."
Unlock your potential. Unlock the secrets of B2B SaaS. Unlock this thread.
It’s the digital equivalent of elevator music. We’ve all seen it: the perfectly structured, emoji-laden, utterly soulless engagement bait that screams, "I typed a one-sentence prompt into ChatGPT and copied the first output."
We are living through a weird transition. The "thread-boi" virus of 2021 has mutated into the "ChatGPT-boi" epidemic. Creators and founders are discovering that AI can generate infinite content, so they’re using it to generate infinite ideas.
And it’s killing their brands.
Here’s the reality check: AI can write a hook, but it can’t tell your origin story. If you rely on AI for your core ideas, you become a commodity. But if you use it to amplify your unique experiences, you build a cult following.
Here is how you actually scale your creativity without sounding like a generic bot.
The 80/20 Rule of AI Content 📦
The biggest mistake creators make is outsourcing the soul of their content.
The soul is the messy, human part. It’s the weird anecdote about a client call that went off the rails. It’s the frustration you felt when your code wouldn't compile at 2 AM. It’s your specific, highly-opinionated worldview.
You cannot automate the soul.
What you can automate is the packaging. The packaging is the 280-character limit on X. It’s the bulleted formatting for LinkedIn. It’s the SEO-optimized H2 tags for your blog.
Spend 80% of your time living interesting things and documenting the raw stories. Spend 20% of your time letting AI reformat those stories for distribution.
My Workflow for Scaling Storytelling ⚙️
I don’t stare at blank screens anymore. Instead, I open a voice memo app while I’m walking the dog and just rant about something I noticed in the industry.
I send that messy, rambling audio file to an n8n webhook. The automation transcribes it using Whisper, and then passes it to an OpenAI node to format it into platform-specific drafts.
But here is the secret sauce: you have to aggressively constrain the AI so it doesn't "help" you too much.
// Runs in an n8n Code Node: Prepares a raw Whisper transcript for the formatting LLM
const rawTranscript = $input.item.json.transcript;
// We inject a strict negative prompt to kill the "ChatGPT voice" before it starts
const systemPrompt = `You are a formatting editor for Brendan's personal blog.
Your job is to take the following raw voice transcript and format it for LinkedIn and Twitter.
CRITICAL RULES:
1. DO NOT change the core story, the opinions, or the tone.
2. DO NOT use the words: delve, unlock, supercharge, landscape, or tapestry.
3. DO NOT add a generic intro or conclusion.
4. Keep the first-person perspective. Keep it punchy.`;
return {
json: {
messages: [
{ role: "system", content: systemPrompt },
{ role: "user", content: `Raw transcript: ${rawTranscript}` }
],
temperature: 0.3
}
};
Notice the low temperature (0.3) and the explicit negative constraints in the prompt. You have to treat the AI like an over-eager intern who just discovered a thesaurus—keep the temperature low so it sticks to the facts, and explicitly ban the cringe vocabulary.
Constraints Create Character 🎭
When you give an AI a blank canvas ("Write a post about marketing"), it averages out the internet. It gives you the most statistically probable, boring answer possible.
"If you ask an AI to write a story from scratch, it averages out the internet. If you give it your messy, highly-specific story and ask it to fix the grammar, it scales you."
Stop asking AI what to write. Start telling it how to format what you already wrote.
Build a personal style guide. Feed the AI 10 of your best-performing, hand-written posts and tell it to extract the formatting rules. Then, every time you pass it a raw brain-dump, force it to apply those specific rules.
The Commodity vs. Cult Divide ⚔️
Anyone can prompt an LLM for "10 tips on audience growth." That information is now worth exactly zero dollars. It is a pure commodity.
But nobody else can tell the story of how you accidentally deleted your production database on a Friday afternoon, the panic you felt, and the specific script you wrote to fix it.
People don't follow creators for information anymore. They follow them for perspective, personality, and proof of work.
The next time you sit down to create, don't open ChatGPT first. Open your notes app. Write down something real that happened to you this week. Write down the tension, the mistake, or the weird observation.
Then, and only then, let the machines do the formatting.