---
title: "The Context Tax of Agentic Development"
url: https://daily.dev/posts/the-context-tax-of-agentic-development-spfv0nbhr
source_url: https://medium.com/expedia-group-tech/the-context-tax-of-agentic-development-0bb9de03237c
type: article
source: "Expedia Group Tech"
published: 2026-08-25T11:50:05.868Z
updated: 2026-08-25T12:10:32.997Z
tags: ["ai-agents", "platform-engineering", "mlops"]
reading_time: 10
upvotes: 0
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# The Context Tax of Agentic Development

**[Expedia Group Tech](https://daily.dev/sources/expedia)** · 10 min read · 0 upvotes · 0 comments

## Summary

Expedia Group's engineering team shares lessons from integrating AI agents into their planning and development workflow, arguing that missing context doesn't slow agents down the way it slows humans down — instead it accelerates confidently wrong work. The team built a context repository combining markdown proposal documents (for humans) with a machine-readable STATUS.yaml file (for agents and scripts) tracking stage, priority, affected services, and OKR alignment. They also adopted Anthropic's 'agent skills' pattern (SKILL.md files) to make context-checking repeatable. A concrete win came from their Model Monitoring initiative, where an agent compressed research across nine vendor alternatives, surfacing licensing risks like Deepchecks' AGPL 3.0 and Seldon Alibi Detect's BSL 1.1. The unsolved problem remains 'context drift' — decisions made informally in Slack or hallway conversations that never make it into the structured context, leaving agents reasoning from stale information.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://medium.com/expedia-group-tech/the-context-tax-of-agentic-development-0bb9de03237c>

## Questions this post answers

### What is an agent skill file (SKILL.md) and how does it work with AI coding agents?

An agent skill is a folder containing a SKILL.md file with YAML frontmatter specifying a name and description, followed by a procedure written in plain markdown. An agent loads only the name and description of every installed skill upfront, and reads the full procedure body only when it judges the skill relevant to the current task, making the description function as the trigger condition.

_Teams standardizing agent workflows can follow ongoing coverage of agent skill patterns on daily.dev._

### Why do AI coding agents produce confidently wrong output when project context is incomplete, unlike human engineers?

A human engineer missing context typically slows down, asking someone or searching old notes, but an agent tends to keep moving and produce work that is technically plausible and well formatted while being aimed at the wrong reality. This happens because unclear context does not just delay agentic work, it accelerates the wrong work, since the agent fills gaps with assumptions rather than pausing.

_Developers tuning agent-in-the-loop workflows can track lessons like this on daily.dev._

### What licensing risks came up when comparing model monitoring vendors like Deepchecks and Seldon Alibi Detect?

Deepchecks carried an AGPL 3.0 licensing risk, while Seldon Alibi Detect used a BSL 1.1 license that requires care before production use. These licensing distinctions emerged during a structured comparison of nine model monitoring alternatives evaluated across drift detection, data quality, evaluation, explainability, scalability, integration, and cost.

_Anyone evaluating monitoring tools under different open-source licenses can follow related comparisons on daily.dev._

## Similar posts on daily.dev

- [Why Agentic AI Needs a Context-Based Approach](https://daily.dev/posts/why-agentic-ai-needs-a-context-based-approach-dkhy33g7f) · The New Stack · 0 upvotes · 0 comments

---

Tags: [#ai-agents](https://daily.dev/tags/ai-agents), [#platform-engineering](https://daily.dev/tags/platform-engineering), [#mlops](https://daily.dev/tags/mlops)

[View this post on daily.dev](https://daily.dev/posts/the-context-tax-of-agentic-development-spfv0nbhr)
