AI Code Review Pipeline: Zero-Trust, Multi-Agent & Mutation Testing

Series Orientation: This article is Part 4 of the AI Code Review & Vibe Coding series, focusing on building an automated multi-agent quality gate pipeline. For the bug taxonomy that informs these gates, see Part 3 — AI Code Bug Taxonomy. The software industry has spent two years discovering that the productivity problem of AI coding is not generation speed — it is verification speed. AI coding tools are extraordinarily effective at generating code quickly. GitHub Copilot internal data shows task completion up to 55% faster for scoped coding tasks. The bottleneck that this creates is not in the generation phase. It is in the review phase, where PR volume has increased by 20–90% across high-adoption teams while review capacity has not scaled at the same rate. ...

May 31, 2026 · 12 min · Lê Tuấn Anh

Part 10: Production Evals & CI/CD for AI - The Final Checkpoint

1. The End of the “Vibe Check” Era A few years ago, the process of testing an AI system went like this: The programmer tweaks the Prompt file, types a few questions into the chatbox, skims through to see if the AI’s answer sounds reasonable (vibe check), shouts “Looks Good To Me” (LGTM), and hits Deploy to Production. In 2026, this approach is considered catastrophic. AI is a Non-deterministic system. Today it answers correctly, but tomorrow if you change just 1 word in the Prompt or switch to a new LLM version, it might hallucinate in a corner you never tested. To deploy AI for enterprise service, you must transition from intuitive testing to statistical probability testing. ...

May 17, 2026 · 4 min · Lê Tuấn Anh

What's New in Argo CD 3.4 & 3.3: Cluster Pause & Upgrades

Answer-first: Argo CD v3.4 & v3.3 (2026): Cluster Pause, PreDelete Hooks, SemVer breaking change 2014 plus RC: annotation filtering, Teams Workflow, ApplicationSet UI. GitOps is steadily becoming the gold standard for configuration management and application deployment on Kubernetes. Among the tools available, Argo CD continues to maintain its leading position. In the first half of 2026, the Argo project released two landmark versions: Argo CD 3.3 and Argo CD 3.4. These releases address numerous headaches related to application lifecycle management, synchronization performance, and incident response capabilities. ...

June 1, 2026 · 8 min · Lê Tuấn Anh

Tech Radar, April 17, 2026: GitLab Pushes Agentic DevSecOps Toward Operability, Cost Control, and Stronger Reasoning

The selected items for pipeline run 31 all point to the same strategic arc inside GitLab: the company is trying to turn AI-assisted software development from an experimental productivity layer into a governed, operationally credible platform capability. After fetching and reading the full source content directly from the original URLs, three themes stand out. First, GitLab is extending AI beyond code generation into delivery bottlenecks that developers and platform teams actually live with every day. Second, it is wrapping that expansion in explicit cost controls, which is critical if AI is to move from pilot usage to enterprise rollout. Third, it is strengthening the model layer underneath the platform so agents can handle more complex, multi-step workflows with less supervision. ...

April 17, 2026 · 10 min · Lê Tuấn Anh

Part 4: CI/CD Simplified & Atomic Deployments

Part 4: CI/CD Simplified & The Power of Atomic Deployments One of the biggest drivers pushing teams toward Microservices is the promise of “Independent Deployment.” In theory, team A can deploy service A without caring about team B. But reality is often much crueler: The existence of “Dependency Hell.” If Service A changes its API payload, Service B is forced to update accordingly. The organization must design complex pipelines, use API contracts (Contract Testing with tools like Pact), and coordinate release schedules (Release coordination) to avoid bringing down the system. Actual velocity doesn’t increase; it is bottlenecked by synchronization costs. ...

4 min · Lê Tuấn Anh