Skip to main content

63 posts tagged with "Ai"

Ai tag

View All Tags

CPF: Compact Prompt Format — 30-50% Fewer Tokens, Zero Loss

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

LLM prompts are full of repeated English grammar. Every "If a module exists, then recommend it. Do NOT reinvent the wheel." burns tokens on words the model already understands. I built CPF (Compact Prompt Format) to replace that grammar with operators and abbreviations that LLMs decode natively — cutting token costs by 30-50% with zero runtime dependencies.

Drupal Maintainer Shield: Filtering AI Noise So Humans Can Focus on Real Security

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

Dries Buytaert, the founder of Drupal, recently addressed a growing problem: AI-generated contributions are flooding open-source projects with low-value reports and patches that lack expertise. The human bottleneck — the reviewer — becomes the point of failure for the entire ecosystem.

Drupal 12 Readiness: Relaunching the Deprecation Dashboard

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

Drupal 12 lands mid-2026. The deprecation list is long, the database API is changing, and most teams will not discover their exposure until the upgrade breaks something in production. Static analysis catches the problems early. But terminal output is not enough when you need to share findings with project managers, clients, or stakeholders who do not read diffs.

The Drupal 12 Readiness CLI now ships with an HTML report generator, GitHub Actions CI across three PHP versions, and coverage for all 32 deprecated database API functions.

Drupal AI Vulnerability Guardian: Triage 12 Vulnerability Patterns at Machine Speed

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

AI is making vulnerability discovery faster and cheaper. That is the easy part. The hard part is what happens next: an open-source maintainer with limited hours receives a flood of security reports and must decide which ones deserve immediate attention, which are false positives, and which can wait.

Gemini Ollama CLI Bridge: Local-First Code Analysis with Optional Cloud Refinement

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

Gemini Ollama CLI Bridge chains a local Ollama model with Google's Gemini into a two-stage code analysis pipeline. The first version piped data to Gemini through a shell subprocess -- fragile, hard to test, and impossible to cache. This upgrade replaces the shell integration with the google-generativeai Python SDK, adds result caching, and grows the test suite from 4 tests to 22.

Drupal AI Content Impact Analyzer: 6-Dimension Scoring That Tells Editors What to Fix

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

The first version of Drupal AI Content Impact Analyzer was a minimal proof-of-concept: a single scoring function, no tests, no documentation worth mentioning. It proved the idea worked. It did not prove the idea was useful to editors who need to know exactly why a piece of content scores the way it does. The upgrade rewrites the core into a 6-dimension scoring engine that tells editors precisely what to fix.

Drupal AI Hackathon 2026: Where AI Agents Meet Content Governance

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

The Drupal AI Hackathon: Play to Impact 2026, held in Brussels on January 27-28, was a pivotal moment for the Drupal AI Initiative. The focus was on practical, AI-driven solutions that enhance teamwork while upholding trust, governance, and human oversight.

The most compelling challenge: creating AI Agents for Content Creators — not simple content generation, but agentic workflows where AI acts as collaborator, researcher, or reviewer.

Drupal Entity Reference Integrity: Auto-Fix Broken References at Scale

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

The first version of drupal-entity-reference-integrity could scan a Drupal site and report broken entity references. That was the easy part. The hard part -- actually fixing them at scale without taking the site down -- was missing. This upgrade adds auto-fix mode, batch processing, and the test coverage needed to trust both in production.

Drupal Module Generator Powered by DeepSeek and MCP

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

I built drupal-ai-module-generator-deepseek-mcp to take the repetitive, error-prone parts of module setup -- info files, boilerplate, and consistent structure -- and make them fast and repeatable. It fits naturally into agent-driven workflows where you want consistent Drupal modules without losing time to manual setup.

Drupal AI Views Agent: Natural Language to Views Configuration

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

I built drupal-ai-views-agent because Views is powerful but repetitive. Filters, relationships, display modes, and fields add up quickly. Describing what you want in plain language and getting a valid Views config back saves the clicking and lets teams focus on validating data requirements instead of wrestling with UI details.