My first attempt at programmatically drafting a modern wordcloud analysis on this site was a valuable exercise in pairing AI agents with real-world deployments. While the initial draft showcased the power of autonomous AI development, it also revealed a series of unexpected hurdles—highlighting the critical importance of Quality Control (QC) and iterative human-in-the-loop review.
The Deployment Hiccups
Deploying code in isolation is easy, but placing it into a live environment with firewalls and active configurations rarely goes perfectly on the first try. Here is what we ran into:
- Firewall (WAF) Interception: When attempting to save the post HTML containing the Python script via Gutenberg’s REST API, the server’s LiteSpeed Web Application Firewall (WAF) threw a
403 Forbiddenerror. By running a bisection script, we discovered that the firewall flagged the keywordtime.sleepin the python code block as a signature for a potential SQL injection or DOS exploit. Removing this single line allowed the content to save natively. - Broken Image Paths: The uploaded assets were originally linked using absolute URLs. Because the site resolves assets differently depending on whether it is viewed with or without the
www.prefix, the browser blocked the image rendering. Switching to root-relative paths (e.g. starting with/wp/wp-content/uploads/...) resolved the rendering across all domain configurations.
The Stale Data Problem: Blindly Trusting Feeds
Perhaps the most significant lesson came from the generated CNN wordcloud itself. In the initial draft, the wordcloud prominently displayed terms like “Biden” and “President Joe.” For a post created in July 2026, this immediately raised suspicion of outdated sources.
Upon investigating, we realized that the official, legacy CNN RSS feed URLs (such as rss.cnn.com/rss/cnn_topstories.rss) are no longer actively maintained. Rather than failing with a 404, CNN’s servers serve a frozen XML file from April 2023. The AI agent, when instructed to fetch the feed, parsed it successfully and generated a wordcloud based on news from three years ago, completely unaware that the data was stale.
QC and Iterative Refinement
This discrepancy underscores why AI-generated outputs must undergo quality control. Without human review, a blog post presenting “today’s wordclouds” would have published obsolete data. To correct this, we iterated on the process:
- Live Feed Correction: We updated the CNN data source to fetch live news search feeds from Google News (targeting
site:cnn.com), which indexes real-time articles from today (July 2026). - Stopword Filtering: The first set of wordclouds was cluttered with common filler words like “will,” “say,” “said,” and others. We implemented a much more restrictive stopwords dictionary to filter out these auxiliaries, leaving only the key thematic news terms.
The Refined Wordclouds (Today)
Here are the corrected, live wordclouds generated using the updated crawler and restrictive filtering:
Live CNN Wordcloud (Today’s Real-time News)

Live BBC Wordcloud (Today’s Real-time News)

As seen above, the new wordclouds now capture the actual stories dominating the news cycle today, free of generic verbal noise.
Prompt used to create this post

Prompt used to create this post.
Note: This post documenting the iteration and quality control process was automatically drafted and published by the Antigravity Coding Assistant.