惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
量子位
V
V2EX
S
SegmentFault 最新的问题
月光博客
月光博客
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
博客园_首页
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
Y
Y Combinator Blog
The Cloudflare Blog
C
Check Point Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
B
Blog
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
I tried generating 1,000 SEO pages for a client... and br...
codefreex · 2026-04-28 · via Hacker News: Show HN

Hey everyone,

I’ve been working on something for the past few weeks and wanted to share the messy reality of trying to scale programmatic SEO on WordPress.

A little while ago, a client asked a simple question: "Can we create landing pages for every single city we serve?"

Simple request. Until you do the math. 200 cities × 5 services = 1,000 pages.

I tried the usual approaches: -> Writers → way too slow and expensive. -> AI writers → content felt repetitive and robotic at that scale. -> WP Import tools → felt like a massive, inflexible workaround.

Everything I tried just felt wrong.

So I stopped thinking about "writing" pages, and started thinking about "generating" them as an infrastructure problem. What if pages weren't written, but generated dynamically from a spreadsheet?

I built a small internal tool inside WordPress to test this out. I uploaded a simple CSV: City | Service Then I created one single template: "Best {Service} in {City}"

I hit generate. First run: • ~50 pages created • ~2,000 rows queued up perfectly. • Zero manual writing.

That’s when it clicked. This isn’t just content creation; this is SEO infrastructure. Marketplaces and directories have been doing this for years, but standard WordPress sites usually don't.

So, I decided to package my internal tool into an actual plugin called PageForge.

The part no one talks about (where things broke)

Generating 50 pages is easy. Scaling to thousands is where everything starts falling apart.

Issue #1: Duplicates were burning my API money If a URL slug already existed, the system would still ping the AI to generate content, fail to create the page, and eat my API credits anyway. Fix in my latest push (v1.0.5): It now checks for duplicate slugs before running any AI execution.

Issue #2: Failed rows just disappeared into the void This was painful. A generation row would fail, and it would just vanish. I had no idea what didn't publish. Fix: Now, failed rows stay visible in the queue and explicitly show why they failed (empty fields, duplicates, etc.).

Issue #3: Bulk generation was incredibly unstable Some rows retried forever, causing server timeouts. Some just stopped randomly. Fix: I had to rebuild a proper queue and retry system that actually behaves predictably on standard WP hosting.

Current state of the project: • 50 pages live on the test run. • ~1,946 queued. • Running fully inside WordPress. • Added optional AI ({seo_content}) just in case users want to pad the pages to avoid thin content.

I'm trying to push this to thousands of pages safely, but I'm still figuring a few things out.

It’s completely free right now (WordPress plugin directory).

What I’m unsure about (would love your input):

  1. How do you guys avoid "thin content" or doorway page penalties at scale?

  2. Would you actually trust AI-generated sections running in production across 1,000 pages?

  3. How do you even QA 1,000+ pages without losing your sanity?

I'm not just trying to push a plugin here; I'm genuinely trying to understand if this direction treating SEO as systems rather than writing makes sense to other builders.

If you’ve built anything similar (using Airtable, WP All Import, custom Python scripts), I’d love to hear what broke for you when you tried to scale it.

If there’s interest, I'm happy to share the exact CSV templates and workflow I'm using to generate these.

(You can check out the WP repo version here: WordPress.org/plugins/pageforge)