Blog

Deep dives into data governance, AI, architecture, and engineering.

AI Governance & Safety April 11, 2026 · 12 min read

Privacy-Preserving Computation: Encrypted Processing, Federated Learning, and the Explainability Paradox

Part 6 showed Meridian rejecting federated learning (single-tenant architecture) and deferring homomorphic encryption (47x latency). This article explains the mechanics behind those decisions, introduces secure multi-party computation, and reveals the tension between GDPR's explainability mandate and privacy protection. Concludes with a capstone PET decision framework spanning Parts 7 through 9.

#data-governance#data-privacy#data-protection#privacy-engineering
AI Governance & Safety April 11, 2026 · 9 min read

Privacy-Enhancing Technologies: Masking, Tokenization, and De-identification

Part 3 introduced PETs as governance decisions. Part 6 showed Meridian evaluating them. This article explains how each technique actually works: static and dynamic masking, vault-based and format-preserving tokenization, and the k-anonymity family of de-identification methods.

#data-governance#data-privacy#data-protection#privacy-engineering
AI Products & Strategy April 4, 2026 · 7 min read

Willison's Agentic Engineering Patterns: What Data Practitioners Should Steal

Bad code crashes visibly. Bad data looks plausible. That asymmetry makes agent-assisted data work riskier than software, and it is why Simon Willison's Agentic Engineering Patterns guide matters for data practitioners. His Red/Green TDD maps to data contracts before transformation. His testing discipline gives teams a framework for agent verification. But some patterns need adaptation: 'pipelines are cheap' is only half true, and hoarding knowledge is harder when institutional context lives in people's heads, not in code.

#agentic-engineering#coding-agents#data-quality#judgment-in-the-loop
AI Governance & Safety April 4, 2026 · 14 min read

Context Engineering, Formalized: Five Criteria That Validate the Agent Quality Thesis

Vishnyakova's 'Context Engineering' paper (arXiv 2603.09619) proposes five production-grade quality criteria for agent context and a four-level maturity pyramid. The framework independently validates the thesis from our three-part agent quality series and extends it with Isolation, Economy, and two higher-order disciplines: Intent Engineering and Specification Engineering.

#context-engineering#ai-agents#data-quality#ai-governance
AI Governance & Safety April 4, 2026 · 7 min read

The Data Privacy Practitioner's Guide

A ten-part series from teardown to framework to implementation. Two company analyses (Netflix, Apple), an 8-component privacy program framework, the 2026 regulatory landscape, a complete implementation walkthrough using a fictitious B2B SaaS company, a three-part deep dive into Privacy-Enhancing Technologies, and a synthesis of what it all means for practitioners.

#data-privacy#data-governance#gdpr#ai-governance
AI Governance & Safety April 4, 2026 · 8 min read

What This Series Taught Me About Privacy

The conclusion to the Data Privacy series. Two company teardowns, a framework, a regulatory map, two implementation walkthroughs, and a three-part deep dive into Privacy-Enhancing Technologies. Here is what surprised me, what I got wrong, and what practitioners should do next.

#data-privacy#data-governance#gdpr#ai-governance
AI Governance & Safety April 4, 2026 · 23 min read

Privacy in Practice: Diagnosing the Gaps and Building the Foundation

A fictitious B2B SaaS company receives a DPIA request it cannot answer. This walkthrough applies the privacy framework from Part 3 to build Data Classification, retention schedules, consent architecture, and sub-processor transparency from scratch.

#data-privacy#data-governance#privacy-engineering#ai-governance
AI Governance & Safety April 4, 2026 · 17 min read

Privacy in Practice: From Compliant to Operationally Ready

Meridian Analytics completes its privacy transformation. This walkthrough covers cross-border transfer documentation, EU AI Act compliance mapping, PET assessments, the governance operating model, and what the company looks like six months later when Allianz asks the same DPIA questions.

#data-privacy#data-governance#privacy-engineering#ai-governance
AI Products & Strategy April 4, 2026 · 8 min read

Multi-Agent Systems: When One Agent Isn't Enough

Nine articles in this series used a single agent. This one explains when that stops being sufficient and what to do about it. Four signals tell you it is time. Three patterns handle 90% of cases. The hardest part is not building the system; it is debugging it when something goes wrong.

#ai-agents#multi-agent-systems#agent-orchestration#agent-architecture
AI Products & Strategy April 1, 2026 · 14 min read

Prompt Engineering for Production Agents

Production agents need prompts that produce consistent, structured output under adversarial conditions. This article covers the five patterns that separate production prompt engineering from tutorial-grade prompting: explicit criteria, few-shot examples, nullable fields, enum-with-fallback, and output format contracts.

#ai-agents#prompt-engineering#structured-output#tool-calling
AI Products & Strategy April 1, 2026 · 12 min read

Observability: Seeing What Your Agent Actually Does

Your monitoring says 200 OK. The agent returned the wrong answer. Traditional APM was designed for deterministic software. Agents reason, branch, and call tools in sequences they decide at runtime. This article covers the five dimensions of agent observability, the tooling landscape, and a practical instrumentation plan.

#ai-agents#agent-observability#monitoring#data-observability
AI Governance & Safety March 25, 2026 · 16 min read

Context Is the Program: Why Data Quality Inside the Agent Matters More Than the Model

Pike's Rule 5 says data dominates. In AI agents, the context window IS the data structure. This article traces why context quality determines agent behavior more than model capability, maps the five criteria that define good context, and shows what happens when stale data enters the reasoning loop unchecked.

#ai-agents#context-engineering#data-quality#ai-governance
AI Governance & Safety March 25, 2026 · 15 min read

Guardrails and Safety: The Boundaries Every Agent Needs

Pike's Rule 4 says fancy algorithms are buggier. In agent systems, complexity multiplies failure surfaces. This article maps the three guardrail layers every agent needs, identifies the gap most frameworks miss, covers escalation patterns and workflow gates, and explains why simpler architectures are safer.

#ai-agents#ai-governance#agent-safety#guardrails
AI Products & Strategy March 25, 2026 · 8 min read

Pike's Five Rules Are Now the Five Rules of Agent Development

Rob Pike wrote five rules of programming in 1989 at Bell Labs. Thirty-seven years later, they map onto AI agent development with striking precision: measure before tuning, start simple, and get the data right. Nobody has made this connection explicitly. Here is the mapping, the evidence, and the framework it gives you.

#ai-agents#agent-development#context-engineering#agentic-engineering
AI Products & Strategy March 25, 2026 · 15 min read

The Self-Improving Agent: From Static Prompts to Learning Systems

Most AI agents run the same prompt every time. The best ones evolve. This article maps the spectrum from static to self-improving agents, introduces the inner loop / outer loop architecture, and walks through a real system that learns from feedback weekly. Pike's Rules 3-4 set the boundary: start simple, add complexity only when measurement demands it.

#ai-agents#self-improving-agents#agentic-engineering#learning-systems
AI Products & Strategy March 25, 2026 · 11 min read

What Is an AI Agent (and What Isn't)?

An AI agent is a system that uses an LLM to decide which actions to take in a loop until a goal is met. This article breaks down the four components every agent shares, the spectrum from chatbot to autonomous agent, what tool calling actually looks like in code, and the design principles that separate good tool definitions from bad ones.

#ai-agents#agent-architecture#tool-calling#ai-fundamentals
AI Products & Strategy March 25, 2026 · 18 min read

Build a Real Agent This Weekend: From Zero to a Working Research Assistant

The series has defined agents, established design principles, and mapped failure modes. This article builds one. A complete research assistant agent with three tools, structured error handling with error categories and retry logic, context management, and a basic eval, all in one runnable Python file using the Anthropic SDK.

#ai-agents#agent-development#tool-calling#anthropic-sdk
AI Products & Strategy March 25, 2026 · 17 min read

From Problem to Agent: An Implementation Reference Guide

The series taught ten concepts across ten articles. This capstone walks through all of them applied to one problem: building a Data Quality monitoring agent. Seven steps, from problem definition through production deployment, showing the decision-making process that separates agent projects that ship from agent projects that stall.

#ai-agents#data-quality#implementation-guide#context-engineering
Data Governance & Management March 18, 2026 · 24 min read

The Data Privacy Regulatory Landscape in 2026: GDPR, CCPA, AI Laws, and the Insurance Market for When AI Goes Wrong

A practitioner's reference to the global privacy regulatory landscape. GDPR fines have crossed EUR 5.6 billion. Twenty US states have privacy laws with no federal standard. The EU AI Act is phasing in. And a new insurance market is emerging for AI agents that go off script. This is where the rules stand, what they require, and what is coming next.

#data-privacy#data-governance#gdpr#ccpa
Data Governance & Management March 17, 2026 · 20 min read

How to Build a Privacy Program in the Age of AI

A practitioner's framework for building a privacy program that treats AI data as a first-class concern. Covers Data Classification for training data, retention schedules for ML pipelines, consent architecture, third-party transparency, cross-border transfers, EU AI Act Article 10, NIST AI RMF, privacy-enhancing technologies, and governance operating models.

#data-privacy#data-governance#ai-governance#eu-ai-act
Data Governance & Management March 16, 2026 · 15 min read

Apple Privacy Teardown: When Privacy Is the Product, Where Does It Break Down?

A Data Governance teardown of Apple's privacy practices. What Apple actually collects, how hardware margins fund privacy positioning, where Apple falls short on Siri, China, and its own ad network, and what practitioners can learn from privacy as a business strategy.

#data-privacy#data-governance#apple#app-tracking-transparency