How to Build a Multi-Agent SEO Pipeline (Case Study)

We built a fully automated 7-agent content pipeline — from keyword research to published article — running on a single $10 VPS. Here's the exact architecture, agent breakdown, costs, and what we learned. This is 100% dogfood: we're using it to build this very site.


Table of Contents

The Problem

Content marketing at scale is broken. A single high-quality technical article takes 6-12 hours of research, writing, editing, formatting, and promotion. Most teams either publish infrequently or sacrifice quality for volume.

We wanted a different approach: automate the pipeline, not the quality. Use AI agents to handle research, drafting, formatting, and promotion — while humans stay in the loop for editorial decisions, strategy, and quality control.

This case study documents exactly how we built a 7-agent SEO content pipeline using Hermes Agent as the orchestration layer. The pipeline runs on a single VPS, costs under $100/month to operate, and can produce a research-backed, SEO-optimized article from concept to publication in under 2 hours of wall clock time.

Architecture Overview

RESEARCH SERP Agent Keyword Discovery autocomplete · trends Source Agent Research Collection docs · repos · discussions PLANNING Brief Agent Content Planning outline · keywords · brief GATE Human Review PRODUCTION Draft Agent Article Writing section-by-section + citations Visual Agent Diagrams & Images SVG · tables · social cards ⟷ PARALLEL ⟷ PUBLISHING Doc Agent HTML · Schema · sitemap Distribution Agent social · RSS · email · ping Live Article qantcore.space/articles/

Each agent is a Hermes Agent skill — a reusable, parameterized workflow that can be invoked independently or chained as part of a larger pipeline. The orchestrator (built with Hermes' Kanban and cron systems) manages dependencies, parallel execution, and retry logic.

Tech Stack

Component Technology Monthly Cost
Orchestration Hermes Agent (Nous Research) $0 (open source)
Web Server Caddy $0 (open source)
Hosting Linux VPS (4GB RAM, 2 vCPU) $10
LLM API OpenRouter / direct providers $20-50
Search API Web search (configurable provider) $10-20
Storage SQLite + static HTML files $0
Total $40-80/mo

1. SERP Agent — Keyword Discovery

The pipeline starts with research. The SERP Agent performs automated keyword discovery across multiple dimensions:

Output: A structured keyword brief with search intent, estimated competition, and recommended article topics. This feeds directly into the content calendar.

2. Source Agent — Research Collection

Once a topic is selected, the Source Agent gathers authoritative references:

Output: A curated source document with URLs, key quotes, statistics, and credibility scores. The Brief Agent uses this to build the article outline.

3. Brief Agent — Content Planning

The Brief Agent synthesizes keyword research and source data into a structured content brief:

Gate: This is the human review step. The brief is reviewed and approved before the Draft Agent writes the article. Quality control happens here, not after 2,000 words have been written.

4. Draft Agent — Article Writing

The Draft Agent generates the full article from the approved brief:

Quality controls: Every claim is tagged with its source. The Draft Agent has access to the Source Agent's research document and must cite facts. If a source is unavailable for a claim, it flags it as "needs verification" rather than inventing a citation.

5. Visual Agent — Diagrams & Images

The Visual Agent creates supporting graphics for each article:

For our dark-themed tech site, visuals use a consistent color palette (green accent on dark backgrounds, matching the site theme).

6. Doc Agent — Formatting & Publication

The Doc Agent handles everything between "article written" and "article live":

Output: A fully published, SEO-optimized article page on qantcore.space.

7. Distribution Agent — Promotion

The final agent pushes the article into distribution channels:

Analytics feedback: The Distribution Agent also monitors initial engagement (clicks, impressions, shares) and reports back to the SERP Agent for iterative keyword refinement.

Orchestration with Hermes Agent

The magic is in the orchestration. Each agent is a Hermes skill — a SKILL.md file with YAML frontmatter describing the agent's behavior, inputs, outputs, and tool requirements. The orchestrator uses Hermes' native capabilities:

Kanban Orchestrator

Hermes has a built-in Kanban-based task decomposition engine. For each article, the orchestrator:

Cron Scheduling

Recurring tasks are scheduled via Hermes' cronjob system:

Parallel Subagent Execution

With delegate_task, agents can run in parallel. For example, after the Brief is approved, the Draft Agent and Visual Agent can work simultaneously — the diagram doesn't need the full article text, just the outline.

Cost Breakdown

Item Monthly Per Article
VPS (4GB, 2 vCPU) $10 $0.33
LLM API calls $30 $1.00
Search API (Tavily / Exa) $15 $0.50
Domain + DNS $1 $0.03
Total per article ~$1.86

Compare this to the cost of a freelance technical writer ($200-500/article) or the time cost of writing in-house (6-12 hours × $50-100/hr = $300-1200). Even with human review time (30 minutes per brief), the pipeline delivers a 10-50× cost reduction.

Early Results

As of May 2026, the pipeline is live and producing content for qantcore.space. Early metrics:

We'll update this section as more data comes in. Check back for traffic, rankings, and conversion metrics.

How to Replicate This

Want to build your own multi-agent SEO pipeline? Here's the high-level roadmap:

  1. Install Hermes Agent — Follow our Hermes Agent Setup Guide (coming soon) for a zero-to-running installation on any Linux VPS.
  2. Configure tools — Set up web search provider, file system access, and LLM provider in config.yaml.
  3. Create skills — Write SKILL.md files for each agent in your pipeline. Start with SERP and Source, then build up.
  4. Test the loop — Run a single article end-to-end manually. Identify bottlenecks and refine prompts.
  5. Schedule — Set up cron jobs for recurring execution. Start with weekly SERP runs and build from there.
  6. Iterate — Monitor output quality, adjust agent prompts, and add new agents gradually.

The full pipeline configuration (skills, prompts, cron schedules) will be open-sourced once stable. Follow QantCore for updates.

Pro Tips


Key Takeaways

  • A 7-agent SEO pipeline is feasible on a single VPS for under $100/month
  • Hermes Agent's Kanban orchestrator and cron system make multi-agent orchestration practical without additional infrastructure
  • Quality is controlled at the brief stage, not after writing — this is the single most important design decision
  • The pipeline doesn't replace human judgment; it amplifies it. Human review shifts from "write everything" to "approve strategy"
  • Total cost per article: ~$2. At 10 articles/month, that's $20 in direct costs vs. $2,000-5,000 for traditional content production