When a Content Network Starts Publishing to Itself

📊 Full opportunity report: When a Content Network Starts Publishing to Itself on ThorstenMeyerAI.com — validation score, market gap, and execution plan.

TL;DR

A content network with 474 WordPress sites is inadvertently publishing heavily on a few sites while neglecting others. The issue stems from internal system design and supply-demand mismatches, impacting network health and SEO.

A large automated content network with 474 WordPress sites is experiencing an uneven publishing pattern, with 80% of posts going to only 8% of sites, and over half of the sites receiving no content at all. This imbalance, confirmed by recent audits, poses risks to the network’s SEO and content diversity.

The network is operated by two systems: Stenvrik, which sources and assesses news signals, and DojoClaw, which rewrites and distributes content across the sites. Despite correct individual decisions, the combined effect has led to a skewed output, favoring a small subset of sites, mainly in the technology and AI categories, while leaving the majority inactive.

Analysis revealed two key causes: first, within-topic concentration, where the LLM-based site matcher kept surfacing the same popular sites for tech stories, ignoring others; second, supply-demand mismatch, where most incoming content was tech-related, but the majority of sites focused on other categories like Home, Health, and Food, which received little to no new material. These systemic issues caused the network to self-sabotage its diversity and reach.

To address this, the team implemented changes in the distribution system, including caps on how much each site could publish weekly, and a global recency-based ordering that prioritized dormant sites, allowing them to participate more actively. These measures aim to rebalance the distribution, but full effectiveness remains to be seen.

Balancing a 474-site network — ThorstenMeyerAI.com
ThorstenMeyerAI.com
AI & Tooling · Engineering Note
Systems at scale

When a content network starts publishing to itself

A 474-site network quietly collapsed onto 38 of its own favorites while half the catalog went dark. The throughput graph looked fine. The fix wasn’t one thing — it was two causes and a three-part repair across two decoupled systems.

Stenvrik

News-intelligence layer

Ingests hundreds of feeds, scores & geo-tags stories, surfaces what’s trending.

SUPPLY · what’s worth covering
DojoClaw

AI content engine

Rewrites a story in each site’s voice and fans it out across the catalog.

PLACEMENT · where it lands & how it reads
01The symptom

80% of output on 8% of sites

A 28-day audit, bucketed per site, was lopsided in a way the totals had hidden. Every individual placement was “correct” — the aggregate was a slow-motion failure.

Where 28 days of syndication actually landed

474-site catalog · per-site audit
Top 38 sites8% of catalog
80% of all posts
Top 4 sitesall tech titles
200+ articles/week each
249 sites53% of catalog
ZERO posts — half the network dark
02The diagnosis · refuse the obvious
WordPress Explained: Your Step-by-Step Guide to WordPress (2020 Edition)

WordPress Explained: Your Step-by-Step Guide to WordPress (2020 Edition)

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Not one bug — two independent causes

The tempting move is to blame the matcher and move on. The data showed two distinct problems living on two different systems, each needing its own fix.

Cause 1 · DojoClaw

Within-topic concentration

The matcher kept surfacing the same broad tech sites for every tech story, and rotation only shuffled candidates within the matched pool. A site that never entered the pool could never get a turn — fair only among the already-chosen.

Cause 2 · Stenvrik

Supply ≠ demand

53% of supplied content was tech/AI — but only ~13% of sites are. The catalog skews the other way, so those sites starved for on-topic material.

supply
tech/AI content in53%
demand
tech/AI sites in catalog~13%
03The load balancer · flip it
Mastering GitHub Actions: Advance your automation skills with the latest techniques for software integration and deployment

Mastering GitHub Actions: Advance your automation skills with the latest techniques for software integration and deployment

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Watch the network rebalance

Each square is one of the 474 sites; color is how much it’s publishing. Toggle the selection logic to see placement spread off the red-hot favorites and into the dark long tail.

Placement simulator

Same matcher relevance gate either way — the only change is how candidates are ordered after it.

38
sites carrying 80% of posts
249
dark sites · zero posts
overloaded
hottest sites at ~30/day
dark · 0 light healthy busy overloaded
04The three-part fix
SEO Competitor Audit Journal: Perfect SEO tool and journal to audit, track and log your competitor’s SEO strategy

SEO Competitor Audit Journal: Perfect SEO tool and journal to audit, track and log your competitor’s SEO strategy

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Placement, supply, throughput

Two causes meant the fix had to touch both systems — and only then could the ceiling rise without re-concentrating the load.

1

Placement levers

DojoClaw
  • Per-site weekly cap — any site over 25 posts/7d drops from the pool, pushing selection into the long tail (relaxes only if it would starve a fan-out).
  • Global LRU — order by network-wide recency, not just within-topic, so sites idle across the whole network float to the top.
  • Starvation floor — guaranteed by construction: the most-idle eligible site is always within the picks.
2

Supply rebalance

Stenvrik
  • Audited existing feeds for liveness — removed ones returning HTTP 200 but zero items (broken RSS).
  • Added a verified batch across Home, Garden, Health, Food, Fashion, Auto, Science, Pets & more — every feed fetched live first, weighted to the most idle categories.
  • Flagged throttled feeds (big publishers exposing only 1–2 items) for replacement rather than burying the risk.
3

Throughput raise

Scheduler
  • Fan-out width maxSites 5 → 7 — the extra slots land on fresh sites because the cap is now enforcing.
  • Quota depth K 2 → 3 — every category’s daily cap scaled ×1.5.
  • Honest note: a documented ~950/day intent the code never delivered (units quirk) stays gated behind a sign-off.
05What it adds up to
Caring for Aging Parents: A Practical Survival Guide: Smart, Compassionate Solutions to Maintain Life Balance and Emotional Well-Being on Your Caregiving Journey

Caring for Aging Parents: A Practical Survival Guide: Smart, Compassionate Solutions to Maintain Life Balance and Emotional Well-Being on Your Caregiving Journey

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

The scoreboard — with an honest asterisk

The change is behavioral: it shapes future placement, it doesn’t retroactively rescue the month sites sat dark. The proof is in the next weeks of data — which is why the instrumentation is the real deliverable.

Metric
Before
After
Concentration
80% on 38 sites
cap + LRU + floor
Dormant sites
249 (53%)
shrinking ↓
Feed sources
245
271 verified
Daily ceiling
~188/day
~280/day · +49%
Fan-out width
5
7
Why two systems, not one

Supply and placement are genuinely separate concerns. Diagnosing the imbalance meant looking at both sides and seeing they disagreed. A clean boundary made a failure that spanned both legible — good system boundaries organize thought, not just code.

The tradeoff taken

Ordering by load & idleness sacrifices a little topical ranking for dramatically better coverage. All candidates already cleared the relevance gate — so it’s a deliberate trade, not a regression.

ThorstenMeyerAI.com
Stenvrik (news-intelligence) ↔ DojoClaw (content engine) · figures reflect the May 2026 engineering audit & the behavioral changes made in response · the network’s response is being tracked.

Implications for Automated Content Network Management

This situation highlights how complex automated systems can produce unintended outcomes even when individual components function correctly, as discussed in When a Content Network Starts Publishing to Itself. Publishing to a small subset of sites can harm the network's overall SEO, reduce content diversity, and diminish value for users. It underscores the importance of systemic oversight and dynamic balancing mechanisms in large-scale automation.

For operators of similar networks, the case illustrates that addressing distribution issues requires both technical adjustments and strategic oversight, especially in managing supply-demand mismatches and ensuring equitable content spread across varied categories.

Background on System Design and Previous Challenges

The network's architecture involves two decoupled systems: Stenvrik, which filters and signals trending topics, and DojoClaw, which rewrites and distributes the content. For more on this topic, see When a Content Network Starts Publishing to Itself. This separation was intended to optimize each function but inadvertently contributed to the imbalance by allowing the distribution logic to favor certain sites based on popularity and recent activity.

Prior to the current issues, the system operated with minimal oversight, relying heavily on automated rotation and recency heuristics. An audit revealed the skewed distribution, prompting recent interventions. This incident is part of a broader challenge in managing large-scale automated content ecosystems, where systemic biases can develop unnoticed.

"The core issue was not a single bug but a systemic imbalance rooted in how content supply and site selection interacted. Addressing it required systemic fixes, not just tweaks."

— Thorsten Meyer, system operator

Remaining Challenges in Fully Rebalancing the Network

It is not yet clear how effective the recent distribution adjustments will be in the long term. There is ongoing monitoring to determine whether dormant sites will re-engage and whether the supply-demand mismatch will be fully addressed. Further systemic refinements may be necessary.

Next Steps for Monitoring and System Optimization

The team plans to continue monitoring the distribution metrics closely over the coming weeks, especially to prevent issues like When a Content Network Starts Publishing to Itself. Additional adjustments, such as more granular site caps and smarter supply routing, are expected to be implemented. The goal is to achieve a more equitable and diverse content spread, reducing the risk of SEO penalties and improving network value.

Key Questions

Why is publishing to itself a problem for the content network?

It creates an uneven distribution of content, with some sites overwhelmed and others inactive, which can harm SEO, reduce content diversity, and diminish overall network value.

What caused the imbalance in the first place?

The imbalance stemmed from systemic issues in the site-matching and content supply logic, including over-concentration on popular sites within certain categories and a mismatch between the categories of incoming content and the sites' focus areas.

Are the recent fixes guaranteed to work?

While initial adjustments aim to rebalance the distribution, ongoing monitoring is necessary to verify their effectiveness. Further refinements may be needed based on observed results.

Could this happen again?

Yes, without continuous oversight and adaptive balancing mechanisms, similar systemic issues could reoccur, especially as content patterns and site focus areas evolve.

What lessons can other automated networks learn?

Automated systems must incorporate dynamic balancing, regular audits, and multi-faceted metrics to prevent systemic skew and maintain healthy, diverse content distribution.

Source: ThorstenMeyerAI.com

You May Also Like

Show HN: Clawk – Give Coding Agents A Disposable Linux VM, Not Your Laptop

Clawk provides developers with temporary Linux virtual machines for coding, reducing risks to their personal laptops. The tool is shared on Show HN.

AI Changelog Digest For Open-source Maintainers

A new AI-driven weekly digest tool for solo open-source maintainers is in testing, aiming to automate release summaries and issue tracking.

AI output review queue for customer support macros

Support teams are testing a new AI macro review queue to ensure policy compliance and tone accuracy before publication, aiming for safer automation.

Glasspane: When Transparency Itself Becomes the Product

Glasspane introduces role-aware dashboards and AI-driven insights, redefining infrastructure transparency for enterprises and MSPs.