Skip to main content

WordPress 7.0 Beta 1: Collaboration, AI Abilities API, and What Developers Should Know

· 5 min read
Victor Jimenez
Software Engineer & AI Agent Builder

WordPress 7.0 Beta 1 is here, and it is not an incremental update. The two big moves are real-time collaboration and native AI integration via the Abilities API. Whether that makes WordPress "an intelligent workspace" or just a more complicated CMS depends entirely on the execution.

I dug into the developer-facing features. Some are genuinely good. Some need caveats.

The Future of DDEV: Stas Zhuk Is Pushing It in the Right Direction

· 4 min read
Victor Jimenez
Software Engineer & AI Agent Builder

DDEV is one of the few local dev tools I actually trust for PHP work. Stas Zhuk joined as a core maintainer, and since then the project has been moving faster on the things that matter: broader platform compatibility, newer runtime support, and less friction in day-to-day workflows.

I have been tracking Stas's contributions. The direction is solid.

Stop Vibe Coding Your AI Agents: An Engineering-First Approach

· 5 min read
Victor Jimenez
Software Engineer & AI Agent Builder

Agentic AI moves fast. A few lines of code, a powerful LLM, and suddenly an agent is doing something that looks impressive. The rapid iteration is addictive, but it leads to a development style I call "vibe coding" -- tweak a prompt, rerun, and if the output feels right, ship it.

This works for a demo. It is a recipe for disaster in production.

DDEV v1.25.0: Cloudflare Tunnels Make 'ddev share' Actually Usable

· 4 min read
Victor Jimenez
Software Engineer & AI Agent Builder

DDEV v1.25.0 fundamentally improves how we share work in progress. The new modular share provider system with Cloudflare Tunnel as the default is the best developer experience improvement in DDEV in years. Zero config, zero accounts, zero friction.

I have been using it daily since the release, and the old ngrok workflow feels ancient.

Stop Paying for Crawl4AI and Moltbot: You Already Have Everything You Need

· 8 min read
Victor Jimenez
Software Engineer & AI Agent Builder

You're paying $20-200/month for an LLM subscription. You have access to Claude, GPT, or Gemini. You have Playwright. You have Python. So why are you also paying for Crawl4AI, Moltbot, Firecrawl, or whatever the "AI-powered web scraping" flavor of the month is?

Because marketing works. That's why.

Drupal Digests: Dries Uses AI to Solve Drupal's Information Overload Problem

· 4 min read
Victor Jimenez
Software Engineer & AI Agent Builder

Dries Buytaert has introduced "Drupal Digests," a new initiative that uses AI to summarize development activity across Drupal Core, Drupal CMS, Canvas, and the AI Initiative. This is one of the most practical uses of AI in open-source project management I have seen.

Instead of building AI into Drupal, this is using AI to make the Drupal project more navigable. Smart move.

1.5 Million Unprotected AI Agents: The Security Report Everyone Should Read

· 5 min read
Victor Jimenez
Software Engineer & AI Agent Builder

A recent report from Security Boulevard, based on a Gravitee study, puts a number on the AI agent security gap: approximately 1.5 million AI agents operating in large US and UK organizations with zero active oversight. That is not a theoretical risk. That is a ticking time bomb with a billing address.

I read the full report. The findings are worse than the headline.

Review: AI Search Engine Optimization for WordPress Sites (9-Step Playbook)

· 4 min read
Victor Jimenez
Software Engineer & AI Agent Builder

If you want your WordPress content to appear in AI-generated answers, prioritize this sequence: answer-first writing, schema accuracy, clean crawl controls, maintained plugins, and weekly validation in Search Console/Bing Webmaster Tools. As of February 17, 2026, this is practical on WordPress 6.9.1 and should be treated as an operational SEO workflow, not a one-time checklist.

Drupal 11.1 Breaking Changes for Custom Entities: What Actually Bites in Production

· 5 min read
Victor Jimenez
Software Engineer & AI Agent Builder

Drupal 11.1 does not break public APIs, but custom entity code can still break during upgrades because entity type definitions moved to attributes, some entity-related routes are deprecated for Drupal 12, and entity reference formatter output changed in access-sensitive contexts. If you maintain custom entities, treat Drupal 11.1 as a migration checkpoint, not just a patch-level bump.

Drupal 11 Change-Record Impact Map for 10.4.x Teams

· 5 min read
Victor Jimenez
Software Engineer & AI Agent Builder

If your team is still on Drupal 10.4.x, treat Drupal 11 migration as active incident prevention, not roadmap hygiene: Drupal.org now flags 10.4.x security support as ended, and current supported lines are newer. The fastest safe path is to clear the high-impact change records first, then move to supported 10.5/10.6 and 11.x targets in one controlled sequence.

WowRevenue <= 2.1.3 Authz Risk: I Built a Scanner and Fix Path

· 4 min read
Victor Jimenez
Software Engineer & AI Agent Builder

WowRevenue versions up to 2.1.3 can expose a high-risk path when authenticated low-privilege users can reach plugin installation or activation logic through AJAX handlers without strict capability checks. The practical fix is to enforce current_user_can('install_plugins') or current_user_can('activate_plugins') at handler entry and keep nonce checks as anti-CSRF only.