Skip to main content

21 posts tagged with "Agent"

Agent tag

View All Tags

The Ticket Agent: Automating Jira Requirements to Instant Local Environments

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

Enterprise Agile environments are undeniably slow. Developers easily spend 30% of their day just reading Jira tickets, interpreting scattered requirements, searching for the right database dumps, and manually spinning up Lando or Docker environments before writing a single line of code.

Cloudflare's Toxic Combinations: A Practical Compound-Signal Checklist for Incident Prevention

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

Your deploy was fine. Your WAF rule update was also fine. Both hitting the same service within fifteen minutes at 2 a.m.? That is where the outage lives, and your single-metric dashboards will smile green the entire time. Cloudflare wrote an entire postmortem about this blind spot — stacked low-signal anomalies that every alert evaluates in isolation and nobody evaluates together — so I turned it into an enforceable playbook before the next on-call learns the lesson the hard way.

I Built a Chrome Extension to Rip My Data Out of Jira's Cold, Clammy Hands

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

I needed to get data out of Jira. Not just the title, but the full description, comments, and all attachments, packaged neatly for use in other scripts. The official way involves wrestling with an API that feels like it was designed by a committee that never spoke to each other. The unofficial way involves paying $20/month for a SaaS tool that is just a glorified curl command wrapped in a pretty dashboard. I chose the third way: build it myself.

mcp-web-setup: One CLI to Configure 18 MCP Servers Across Claude, Codex, and Gemini

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

Every AI coding tool has its own config format for MCP servers. Claude uses JSON, Codex uses TOML, Gemini uses a different JSON schema. Setting up the same 18 servers across all three means editing three files, remembering three formats, and hoping you didn't typo a credential. I built mcp-web-setup to do it once.

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.

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.