<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
     xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
     xmlns:podcast="https://podcastindex.org/namespace/1.0"
     xmlns:atom="http://www.w3.org/2005/Atom"
     xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>AI University Deep Dive</title>
    <link>https://aiuniversity.com/#/deep-dive</link>
    <description>AI University Deep Dive takes one subject in AI and goes all the way down: where the idea started, how it actually works, what has been measured versus what has merely been claimed, where the people who build with it disagree, and what to do with it in your own work on Monday. Longer than the news and built to last — every number comes with its method and its date, and every claim comes with a name attached. Your hosts, Dennis and Ashley, are AI voices — fitting, for a show about AI. Each episode has a written companion page at aiuniversity.com that keeps updating as new work lands.</description>
    <language>en-us</language>
    <copyright>© 2026 GaleForce LLC</copyright>
    <atom:link href="https://aiuniversity.com/deep-dive.xml" rel="self" type="application/rss+xml"/>
    <podcast:guid>8cfbde7f-897d-5d29-b85a-dc8d81cd9fcc</podcast:guid>
    <itunes:subtitle>One subject, all the way down — the history, the evidence, and what to do with it.</itunes:subtitle>
    <itunes:author>AI University</itunes:author>
    <itunes:owner><itunes:name>AI University</itunes:name><itunes:email>podcasts@aiuniversity.com</itunes:email></itunes:owner>
    <itunes:image href="https://aiuniversity.com/data/deep-dive-podcast/cover.png"/>
    <itunes:explicit>false</itunes:explicit>
    <itunes:type>episodic</itunes:type>
    <itunes:category text="Technology"/>
    <itunes:category text="Education"><itunes:category text="How To"/></itunes:category>
    <item>
      <title>What Actually Eats Your Week</title>
      <guid isPermaLink="false">aiu-deep-dive-developer-token-cost</guid>
      <pubDate>Sat, 22 Aug 2026 18:11:20 +0000</pubDate>
      <enclosure url="https://op3.dev/e/aiuniversity.com/data/deep-dive-podcast/aiu-deep-dive-developer-token-cost.mp3" length="14338181" type="audio/mpeg"/>
      <itunes:duration>0:16:59</itunes:duration>
      <itunes:image href="https://aiuniversity.com/data/deep-dive-podcast/cover-developer-token-cost.png"/>
      <itunes:episodeType>full</itunes:episodeType>
      <itunes:explicit>false</itunes:explicit>
      <itunes:summary>What Actually Eats Your Week: where it started, how it works, what has actually been measured versus what has only been claimed, where people disagree, and what to do with it. Chapters: Cold open · Why you cannot just look it up · One: what actually happens when you hit enter · Two: the eight ways you break it yourself · Three: the advice that expired · The one that was never real · If you write the API calls yourself · Four: the two claims somebody actually tested · What to do on Monday · Where this stops being true.

Sources:
• Our own three arm test of the ignore file that does not work (AI University research note, run 2026-08-21 on Claude Code 2.1.236. A junk file containing a canary string, read back by a headless agent under three conditions. Arm one, no ignore file: read succeeded. Arm two, an ignore file naming the junk file exactly: read succeeded, canary returned verbatim. Arm three, a deny rule on reading that path in settings, with the ignore file still present: read denied. The method is here so you can rerun it rather than take our word for it. The working mechanism is a deny rule under permissions in your settings file, documented at the settings link in these notes)
  https://code.claude.com/docs/en/settings
• The Register on Claude asserting a protection feature that does not exist (Thomas Claburn, 2026-01-28. Reports Claude telling a user that an ignore file works like gitignore and that Claude Code will refuse to read matching files. The article&apos;s verdict is flat: Claude is incorrect. Anthropic did not respond to a request for comment. This matters because people believed their environment files were protected)
  https://www.theregister.com/2026/01/28/claude_code_ai_secrets_files/
• JetBrains measured a terse prompting tool on real agentic work (Denis Shiryaev, July 2026. Claude Code headless, claude-sonnet-5 at low effort, SkillsBench, 86 tasks and 82 clean pairs, roughly 240 trials. The tool claims about sixty five percent output reduction on its own prose benchmark. Measured on coding: output tokens down 8.5 percent, cost about ten percent, quality indistinguishable at p equals 0.82. Their verdict: safe, honest about style, oversold on savings. Note the tool&apos;s readme now carries both numbers and explains the gap)
  https://blog.jetbrains.com/ai/2026/07/speak-to-ai-agents-like-cavemen-tosave-tokens/
• JetBrains measured the sixty to ninety percent claim, and it came out negative (Same author and rig. Four paired runs, 425 billed trials, about 320 dollars. The tool&apos;s readme promises sixty to ninety percent less token consumption. Measured: a median 7.6 percent increase in cost per task at low effort, with quality a wash. Their explanation for why the claim had nowhere to live is that the hook only ever sees about a fifth of the tool output, and most input is cached re reads billed at the lower rate)
  https://blog.jetbrains.com/ai/2026/07/rtk-claude-code-token-savings/
• The bug report the eighteen thousand token figure actually comes from (Opened 2025-07-12. Read the numbers carefully: built in tools alone are ten to eleven thousand tokens, MCP servers add four to eight thousand on top, and the total overhead is ten to twenty thousand tokens at conversation start. It is a TOTAL for built ins plus MCP, not a per server figure, and the reproduction rows make that explicit)
  https://github.com/anthropics/claude-code/issues/3406
• Per server MCP costs, actually measured, and they vary twenty five fold (A benchmark that states its method: stdio handshake, list the tools, serialise name, description and input schema, count with a named tokenizer. Slack comes in around 679 tokens. Notion comes in around 17,161 for 24 tools. So one server costing eighteen thousand tokens is true of the worst one and about twenty five times wrong for a typical one, and nobody repeating the number says which)
  https://github.com/zhang-liz/mcp-token-benchmark
• The cache lifetime that moved twice without an announcement (A user&apos;s analysis of 119,866 API calls across two machines, January to April 2026, reading raw session logs. Documents the one hour cache lifetime silently reverting to five minutes around 6 March 2026, a twenty to thirty two percent rise in cache creation cost, and subscription users hitting quota limits for the first time. Closed as not planned with no vendor reply. This is why advice that looks wrong today was often right when it was written)
  https://github.com/anthropics/claude-code/issues/46829
• How Claude Code uses prompt caching, including every way you break it (The primary source for the eight breakers and the eight safe actions. Switching models, changing effort, fast mode, connecting or disconnecting a server whose tools are loaded upfront, toggling a plugin, denying a tool by bare name, compacting, and upgrading. Also states plainly that each model has its own cache and switching recomputes the entire request even when the content is identical, and that plan mode switches models when the opus plan setting is on. Read 2026-08-21)
  https://code.claude.com/docs/en/prompt-caching
• Anthropic on deferring tool definitions, and the accuracy result (2025-11-24. Reports about 77 thousand tokens of startup context coming down to about 8.7 thousand, an eighty five percent reduction, with accuracy improving rather than degrading on their internal evaluation. Treat the accuracy numbers as their claim on their own eval, unreplicated. The post separately notes tool definitions alone reaching 134 thousand tokens before optimisation; that is a different quantity and must not be paired with the 8.7 thousand figure, since 134 to 8.7 is ninety four percent rather than eighty five. In Claude Code deferral became the default in mid January 2026, and it is now unconditional by default rather than threshold based. The ten percent of context window threshold applies only if you opt into threshold mode.)
  https://www.anthropic.com/engineering/advanced-tool-use
• OpenAI documents deferred tool loading too, which corrects something we said (OpenAI, Tool search guide, read 2026-08-22. States that tool search can be used with deferred functions, namespaces or MCP servers, and that for an MCP server you set defer_loading true on the server tool definition. Codex made this the default rather than a feature flag in pull request 29486, merged 2026-06-22 and shipped around version 0.142.2, which also retired the older condition of a feature flag or at least a hundred tools. We had previously said that OpenAI documented none of this and that the only way to find out was to read the binary. That was wrong. It is in this list because the correction matters more than the claim did)
  https://developers.openai.com/api/docs/guides/tools-tool-search
• Manage costs effectively, where the vendor disagrees with itself (Worth reading beside the best practices page. This one says clearing costs nothing, which is true at the moment you clear and says nothing about the cache write on the next call. It also states that a scheduled task fires on its interval while the session is idle, sending your full context each time, and that background usage is typically under four cents a session. Read 2026-08-21)
  https://code.claude.com/docs/en/costs
• Claude Code best practices, the other half of the disagreement (Recommends clearing frequently between tasks and clearing after two failed corrections. That second trigger fires around the third to fifth call of a session, which is where our own measurements put setup at roughly seventy nine percent of the input bill, priced at the one hour cache write rate a subscription actually pays. Neither page mentions the other. Read 2026-08-21)
  https://code.claude.com/docs/en/best-practices
• Maximizing the value of your Claude Code sessions (Anthropic, 2026-08-14. The clearest vendor statement of the mechanism this episode is built on: nothing gets sent just once, everything in the conversation gets sent again on every turn after it, and the cache has to match from the very start of the request forward. Also the source for the cache lifetime being an hour on a subscription and five minutes on an API key)
  https://claude.com/blog/maximizing-the-value-of-your-claude-code-sessions
• Don&apos;t Break the Cache — the academic version of the same finding (Lumer and colleagues, January 2026. Over 500 agent sessions across three vendors. Caching reduces cost by forty one to eighty percent, and naive full context caching can paradoxically increase latency, so they recommend excluding dynamic tool results from the cached prefix. Independent support for the prefix fragility this episode is about)
  https://arxiv.org/abs/2601.06007
• Effective harnesses for long-running agents (Anthropic, November 2025. Compaction alone is not sufficient for work that spans sessions; durable artifacts such as git history, a progress file and a structured feature list are what actually bridge them. The evidence behind writing down what is true before you clear)
  https://www.anthropic.com/engineering/effective-harnesses-for-long-running-agents
• Effective context engineering for AI agents (Anthropic, September 2025. Context as a finite resource, just in time retrieval, structured note taking, and the sub agent return contract. Note the original says sub agents often return summaries of a thousand to two thousand tokens, which describes what happens rather than prescribing a rule)
  https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents
• Context Rot — why a longer window is not a bigger brain (Chroma, July 2025, eighteen frontier models. Every model tested degrades as input grows, and semantically similar distractors hurt more than length alone. Read it for the mechanism rather than for a threshold; the widely repeated three hundred to four hundred thousand token figure is not in this report, which does not test above roughly a hundred and thirteen thousand)
  https://www.trychroma.com/research/context-rot

The written deep dive, which keeps updating: https://aiuniversity.com/#/deep-dive/developer-token-cost</itunes:summary>
      <description><![CDATA[<p>What Actually Eats Your Week: where it started, how it works, what has actually been measured versus what has only been claimed, where people disagree, and what to do with it. Chapters: Cold open · Why you cannot just look it up · One: what actually happens when you hit enter · Two: the eight ways you break it yourself · Three: the advice that expired · The one that was never real · If you write the API calls yourself · Four: the two claims somebody actually tested · What to do on Monday · Where this stops being true.</p><p>Sources, every one with its date:</p><ul><li><a href="https://code.claude.com/docs/en/settings">Our own three arm test of the ignore file that does not work</a> — AI University research note, run 2026-08-21 on Claude Code 2.1.236. A junk file containing a canary string, read back by a headless agent under three conditions. Arm one, no ignore file: read succeeded. Arm two, an ignore file naming the junk file exactly: read succeeded, canary returned verbatim. Arm three, a deny rule on reading that path in settings, with the ignore file still present: read denied. The method is here so you can rerun it rather than take our word for it. The working mechanism is a deny rule under permissions in your settings file, documented at the settings link in these notes</li><li><a href="https://www.theregister.com/2026/01/28/claude_code_ai_secrets_files/">The Register on Claude asserting a protection feature that does not exist</a> — Thomas Claburn, 2026-01-28. Reports Claude telling a user that an ignore file works like gitignore and that Claude Code will refuse to read matching files. The article's verdict is flat: Claude is incorrect. Anthropic did not respond to a request for comment. This matters because people believed their environment files were protected</li><li><a href="https://blog.jetbrains.com/ai/2026/07/speak-to-ai-agents-like-cavemen-tosave-tokens/">JetBrains measured a terse prompting tool on real agentic work</a> — Denis Shiryaev, July 2026. Claude Code headless, claude-sonnet-5 at low effort, SkillsBench, 86 tasks and 82 clean pairs, roughly 240 trials. The tool claims about sixty five percent output reduction on its own prose benchmark. Measured on coding: output tokens down 8.5 percent, cost about ten percent, quality indistinguishable at p equals 0.82. Their verdict: safe, honest about style, oversold on savings. Note the tool's readme now carries both numbers and explains the gap</li><li><a href="https://blog.jetbrains.com/ai/2026/07/rtk-claude-code-token-savings/">JetBrains measured the sixty to ninety percent claim, and it came out negative</a> — Same author and rig. Four paired runs, 425 billed trials, about 320 dollars. The tool's readme promises sixty to ninety percent less token consumption. Measured: a median 7.6 percent increase in cost per task at low effort, with quality a wash. Their explanation for why the claim had nowhere to live is that the hook only ever sees about a fifth of the tool output, and most input is cached re reads billed at the lower rate</li><li><a href="https://github.com/anthropics/claude-code/issues/3406">The bug report the eighteen thousand token figure actually comes from</a> — Opened 2025-07-12. Read the numbers carefully: built in tools alone are ten to eleven thousand tokens, MCP servers add four to eight thousand on top, and the total overhead is ten to twenty thousand tokens at conversation start. It is a TOTAL for built ins plus MCP, not a per server figure, and the reproduction rows make that explicit</li><li><a href="https://github.com/zhang-liz/mcp-token-benchmark">Per server MCP costs, actually measured, and they vary twenty five fold</a> — A benchmark that states its method: stdio handshake, list the tools, serialise name, description and input schema, count with a named tokenizer. Slack comes in around 679 tokens. Notion comes in around 17,161 for 24 tools. So one server costing eighteen thousand tokens is true of the worst one and about twenty five times wrong for a typical one, and nobody repeating the number says which</li><li><a href="https://github.com/anthropics/claude-code/issues/46829">The cache lifetime that moved twice without an announcement</a> — A user's analysis of 119,866 API calls across two machines, January to April 2026, reading raw session logs. Documents the one hour cache lifetime silently reverting to five minutes around 6 March 2026, a twenty to thirty two percent rise in cache creation cost, and subscription users hitting quota limits for the first time. Closed as not planned with no vendor reply. This is why advice that looks wrong today was often right when it was written</li><li><a href="https://code.claude.com/docs/en/prompt-caching">How Claude Code uses prompt caching, including every way you break it</a> — The primary source for the eight breakers and the eight safe actions. Switching models, changing effort, fast mode, connecting or disconnecting a server whose tools are loaded upfront, toggling a plugin, denying a tool by bare name, compacting, and upgrading. Also states plainly that each model has its own cache and switching recomputes the entire request even when the content is identical, and that plan mode switches models when the opus plan setting is on. Read 2026-08-21</li><li><a href="https://www.anthropic.com/engineering/advanced-tool-use">Anthropic on deferring tool definitions, and the accuracy result</a> — 2025-11-24. Reports about 77 thousand tokens of startup context coming down to about 8.7 thousand, an eighty five percent reduction, with accuracy improving rather than degrading on their internal evaluation. Treat the accuracy numbers as their claim on their own eval, unreplicated. The post separately notes tool definitions alone reaching 134 thousand tokens before optimisation; that is a different quantity and must not be paired with the 8.7 thousand figure, since 134 to 8.7 is ninety four percent rather than eighty five. In Claude Code deferral became the default in mid January 2026, and it is now unconditional by default rather than threshold based. The ten percent of context window threshold applies only if you opt into threshold mode.</li><li><a href="https://developers.openai.com/api/docs/guides/tools-tool-search">OpenAI documents deferred tool loading too, which corrects something we said</a> — OpenAI, Tool search guide, read 2026-08-22. States that tool search can be used with deferred functions, namespaces or MCP servers, and that for an MCP server you set defer_loading true on the server tool definition. Codex made this the default rather than a feature flag in pull request 29486, merged 2026-06-22 and shipped around version 0.142.2, which also retired the older condition of a feature flag or at least a hundred tools. We had previously said that OpenAI documented none of this and that the only way to find out was to read the binary. That was wrong. It is in this list because the correction matters more than the claim did</li><li><a href="https://code.claude.com/docs/en/costs">Manage costs effectively, where the vendor disagrees with itself</a> — Worth reading beside the best practices page. This one says clearing costs nothing, which is true at the moment you clear and says nothing about the cache write on the next call. It also states that a scheduled task fires on its interval while the session is idle, sending your full context each time, and that background usage is typically under four cents a session. Read 2026-08-21</li><li><a href="https://code.claude.com/docs/en/best-practices">Claude Code best practices, the other half of the disagreement</a> — Recommends clearing frequently between tasks and clearing after two failed corrections. That second trigger fires around the third to fifth call of a session, which is where our own measurements put setup at roughly seventy nine percent of the input bill, priced at the one hour cache write rate a subscription actually pays. Neither page mentions the other. Read 2026-08-21</li><li><a href="https://claude.com/blog/maximizing-the-value-of-your-claude-code-sessions">Maximizing the value of your Claude Code sessions</a> — Anthropic, 2026-08-14. The clearest vendor statement of the mechanism this episode is built on: nothing gets sent just once, everything in the conversation gets sent again on every turn after it, and the cache has to match from the very start of the request forward. Also the source for the cache lifetime being an hour on a subscription and five minutes on an API key</li><li><a href="https://arxiv.org/abs/2601.06007">Don't Break the Cache — the academic version of the same finding</a> — Lumer and colleagues, January 2026. Over 500 agent sessions across three vendors. Caching reduces cost by forty one to eighty percent, and naive full context caching can paradoxically increase latency, so they recommend excluding dynamic tool results from the cached prefix. Independent support for the prefix fragility this episode is about</li><li><a href="https://www.anthropic.com/engineering/effective-harnesses-for-long-running-agents">Effective harnesses for long-running agents</a> — Anthropic, November 2025. Compaction alone is not sufficient for work that spans sessions; durable artifacts such as git history, a progress file and a structured feature list are what actually bridge them. The evidence behind writing down what is true before you clear</li><li><a href="https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents">Effective context engineering for AI agents</a> — Anthropic, September 2025. Context as a finite resource, just in time retrieval, structured note taking, and the sub agent return contract. Note the original says sub agents often return summaries of a thousand to two thousand tokens, which describes what happens rather than prescribing a rule</li><li><a href="https://www.trychroma.com/research/context-rot">Context Rot — why a longer window is not a bigger brain</a> — Chroma, July 2025, eighteen frontier models. Every model tested degrades as input grows, and semantically similar distractors hurt more than length alone. Read it for the mechanism rather than for a threshold; the widely repeated three hundred to four hundred thousand token figure is not in this report, which does not test above roughly a hundred and thirteen thousand</li></ul><p>The written deep dive — which keeps updating as new work lands — is at <a href="https://aiuniversity.com/#/deep-dive/developer-token-cost">AI University</a>.</p>]]></description>
      <content:encoded><![CDATA[<p>What Actually Eats Your Week: where it started, how it works, what has actually been measured versus what has only been claimed, where people disagree, and what to do with it. Chapters: Cold open · Why you cannot just look it up · One: what actually happens when you hit enter · Two: the eight ways you break it yourself · Three: the advice that expired · The one that was never real · If you write the API calls yourself · Four: the two claims somebody actually tested · What to do on Monday · Where this stops being true.</p><p>Sources, every one with its date:</p><ul><li><a href="https://code.claude.com/docs/en/settings">Our own three arm test of the ignore file that does not work</a> — AI University research note, run 2026-08-21 on Claude Code 2.1.236. A junk file containing a canary string, read back by a headless agent under three conditions. Arm one, no ignore file: read succeeded. Arm two, an ignore file naming the junk file exactly: read succeeded, canary returned verbatim. Arm three, a deny rule on reading that path in settings, with the ignore file still present: read denied. The method is here so you can rerun it rather than take our word for it. The working mechanism is a deny rule under permissions in your settings file, documented at the settings link in these notes</li><li><a href="https://www.theregister.com/2026/01/28/claude_code_ai_secrets_files/">The Register on Claude asserting a protection feature that does not exist</a> — Thomas Claburn, 2026-01-28. Reports Claude telling a user that an ignore file works like gitignore and that Claude Code will refuse to read matching files. The article's verdict is flat: Claude is incorrect. Anthropic did not respond to a request for comment. This matters because people believed their environment files were protected</li><li><a href="https://blog.jetbrains.com/ai/2026/07/speak-to-ai-agents-like-cavemen-tosave-tokens/">JetBrains measured a terse prompting tool on real agentic work</a> — Denis Shiryaev, July 2026. Claude Code headless, claude-sonnet-5 at low effort, SkillsBench, 86 tasks and 82 clean pairs, roughly 240 trials. The tool claims about sixty five percent output reduction on its own prose benchmark. Measured on coding: output tokens down 8.5 percent, cost about ten percent, quality indistinguishable at p equals 0.82. Their verdict: safe, honest about style, oversold on savings. Note the tool's readme now carries both numbers and explains the gap</li><li><a href="https://blog.jetbrains.com/ai/2026/07/rtk-claude-code-token-savings/">JetBrains measured the sixty to ninety percent claim, and it came out negative</a> — Same author and rig. Four paired runs, 425 billed trials, about 320 dollars. The tool's readme promises sixty to ninety percent less token consumption. Measured: a median 7.6 percent increase in cost per task at low effort, with quality a wash. Their explanation for why the claim had nowhere to live is that the hook only ever sees about a fifth of the tool output, and most input is cached re reads billed at the lower rate</li><li><a href="https://github.com/anthropics/claude-code/issues/3406">The bug report the eighteen thousand token figure actually comes from</a> — Opened 2025-07-12. Read the numbers carefully: built in tools alone are ten to eleven thousand tokens, MCP servers add four to eight thousand on top, and the total overhead is ten to twenty thousand tokens at conversation start. It is a TOTAL for built ins plus MCP, not a per server figure, and the reproduction rows make that explicit</li><li><a href="https://github.com/zhang-liz/mcp-token-benchmark">Per server MCP costs, actually measured, and they vary twenty five fold</a> — A benchmark that states its method: stdio handshake, list the tools, serialise name, description and input schema, count with a named tokenizer. Slack comes in around 679 tokens. Notion comes in around 17,161 for 24 tools. So one server costing eighteen thousand tokens is true of the worst one and about twenty five times wrong for a typical one, and nobody repeating the number says which</li><li><a href="https://github.com/anthropics/claude-code/issues/46829">The cache lifetime that moved twice without an announcement</a> — A user's analysis of 119,866 API calls across two machines, January to April 2026, reading raw session logs. Documents the one hour cache lifetime silently reverting to five minutes around 6 March 2026, a twenty to thirty two percent rise in cache creation cost, and subscription users hitting quota limits for the first time. Closed as not planned with no vendor reply. This is why advice that looks wrong today was often right when it was written</li><li><a href="https://code.claude.com/docs/en/prompt-caching">How Claude Code uses prompt caching, including every way you break it</a> — The primary source for the eight breakers and the eight safe actions. Switching models, changing effort, fast mode, connecting or disconnecting a server whose tools are loaded upfront, toggling a plugin, denying a tool by bare name, compacting, and upgrading. Also states plainly that each model has its own cache and switching recomputes the entire request even when the content is identical, and that plan mode switches models when the opus plan setting is on. Read 2026-08-21</li><li><a href="https://www.anthropic.com/engineering/advanced-tool-use">Anthropic on deferring tool definitions, and the accuracy result</a> — 2025-11-24. Reports about 77 thousand tokens of startup context coming down to about 8.7 thousand, an eighty five percent reduction, with accuracy improving rather than degrading on their internal evaluation. Treat the accuracy numbers as their claim on their own eval, unreplicated. The post separately notes tool definitions alone reaching 134 thousand tokens before optimisation; that is a different quantity and must not be paired with the 8.7 thousand figure, since 134 to 8.7 is ninety four percent rather than eighty five. In Claude Code deferral became the default in mid January 2026, and it is now unconditional by default rather than threshold based. The ten percent of context window threshold applies only if you opt into threshold mode.</li><li><a href="https://developers.openai.com/api/docs/guides/tools-tool-search">OpenAI documents deferred tool loading too, which corrects something we said</a> — OpenAI, Tool search guide, read 2026-08-22. States that tool search can be used with deferred functions, namespaces or MCP servers, and that for an MCP server you set defer_loading true on the server tool definition. Codex made this the default rather than a feature flag in pull request 29486, merged 2026-06-22 and shipped around version 0.142.2, which also retired the older condition of a feature flag or at least a hundred tools. We had previously said that OpenAI documented none of this and that the only way to find out was to read the binary. That was wrong. It is in this list because the correction matters more than the claim did</li><li><a href="https://code.claude.com/docs/en/costs">Manage costs effectively, where the vendor disagrees with itself</a> — Worth reading beside the best practices page. This one says clearing costs nothing, which is true at the moment you clear and says nothing about the cache write on the next call. It also states that a scheduled task fires on its interval while the session is idle, sending your full context each time, and that background usage is typically under four cents a session. Read 2026-08-21</li><li><a href="https://code.claude.com/docs/en/best-practices">Claude Code best practices, the other half of the disagreement</a> — Recommends clearing frequently between tasks and clearing after two failed corrections. That second trigger fires around the third to fifth call of a session, which is where our own measurements put setup at roughly seventy nine percent of the input bill, priced at the one hour cache write rate a subscription actually pays. Neither page mentions the other. Read 2026-08-21</li><li><a href="https://claude.com/blog/maximizing-the-value-of-your-claude-code-sessions">Maximizing the value of your Claude Code sessions</a> — Anthropic, 2026-08-14. The clearest vendor statement of the mechanism this episode is built on: nothing gets sent just once, everything in the conversation gets sent again on every turn after it, and the cache has to match from the very start of the request forward. Also the source for the cache lifetime being an hour on a subscription and five minutes on an API key</li><li><a href="https://arxiv.org/abs/2601.06007">Don't Break the Cache — the academic version of the same finding</a> — Lumer and colleagues, January 2026. Over 500 agent sessions across three vendors. Caching reduces cost by forty one to eighty percent, and naive full context caching can paradoxically increase latency, so they recommend excluding dynamic tool results from the cached prefix. Independent support for the prefix fragility this episode is about</li><li><a href="https://www.anthropic.com/engineering/effective-harnesses-for-long-running-agents">Effective harnesses for long-running agents</a> — Anthropic, November 2025. Compaction alone is not sufficient for work that spans sessions; durable artifacts such as git history, a progress file and a structured feature list are what actually bridge them. The evidence behind writing down what is true before you clear</li><li><a href="https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents">Effective context engineering for AI agents</a> — Anthropic, September 2025. Context as a finite resource, just in time retrieval, structured note taking, and the sub agent return contract. Note the original says sub agents often return summaries of a thousand to two thousand tokens, which describes what happens rather than prescribing a rule</li><li><a href="https://www.trychroma.com/research/context-rot">Context Rot — why a longer window is not a bigger brain</a> — Chroma, July 2025, eighteen frontier models. Every model tested degrades as input grows, and semantically similar distractors hurt more than length alone. Read it for the mechanism rather than for a threshold; the widely repeated three hundred to four hundred thousand token figure is not in this report, which does not test above roughly a hundred and thirteen thousand</li></ul><p>The written deep dive — which keeps updating as new work lands — is at <a href="https://aiuniversity.com/#/deep-dive/developer-token-cost">AI University</a>.</p>]]></content:encoded>
      <podcast:chapters url="https://aiuniversity.com/data/deep-dive-podcast/chapters-developer-token-cost.json" type="application/json+chapters"/>
      <podcast:transcript url="https://aiuniversity.com/data/deep-dive-podcast/transcript-developer-token-cost.vtt" type="text/vtt" language="en" rel="captions"/>
      <link>https://aiuniversity.com/#/deep-dive/developer-token-cost</link>
    </item>
    <item>
      <title>Cognitive Offloading: which thinking to hand over, and which to keep</title>
      <guid isPermaLink="false">aiu-deep-dive-cognitive-offloading</guid>
      <pubDate>Fri, 07 Aug 2026 19:22:07 +0000</pubDate>
      <enclosure url="https://op3.dev/e/aiuniversity.com/data/deep-dive-podcast/aiu-deep-dive-cognitive-offloading.mp3" length="29430811" type="audio/mpeg"/>
      <itunes:duration>0:34:59</itunes:duration>
      <itunes:episodeType>full</itunes:episodeType>
      <itunes:explicit>false</itunes:explicit>
      <itunes:summary>Cognitive Offloading: where it started, how it works, what has actually been measured versus what has only been claimed, where people disagree, and what to do with it. Chapters: Cold open · Why this, why now · The ladder · How it actually works · Demonstrated vs claimed · Where people disagree · Use it tomorrow · Where to go next.

Sources:
• Randomized trial: AI lesson-planning saves teacher time but may undermine student learning (The Hechinger Report)
  https://hechingerreport.org/proof-points-ai-in-teaching/
• Ironies of Automation (Lisanne Bainbridge, Automatica, 1983)
  https://www.sciencedirect.com/science/article/pii/0005109883900468
• Diagnostic Accuracy of Digital Screening Mammography With and Without Computer-Aided Detection (Lehman et al., JAMA Internal Medicine, 2015)
  https://pubmed.ncbi.nlm.nih.gov/26414882/
• The Impact of Generative AI on Critical Thinking: Self-Reported Reductions in Cognitive Effort (Lee et al., Microsoft Research + Carnegie Mellon, CHI 2025)
  https://dl.acm.org/doi/full/10.1145/3706598.3713778
• Effects of Hand-Held Calculators in Precollege Mathematics Education: A Meta-Analysis (Hembree &amp; Dessart, JRME 17(2), 1986)
  https://pubs.nctm.org/view/journals/jrme/17/2/article-p83.xml
• Google Effects on Memory: Cognitive Consequences of Having Information at Our Fingertips (Sparrow, Liu &amp; Wegner, Science 333(6043), 2011)
  https://www.science.org/doi/10.1126/science.1207745
• Test-Enhanced Learning: Taking Memory Tests Improves Long-Term Retention (Roediger &amp; Karpicke, Psychological Science, 2006)
  https://journals.sagepub.com/doi/10.1111/j.1467-9280.2006.01693.x
• Cognitive Offloading (Risko &amp; Gilbert, Trends in Cognitive Sciences, 2016)
  https://www.cell.com/trends/cognitive-sciences/fulltext/S1364-6613(16)30078-4
• Navigation-related structural change in the hippocampi of taxi drivers (Maguire et al., PNAS, 2000)
  https://www.pnas.org/doi/10.1073/pnas.070039597
• Miami University: all academic departments to integrate AI into the curriculum by 2027-28 (Miami University, 5 Aug 2026)
  https://miamioh.edu/news/2026/08/all-academic-departments-at-miami-to-integrate-artificial-intelligence-into-the-curriculum-by-2027-2028.html
• Design Arena raises $7.9M to build a &apos;taste&apos; benchmark for AI models (TechCrunch, 3 Aug 2026)
  https://techcrunch.com/2026/08/03/designarena-creators-raise-7-9-million-to-bring-taste-to-ai-models/
• Air France Flight 447 — final report background (BEA / overview)
  https://en.wikipedia.org/wiki/Air_France_Flight_447

The written deep dive, which keeps updating: https://aiuniversity.com/#/deep-dive/cognitive-offloading</itunes:summary>
      <description><![CDATA[<p>Cognitive Offloading: where it started, how it works, what has actually been measured versus what has only been claimed, where people disagree, and what to do with it. Chapters: Cold open · Why this, why now · The ladder · How it actually works · Demonstrated vs claimed · Where people disagree · Use it tomorrow · Where to go next.</p><p>Sources, every one with its date:</p><ul><li><a href="https://aiuniversity.com/#/news/aHR0cHM6Ly9oZWNoaW5nZXJyZXBvcnQub3JnL3Byb29mLXBvaW50cy1haS1pbi10ZWFjaGluZy8">Randomized trial: AI lesson-planning saves teacher time but may undermine student learning</a> — The Hechinger Report (on AI University)</li><li><a href="https://www.sciencedirect.com/science/article/pii/0005109883900468">Ironies of Automation</a> — Lisanne Bainbridge, Automatica, 1983</li><li><a href="https://pubmed.ncbi.nlm.nih.gov/26414882/">Diagnostic Accuracy of Digital Screening Mammography With and Without Computer-Aided Detection</a> — Lehman et al., JAMA Internal Medicine, 2015</li><li><a href="https://dl.acm.org/doi/full/10.1145/3706598.3713778">The Impact of Generative AI on Critical Thinking: Self-Reported Reductions in Cognitive Effort</a> — Lee et al., Microsoft Research + Carnegie Mellon, CHI 2025</li><li><a href="https://pubs.nctm.org/view/journals/jrme/17/2/article-p83.xml">Effects of Hand-Held Calculators in Precollege Mathematics Education: A Meta-Analysis</a> — Hembree &amp; Dessart, JRME 17(2), 1986</li><li><a href="https://www.science.org/doi/10.1126/science.1207745">Google Effects on Memory: Cognitive Consequences of Having Information at Our Fingertips</a> — Sparrow, Liu &amp; Wegner, Science 333(6043), 2011</li><li><a href="https://journals.sagepub.com/doi/10.1111/j.1467-9280.2006.01693.x">Test-Enhanced Learning: Taking Memory Tests Improves Long-Term Retention</a> — Roediger &amp; Karpicke, Psychological Science, 2006</li><li><a href="https://www.cell.com/trends/cognitive-sciences/fulltext/S1364-6613(16)30078-4">Cognitive Offloading</a> — Risko &amp; Gilbert, Trends in Cognitive Sciences, 2016</li><li><a href="https://www.pnas.org/doi/10.1073/pnas.070039597">Navigation-related structural change in the hippocampi of taxi drivers</a> — Maguire et al., PNAS, 2000</li><li><a href="https://miamioh.edu/news/2026/08/all-academic-departments-at-miami-to-integrate-artificial-intelligence-into-the-curriculum-by-2027-2028.html">Miami University: all academic departments to integrate AI into the curriculum by 2027-28</a> — Miami University, 5 Aug 2026</li><li><a href="https://aiuniversity.com/#/news/aHR0cHM6Ly90ZWNoY3J1bmNoLmNvbS8yMDI2LzA4LzAzL2Rlc2lnbmFyZW5hLWNyZWF0b3JzLXJhaXNlLTctOS1taWxsaW9uLXRvLWJyaW5nLXRhc3RlLXRvLWFpLW1vZGVscy8">Design Arena raises $7.9M to build a 'taste' benchmark for AI models</a> — TechCrunch, 3 Aug 2026 (on AI University)</li><li><a href="https://en.wikipedia.org/wiki/Air_France_Flight_447">Air France Flight 447 — final report background</a> — BEA / overview</li></ul><p>The written deep dive — which keeps updating as new work lands — is at <a href="https://aiuniversity.com/#/deep-dive/cognitive-offloading">AI University</a>.</p>]]></description>
      <content:encoded><![CDATA[<p>Cognitive Offloading: where it started, how it works, what has actually been measured versus what has only been claimed, where people disagree, and what to do with it. Chapters: Cold open · Why this, why now · The ladder · How it actually works · Demonstrated vs claimed · Where people disagree · Use it tomorrow · Where to go next.</p><p>Sources, every one with its date:</p><ul><li><a href="https://aiuniversity.com/#/news/aHR0cHM6Ly9oZWNoaW5nZXJyZXBvcnQub3JnL3Byb29mLXBvaW50cy1haS1pbi10ZWFjaGluZy8">Randomized trial: AI lesson-planning saves teacher time but may undermine student learning</a> — The Hechinger Report (on AI University)</li><li><a href="https://www.sciencedirect.com/science/article/pii/0005109883900468">Ironies of Automation</a> — Lisanne Bainbridge, Automatica, 1983</li><li><a href="https://pubmed.ncbi.nlm.nih.gov/26414882/">Diagnostic Accuracy of Digital Screening Mammography With and Without Computer-Aided Detection</a> — Lehman et al., JAMA Internal Medicine, 2015</li><li><a href="https://dl.acm.org/doi/full/10.1145/3706598.3713778">The Impact of Generative AI on Critical Thinking: Self-Reported Reductions in Cognitive Effort</a> — Lee et al., Microsoft Research + Carnegie Mellon, CHI 2025</li><li><a href="https://pubs.nctm.org/view/journals/jrme/17/2/article-p83.xml">Effects of Hand-Held Calculators in Precollege Mathematics Education: A Meta-Analysis</a> — Hembree &amp; Dessart, JRME 17(2), 1986</li><li><a href="https://www.science.org/doi/10.1126/science.1207745">Google Effects on Memory: Cognitive Consequences of Having Information at Our Fingertips</a> — Sparrow, Liu &amp; Wegner, Science 333(6043), 2011</li><li><a href="https://journals.sagepub.com/doi/10.1111/j.1467-9280.2006.01693.x">Test-Enhanced Learning: Taking Memory Tests Improves Long-Term Retention</a> — Roediger &amp; Karpicke, Psychological Science, 2006</li><li><a href="https://www.cell.com/trends/cognitive-sciences/fulltext/S1364-6613(16)30078-4">Cognitive Offloading</a> — Risko &amp; Gilbert, Trends in Cognitive Sciences, 2016</li><li><a href="https://www.pnas.org/doi/10.1073/pnas.070039597">Navigation-related structural change in the hippocampi of taxi drivers</a> — Maguire et al., PNAS, 2000</li><li><a href="https://miamioh.edu/news/2026/08/all-academic-departments-at-miami-to-integrate-artificial-intelligence-into-the-curriculum-by-2027-2028.html">Miami University: all academic departments to integrate AI into the curriculum by 2027-28</a> — Miami University, 5 Aug 2026</li><li><a href="https://aiuniversity.com/#/news/aHR0cHM6Ly90ZWNoY3J1bmNoLmNvbS8yMDI2LzA4LzAzL2Rlc2lnbmFyZW5hLWNyZWF0b3JzLXJhaXNlLTctOS1taWxsaW9uLXRvLWJyaW5nLXRhc3RlLXRvLWFpLW1vZGVscy8">Design Arena raises $7.9M to build a 'taste' benchmark for AI models</a> — TechCrunch, 3 Aug 2026 (on AI University)</li><li><a href="https://en.wikipedia.org/wiki/Air_France_Flight_447">Air France Flight 447 — final report background</a> — BEA / overview</li></ul><p>The written deep dive — which keeps updating as new work lands — is at <a href="https://aiuniversity.com/#/deep-dive/cognitive-offloading">AI University</a>.</p>]]></content:encoded>
      <podcast:chapters url="https://aiuniversity.com/data/deep-dive-podcast/chapters-cognitive-offloading.json" type="application/json+chapters"/>
      <podcast:transcript url="https://aiuniversity.com/data/deep-dive-podcast/transcript-cognitive-offloading.vtt" type="text/vtt" language="en" rel="captions"/>
      <link>https://aiuniversity.com/#/deep-dive/cognitive-offloading</link>
    </item>
    <item>
      <title>Containment: what actually happens when the model gets out</title>
      <guid isPermaLink="false">aiu-deep-dive-ai-containment</guid>
      <pubDate>Fri, 31 Jul 2026 07:34:23 +0000</pubDate>
      <enclosure url="https://op3.dev/e/aiuniversity.com/data/deep-dive-podcast/aiu-deep-dive-ai-containment.mp3" length="16640618" type="audio/mpeg"/>
      <itunes:duration>0:19:45</itunes:duration>
      <itunes:episodeType>full</itunes:episodeType>
      <itunes:explicit>false</itunes:explicit>
      <itunes:summary>AI Containment: where it started, how it works, what has actually been measured versus what has only been claimed, where people disagree, and what to do with it. Chapters: Cold open · Why this, why now · The ladder · How it actually works · Demonstrated versus claimed · Where people disagree · Use it tomorrow · Where to go next.

Sources:
• Investigating incidents from our cybersecurity evaluations — the three Anthropic incidents (Anthropic (2026-07-30))
  https://www.anthropic.com/news/investigating-incidents-cybersecurity-evals
• OpenAI and Hugging Face address a security incident during model evaluation (OpenAI (2026-07))
  https://openai.com/index/hugging-face-model-evaluation-security-incident/
• Security incident disclosure — the roughly seventeen thousand six hundred actions over about two and a half days (Hugging Face (2026-07))
  https://huggingface.co/blog/security-incident-july-2026
• OpenAI&apos;s accidental cyberattack against Hugging Face is science fiction that happened (Simon Willison (2026-07-22))
  https://simonwillison.net/2026/Jul/22/openai-cyberattack/
• OpenAI cyber models broke out of training environment to hack Hugging Face (CNBC (2026-07-22))
  https://www.cnbc.com/2026/07/22/open-ai-cyber-models-hack-hugging-face.html
• Faulty Reward Functions in the Wild — the CoastRunners boat (OpenAI, Amodei and Clark (2016-12))
  https://openai.com/index/faulty-reward-functions/
• Specification gaming: the flip side of AI ingenuity — the hundred-plus examples (Google DeepMind (2020))
  https://deepmind.google/blog/specification-gaming-the-flip-side-of-ai-ingenuity/
• AI Kill Switch Act targets OpenAI and Anthropic after the containment breach (TechTimes (2026-07-24))
  https://www.techtimes.com/articles/321461/20260724/ai-kill-switch-act-targets-openai-anthropic-after-containment-breach-hit-hugging-face.htm
• The OpenAI and Hugging Face incident demands urgent congressional oversight (TechPolicy.Press (2026-07))
  https://www.techpolicy.press/the-openai-hugging-face-incident-demands-urgent-congressional-oversight/
• Hugging Face breach raises hard questions on liability (Dark Reading (2026-07))
  https://www.darkreading.com/cyberattacks-data-breaches/liable-ai-agents-escape-hugging-face-breach-questions

The written deep dive, which keeps updating: https://aiuniversity.com/#/deep-dive/ai-containment</itunes:summary>
      <description><![CDATA[<p>AI Containment: where it started, how it works, what has actually been measured versus what has only been claimed, where people disagree, and what to do with it. Chapters: Cold open · Why this, why now · The ladder · How it actually works · Demonstrated versus claimed · Where people disagree · Use it tomorrow · Where to go next.</p><p>Sources, every one with its date:</p><ul><li><a href="https://www.anthropic.com/news/investigating-incidents-cybersecurity-evals">Investigating incidents from our cybersecurity evaluations — the three Anthropic incidents</a> — Anthropic (2026-07-30)</li><li><a href="https://aiuniversity.com/#/news/aHR0cHM6Ly9vcGVuYWkuY29tL2luZGV4L2h1Z2dpbmctZmFjZS1tb2RlbC1ldmFsdWF0aW9uLXNlY3VyaXR5LWluY2lkZW50">OpenAI and Hugging Face address a security incident during model evaluation</a> — OpenAI (2026-07) (on AI University)</li><li><a href="https://aiuniversity.com/#/news/aHR0cHM6Ly9odWdnaW5nZmFjZS5jby9ibG9nL3NlY3VyaXR5LWluY2lkZW50LWp1bHktMjAyNg">Security incident disclosure — the roughly seventeen thousand six hundred actions over about two and a half days</a> — Hugging Face (2026-07) (on AI University)</li><li><a href="https://aiuniversity.com/#/news/aHR0cHM6Ly9zaW1vbndpbGxpc29uLm5ldC8yMDI2L0p1bC8yMi9vcGVuYWktY3liZXJhdHRhY2svI2F0b20tZXZlcnl0aGluZw">OpenAI's accidental cyberattack against Hugging Face is science fiction that happened</a> — Simon Willison (2026-07-22) (on AI University)</li><li><a href="https://www.cnbc.com/2026/07/22/open-ai-cyber-models-hack-hugging-face.html">OpenAI cyber models broke out of training environment to hack Hugging Face</a> — CNBC (2026-07-22)</li><li><a href="https://openai.com/index/faulty-reward-functions/">Faulty Reward Functions in the Wild — the CoastRunners boat</a> — OpenAI, Amodei and Clark (2016-12)</li><li><a href="https://deepmind.google/blog/specification-gaming-the-flip-side-of-ai-ingenuity/">Specification gaming: the flip side of AI ingenuity — the hundred-plus examples</a> — Google DeepMind (2020)</li><li><a href="https://www.techtimes.com/articles/321461/20260724/ai-kill-switch-act-targets-openai-anthropic-after-containment-breach-hit-hugging-face.htm">AI Kill Switch Act targets OpenAI and Anthropic after the containment breach</a> — TechTimes (2026-07-24)</li><li><a href="https://www.techpolicy.press/the-openai-hugging-face-incident-demands-urgent-congressional-oversight/">The OpenAI and Hugging Face incident demands urgent congressional oversight</a> — TechPolicy.Press (2026-07)</li><li><a href="https://www.darkreading.com/cyberattacks-data-breaches/liable-ai-agents-escape-hugging-face-breach-questions">Hugging Face breach raises hard questions on liability</a> — Dark Reading (2026-07)</li></ul><p>The written deep dive — which keeps updating as new work lands — is at <a href="https://aiuniversity.com/#/deep-dive/ai-containment">AI University</a>.</p>]]></description>
      <content:encoded><![CDATA[<p>AI Containment: where it started, how it works, what has actually been measured versus what has only been claimed, where people disagree, and what to do with it. Chapters: Cold open · Why this, why now · The ladder · How it actually works · Demonstrated versus claimed · Where people disagree · Use it tomorrow · Where to go next.</p><p>Sources, every one with its date:</p><ul><li><a href="https://www.anthropic.com/news/investigating-incidents-cybersecurity-evals">Investigating incidents from our cybersecurity evaluations — the three Anthropic incidents</a> — Anthropic (2026-07-30)</li><li><a href="https://aiuniversity.com/#/news/aHR0cHM6Ly9vcGVuYWkuY29tL2luZGV4L2h1Z2dpbmctZmFjZS1tb2RlbC1ldmFsdWF0aW9uLXNlY3VyaXR5LWluY2lkZW50">OpenAI and Hugging Face address a security incident during model evaluation</a> — OpenAI (2026-07) (on AI University)</li><li><a href="https://aiuniversity.com/#/news/aHR0cHM6Ly9odWdnaW5nZmFjZS5jby9ibG9nL3NlY3VyaXR5LWluY2lkZW50LWp1bHktMjAyNg">Security incident disclosure — the roughly seventeen thousand six hundred actions over about two and a half days</a> — Hugging Face (2026-07) (on AI University)</li><li><a href="https://aiuniversity.com/#/news/aHR0cHM6Ly9zaW1vbndpbGxpc29uLm5ldC8yMDI2L0p1bC8yMi9vcGVuYWktY3liZXJhdHRhY2svI2F0b20tZXZlcnl0aGluZw">OpenAI's accidental cyberattack against Hugging Face is science fiction that happened</a> — Simon Willison (2026-07-22) (on AI University)</li><li><a href="https://www.cnbc.com/2026/07/22/open-ai-cyber-models-hack-hugging-face.html">OpenAI cyber models broke out of training environment to hack Hugging Face</a> — CNBC (2026-07-22)</li><li><a href="https://openai.com/index/faulty-reward-functions/">Faulty Reward Functions in the Wild — the CoastRunners boat</a> — OpenAI, Amodei and Clark (2016-12)</li><li><a href="https://deepmind.google/blog/specification-gaming-the-flip-side-of-ai-ingenuity/">Specification gaming: the flip side of AI ingenuity — the hundred-plus examples</a> — Google DeepMind (2020)</li><li><a href="https://www.techtimes.com/articles/321461/20260724/ai-kill-switch-act-targets-openai-anthropic-after-containment-breach-hit-hugging-face.htm">AI Kill Switch Act targets OpenAI and Anthropic after the containment breach</a> — TechTimes (2026-07-24)</li><li><a href="https://www.techpolicy.press/the-openai-hugging-face-incident-demands-urgent-congressional-oversight/">The OpenAI and Hugging Face incident demands urgent congressional oversight</a> — TechPolicy.Press (2026-07)</li><li><a href="https://www.darkreading.com/cyberattacks-data-breaches/liable-ai-agents-escape-hugging-face-breach-questions">Hugging Face breach raises hard questions on liability</a> — Dark Reading (2026-07)</li></ul><p>The written deep dive — which keeps updating as new work lands — is at <a href="https://aiuniversity.com/#/deep-dive/ai-containment">AI University</a>.</p>]]></content:encoded>
      <podcast:chapters url="https://aiuniversity.com/data/deep-dive-podcast/chapters-ai-containment.json" type="application/json+chapters"/>
      <podcast:transcript url="https://aiuniversity.com/data/deep-dive-podcast/transcript-ai-containment.vtt" type="text/vtt" language="en" rel="captions"/>
      <link>https://aiuniversity.com/#/deep-dive/ai-containment</link>
    </item>
    <item>
      <title>Graph Engineering: what actually changed when everyone stopped talking about loops</title>
      <guid isPermaLink="false">aiu-deep-dive-graph-engineering</guid>
      <pubDate>Mon, 27 Jul 2026 06:57:11 +0000</pubDate>
      <enclosure url="https://op3.dev/e/aiuniversity.com/data/deep-dive-podcast/aiu-deep-dive-graph-engineering.mp3" length="21490215" type="audio/mpeg"/>
      <itunes:duration>0:25:30</itunes:duration>
      <itunes:image href="https://aiuniversity.com/data/deep-dive-podcast/cover-graph-engineering.png"/>
      <itunes:episodeType>full</itunes:episodeType>
      <itunes:explicit>false</itunes:explicit>
      <itunes:summary>Graph Engineering: where it started, how it works, what has actually been measured versus what has only been claimed, where people disagree, and what to do with it. Chapters: Cold open · Why this, why now · The ladder · How it actually works · Demonstrated versus claimed · Where people disagree · Use it tomorrow · Where to go next.

Sources:
• Building Effective Agents — the five patterns, December 2024 (Anthropic (Erik S. and Barry Zhang))
  https://www.anthropic.com/engineering/building-effective-agents
• How we built our multi-agent research system — the 90.2%, the 15x, and the limitations (Anthropic)
  https://www.anthropic.com/engineering/multi-agent-research-system
• Effective context engineering for AI agents (Anthropic)
  https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents
• Is Graph Engineering Real? Why Everyone Is Talking About It (FOD#159) (Turingpost — Ksenia Se)
  https://www.turingpost.com/p/is-graph-engineering-real-why-everyone-is-talking-about-it
• Graph Engineering Explained: What Actually Changed (Louis-François Bouchard)
  https://www.louisbouchard.ai/graph-engineering-explained/
• LangGraph — the reference implementation of these patterns since January 2024 (LangChain)
  https://www.langchain.com/langgraph
• The Ralph Wiggum loop — where the loop rung started (Geoffrey Huntley)
  https://ghuntley.com/ralph/
• CodeCompass: Navigating the Navigation Paradox in Agentic Code Intelligence — the 58% zero-tool-call finding (arXiv 2602.20048)
  https://arxiv.org/abs/2602.20048
• Chain-of-thought prompting elicits reasoning in large language models (Wei et al., January 2022)
  https://arxiv.org/abs/2201.11903
• Retrieval-Augmented Generation for knowledge-intensive NLP tasks (Lewis et al., 2020)
  https://arxiv.org/abs/2005.11401
• FORGET Loop Engineering. Graph Engineering is about THIS — a worked LangGraph StateGraph (Gao Dalie)
  https://www.youtube.com/watch?v=ueA8RWZ9f5Q
• The written deep dive, with the news and videos on this subject updating daily (AI University)
  https://aiuniversity.com/#/deep-dive/graph-engineering

The written deep dive, which keeps updating: https://aiuniversity.com/#/deep-dive/graph-engineering</itunes:summary>
      <description><![CDATA[<p>Graph Engineering: where it started, how it works, what has actually been measured versus what has only been claimed, where people disagree, and what to do with it. Chapters: Cold open · Why this, why now · The ladder · How it actually works · Demonstrated versus claimed · Where people disagree · Use it tomorrow · Where to go next.</p><p>Sources, every one with its date:</p><ul><li><a href="https://www.anthropic.com/engineering/building-effective-agents">Building Effective Agents — the five patterns, December 2024</a> — Anthropic (Erik S. and Barry Zhang)</li><li><a href="https://www.anthropic.com/engineering/multi-agent-research-system">How we built our multi-agent research system — the 90.2%, the 15x, and the limitations</a> — Anthropic</li><li><a href="https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents">Effective context engineering for AI agents</a> — Anthropic</li><li><a href="https://www.turingpost.com/p/is-graph-engineering-real-why-everyone-is-talking-about-it">Is Graph Engineering Real? Why Everyone Is Talking About It (FOD#159)</a> — Turingpost — Ksenia Se</li><li><a href="https://www.louisbouchard.ai/graph-engineering-explained/">Graph Engineering Explained: What Actually Changed</a> — Louis-François Bouchard</li><li><a href="https://www.langchain.com/langgraph">LangGraph — the reference implementation of these patterns since January 2024</a> — LangChain</li><li><a href="https://ghuntley.com/ralph/">The Ralph Wiggum loop — where the loop rung started</a> — Geoffrey Huntley</li><li><a href="https://arxiv.org/abs/2602.20048">CodeCompass: Navigating the Navigation Paradox in Agentic Code Intelligence — the 58% zero-tool-call finding</a> — arXiv 2602.20048</li><li><a href="https://arxiv.org/abs/2201.11903">Chain-of-thought prompting elicits reasoning in large language models</a> — Wei et al., January 2022</li><li><a href="https://arxiv.org/abs/2005.11401">Retrieval-Augmented Generation for knowledge-intensive NLP tasks</a> — Lewis et al., 2020</li><li><a href="https://www.youtube.com/watch?v=ueA8RWZ9f5Q">FORGET Loop Engineering. Graph Engineering is about THIS — a worked LangGraph StateGraph</a> — Gao Dalie</li><li><a href="https://aiuniversity.com/#/deep-dive/graph-engineering">The written deep dive, with the news and videos on this subject updating daily</a> — AI University</li></ul><p>The written deep dive — which keeps updating as new work lands — is at <a href="https://aiuniversity.com/#/deep-dive/graph-engineering">AI University</a>.</p>]]></description>
      <content:encoded><![CDATA[<p>Graph Engineering: where it started, how it works, what has actually been measured versus what has only been claimed, where people disagree, and what to do with it. Chapters: Cold open · Why this, why now · The ladder · How it actually works · Demonstrated versus claimed · Where people disagree · Use it tomorrow · Where to go next.</p><p>Sources, every one with its date:</p><ul><li><a href="https://www.anthropic.com/engineering/building-effective-agents">Building Effective Agents — the five patterns, December 2024</a> — Anthropic (Erik S. and Barry Zhang)</li><li><a href="https://www.anthropic.com/engineering/multi-agent-research-system">How we built our multi-agent research system — the 90.2%, the 15x, and the limitations</a> — Anthropic</li><li><a href="https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents">Effective context engineering for AI agents</a> — Anthropic</li><li><a href="https://www.turingpost.com/p/is-graph-engineering-real-why-everyone-is-talking-about-it">Is Graph Engineering Real? Why Everyone Is Talking About It (FOD#159)</a> — Turingpost — Ksenia Se</li><li><a href="https://www.louisbouchard.ai/graph-engineering-explained/">Graph Engineering Explained: What Actually Changed</a> — Louis-François Bouchard</li><li><a href="https://www.langchain.com/langgraph">LangGraph — the reference implementation of these patterns since January 2024</a> — LangChain</li><li><a href="https://ghuntley.com/ralph/">The Ralph Wiggum loop — where the loop rung started</a> — Geoffrey Huntley</li><li><a href="https://arxiv.org/abs/2602.20048">CodeCompass: Navigating the Navigation Paradox in Agentic Code Intelligence — the 58% zero-tool-call finding</a> — arXiv 2602.20048</li><li><a href="https://arxiv.org/abs/2201.11903">Chain-of-thought prompting elicits reasoning in large language models</a> — Wei et al., January 2022</li><li><a href="https://arxiv.org/abs/2005.11401">Retrieval-Augmented Generation for knowledge-intensive NLP tasks</a> — Lewis et al., 2020</li><li><a href="https://www.youtube.com/watch?v=ueA8RWZ9f5Q">FORGET Loop Engineering. Graph Engineering is about THIS — a worked LangGraph StateGraph</a> — Gao Dalie</li><li><a href="https://aiuniversity.com/#/deep-dive/graph-engineering">The written deep dive, with the news and videos on this subject updating daily</a> — AI University</li></ul><p>The written deep dive — which keeps updating as new work lands — is at <a href="https://aiuniversity.com/#/deep-dive/graph-engineering">AI University</a>.</p>]]></content:encoded>
      <podcast:chapters url="https://aiuniversity.com/data/deep-dive-podcast/chapters-graph-engineering.json" type="application/json+chapters"/>
      <podcast:transcript url="https://aiuniversity.com/data/deep-dive-podcast/transcript-graph-engineering.vtt" type="text/vtt" language="en" rel="captions"/>
      <link>https://aiuniversity.com/#/deep-dive/graph-engineering</link>
    </item>
  </channel>
</rss>
