DEV Community

eternalsix
eternalsix

Posted on • Originally published at eternalsix.com

AI for content marketing: 7 workflows that work

AI for Content Marketing: 7 Workflows That Actually Work (And 3 That Wasted My Time)

Last October I shipped 4,200 product description pages in 11 days using a Claude pipeline stitched together with Python, a Airtable base, and more duct tape than I care to admit. Revenue from organic search on those pages crossed $40k within 60 days. I did not write a single word manually. That experience broke my prior assumptions about what "AI content" meant — and rebuilt them from scratch. Here is what I learned about which workflows actually compound, and which ones just feel productive.


1. Structured Data → Article: The Programmatic Content Engine

If you have structured data — product catalogs, job listings, location pages, comparison tables — you already have a content factory waiting to be activated. The workflow is not "ask ChatGPT to write a blog post." It is: design a schema, extract entities, build a prompt template that treats each entity as a variable, run it through a model at batch scale, validate output programmatically, and publish via API.

The key insight most people miss: the prompt template is code. Version it. Test it. Diff it. When I changed one sentence in the system prompt for those product pages, output quality shifted enough to move conversion rates 12%. I caught it because I was running evals — not because someone read 4,200 pages.

Tools worth knowing: Claude's Batch API cuts cost by 50% for non-real-time jobs. Combine it with a classifier that flags low-confidence outputs for human review, and you get a pipeline that scales without becoming a liability.


2. Semantic Clustering for Topic Authority

Content calendars built from keyword spreadsheets are dead. The modern workflow starts with a semantic map, not a keyword list.

Pull your seed keywords into an embedding model (text-embedding-3-small is cheap enough to run on thousands of terms). Cluster them with HDBSCAN or k-means. What you get back is a topic graph — clusters of semantically related concepts with measurable distance between them. Now you can see which clusters you have content coverage in, which are adjacent opportunities, and which competitors own entirely.

The content plan writes itself: identify the three clusters where you have partial coverage and high commercial intent, then build a hub-and-spoke structure within each. Let the model draft the spokes. Write the hub yourself or heavily edit it — hubs are where your actual expertise needs to show.

This workflow replaced two weeks of manual content strategy with an afternoon of Python. The output is defensible, data-backed, and reproducible every quarter.


3. The Repurposing Pipeline: One Long Asset, Twelve Touchpoints

Most teams do repurposing wrong: they paste a blog post into ChatGPT and ask for "a LinkedIn post." The output is predictably bland because the input is unstructured.

The right workflow treats your source content as a structured knowledge base. When you write a long-form piece, tag it with entities, claims, statistics, and frameworks as you go — even just a simple JSON block at the top. Then your repurposing prompts extract specific nodes rather than summarizing the whole thing.

Example: a 3,000-word technical deep-dive on database indexing strategies gets tagged with {claims: [...], code_examples: [...], counterintuitive_facts: [...], frameworks: [...]}. A LinkedIn post prompt that says "write a post using the most counterintuitive fact from this article" will outperform "summarize this for LinkedIn" every single time.

Build this as a reusable function. Pass the tagged source, pass the target format and platform, get back a draft. I run this as a small FastAPI service that my team hits from Slack. Takes 90 seconds to go from "we published a new post" to "here are eight channel-ready variants."


4. AI-Assisted Research and Brief Generation

Writing is not the bottleneck. Research is. Most content briefs are written from memory and gut feel. The workflow I use now:

  1. Pull the top-20 ranking pages for a target query via a SERP API.
  2. Scrape and chunk them.
  3. Run a structured extraction prompt: "What unique claims does this page make that are not present in the others? What questions does the reader probably have that this page does not answer?"
  4. Aggregate across all 20 pages.
  5. Output a structured brief: content angle, gaps to exploit, required entities, suggested structure, and a list of claims that need primary sourcing.

A human still writes the brief — but they are working from signal, not noise. Average research time dropped from three hours to 40 minutes for my team. Quality of the resulting content went up because writers knew exactly which angles were differentiated before they started.


5. Brand Voice Calibration and Enforcement

This is the workflow most teams skip, then wonder why their AI content feels off-brand.

The process: collect 20-30 pieces of your best-performing, most on-brand content. Run a voice extraction prompt that identifies sentence rhythm, preferred syntactic patterns, vocabulary choices, metaphor density, and what the writing explicitly avoids. Store the output as a voice spec — a structured document, not just adjectives like "conversational" and "authoritative."

Then use that spec two ways: as a system prompt prefix for generation, and as an evaluation rubric for scoring outputs before they publish. I score outputs on a 1-5 scale across six voice dimensions. Anything below a 3.5 average goes back for a revision pass. This adds about 8 seconds per piece and catches roughly 30% of drafts that would have required significant editing.

The voice spec itself needs maintenance — update it quarterly as your brand evolves. Treat it like a config file.


The Workflow Evaluation Checklist

Before you build any AI content workflow, run it through this checklist:

  • Repeatability: Can you run this 1,000 times and get consistent quality? If not, you have a demo, not a workflow.
  • Eval coverage: Do you have automated checks on output quality, factual claims, and brand compliance before human review?
  • Failure mode clarity: What happens when the model produces garbage? Is it caught before it ships?
  • Cost per unit: Have you calculated the full cost including API calls, compute, and human review time per published piece?
  • Feedback loop: Is there a mechanism to route publishing outcomes (traffic, conversions, engagement) back into prompt iteration?
  • Version control: Are your prompts versioned? Can you roll back a prompt change like you would roll back a code deploy?
  • Ownership: Who owns this workflow? AI content pipelines rot when no one is accountable for their maintenance.

If you cannot answer all seven, the workflow is not production-ready — it is a prototype you will spend three months firefighting.


6. Content Performance Analysis and Iteration Loops

Publishing is not the end of the workflow. Most teams treat it like it is.

The loop that compounds: export performance data weekly (GSC, GA4, engagement metrics), feed it into a structured analysis prompt alongside the original content, and ask: "Given this performance data, what specific changes to this content would most likely improve [target metric]?" The model cannot make SEO or business decisions — but it is excellent at pattern-matching across a large dataset of content-performance pairs and surfacing hypotheses worth testing.

I run this on a Saturday morning script. By Monday I have a prioritized list of refresh candidates with suggested changes attached. Human reviews the list in 20 minutes, picks three to act on, and queues them for execution. This cadence has produced better compounding returns than any new content I have published — because it improves what is already indexed and trusted.


7. Automated Internal Linking at Scale

No one wants to do internal linking manually. No one should have to.

The workflow: embed your entire published content library. When a new piece is drafted, find the 30 most semantically similar existing pages. Pass those candidates plus the draft to a model that identifies natural insertion points and anchor text suggestions. Output a linking recommendation block that an editor reviews in two minutes.

At scale — say, 500+ published pages — the manual version of this job would take a full-time person. The automated version takes about four seconds per new piece and consistently surfaces links editors would not have found by memory.


How AI Handler Approaches This

Every workflow I have described above involves the same core problem: you need to move data between systems, route it through one or more models, apply conditional logic based on outputs, and route results somewhere actionable. Right now most teams solve this with spaghetti Python scripts, Zapier chains that break monthly, or n8n flows that only the person who built them can maintain.

AI Handler is the unified AI workflow tool I am building to solve exactly this. It treats AI workflows the way engineers treat CI/CD — composable, versioned, observable, and owned. You define workflow graphs, wire in your models and data sources, set eval conditions, and ship. No duct tape.

I have been running my own content pipelines on early versions of it for four months. The programmatic content engine, the semantic clustering workflow, the repurposing pipeline — all of them live in AI Handler now instead of scattered across three repos and a Notion doc.

AI Handler is launching June 2026. If you are building content workflows at scale and want early access, email ceo@eternalsix.com. I am onboarding a small group of builders who want to help shape the product and are willing to share what is working and what is not. No pitch decks, no demos for demos' sake — just builders working on real problems together.

Top comments (0)