<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:media="http://search.yahoo.com/mrss/">
  <channel>
    <title>AI News — cloudcodetree</title>
    <link>https://cloudcodetree.com/ai-news/</link>
    <atom:link href="https://cloudcodetree.com/feed.xml" rel="self" type="application/rss+xml" />
    <description>Daily field notes on AI-assisted engineering.</description>
    <language>en-us</language>
    <generator>cloudcodetree generate-feeds.mjs</generator>
    <lastBuildDate>Thu, 11 Jun 2026 20:20:20 GMT</lastBuildDate>
  <item>
    <title><![CDATA[BadHost (CVE-2026-48710): one malformed Host header bypasses auth on 325M-download Starlette — and every MCP server built on it]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-11-09-badhost-starlette-mcp-auth-bypass/</link>
    <guid isPermaLink="false">2026-06-11-09-badhost-starlette-mcp-auth-bypass</guid>
    <pubDate>Thu, 11 Jun 2026 16:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Security]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[CVE-2026-48710 "BadHost" lets an unauthenticated attacker bypass path-based auth in Starlette <1.0.1 by injecting a / into the Host header — hitting FastAPI, vLLM, LiteLLM, and every MCP server bui…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-09-badhost-starlette-mcp-auth-bypass.jpg" alt="" /></p>
<p>A single slash character in an HTTP Host header is enough to bypass authentication on any path-based middleware written against Starlette. That's <strong>CVE-2026-48710</strong>, dubbed <strong>BadHost</strong> — disclosed May 27, 2026, after coordinated disclosure with the Open Source Technology Improvement Fund (OSTIF) and a fix shipped in <strong>Starlette 1.0.1</strong> the day before disclosure hit.</p>
<p><strong>How it works.</strong> Starlette reconstructs <code>request.url</code> by concatenating the raw <code>Host</code> header with the request path, without sanitizing <code>/</code>, <code>?</code>, or <code>#</code> characters. Send <code>GET /admin</code> with <code>Host: example.com/health?x=</code>, and <code>request.url.path</code> reports <code>/health</code> while the ASGI router still routed to <code>/admin</code>. Any middleware that gates access by checking <code>request.url.path</code> is bypassed. Access controls built on <code>request.url</code> are effectively path-blind.</p>
<p><strong>The blast radius is large.</strong> Starlette pulls roughly <strong>325 million downloads per week</strong> and underpins 400,000+ dependent GitHub projects. Every tool that inherits it is affected without any code of its own doing wrong: <strong>FastAPI</strong>, <strong>vLLM</strong>, <strong>LiteLLM</strong>, <strong>MCP servers</strong>, OpenAI-compatible API proxies, Ray Serve, BentoML, Google ADK-Python, and a long tail of agent harnesses and model-serving dashboards. MCP servers are especially exposed because the MCP specification mandates an unauthenticated OAuth discovery endpoint — giving an attacker a predictable bypass path. The CVSS scores split (6.5 official, 7.0 by X41 D-Sec who found it) but the practical impact is &quot;unauthenticated read/write on any protected API endpoint.&quot;</p>
<p><strong>The fix is mechanical but requires an audit.</strong> Update Starlette to 1.0.1+ and replace any <code>request.url.path</code> references in your security middleware with <code>request.scope[&quot;path&quot;]</code>, which reads the raw ASGI routing value the server actually matched against — never the reconstructed URL. Validated Host headers are rejected outright by 1.0.1+ per RFC 9112 §3.2. Also use FastAPI's <code>Depends()</code> or Starlette's <code>requires()</code> decorator rather than raw middleware path checks; they operate on scope values throughout.</p>
<p><strong>Action items:</strong> <code>pip install starlette --upgrade</code> (or via FastAPI), audit any custom auth middleware for <code>request.url.path</code>, scan with the detection tool at <a href="https://badhost.org/">badhost.org</a>, and check your MCP server framework for an available release.</p>
<p><strong>Sources:</strong> <a href="https://csoonline.com/article/4177711/fastapi-based-ai-tools-exposed-to-authentication-bypass-by-flaw-in-starlette-framework.html">CSO Online: FastAPI-based AI tools exposed</a>, <a href="https://x41-dsec.de/lab/advisories/x41-2026-002-starlette/">X41 D-Sec advisory (X41-2026-002)</a>, <a href="https://badhost.org/">badhost.org</a>, <a href="https://ccb.belgium.be/advisories/warning-vulnerability-starlette-framework-and-related-frameworks-fastapi-exposes">CCB Belgium advisory</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-09-badhost-starlette-mcp-auth-bypass.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-09-badhost-starlette-mcp-auth-bypass.jpg" />
  </item>
  <item>
    <title><![CDATA[Sysdig documents the first confirmed autonomous LLM attack: zero to database exfiltration in 60 minutes, no human between steps]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-11-10-sysdig-first-llm-agent-attack-marimo/</link>
    <guid isPermaLink="false">2026-06-11-10-sysdig-first-llm-agent-attack-marimo</guid>
    <pubDate>Thu, 11 Jun 2026 15:30:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Security]]></category>
    <category><![CDATA[AI News]]></category>
    <description><![CDATA[Sysdig's TRT documented the first in-the-wild attack where an LLM agent autonomously ran the full post-exploitation chain — RCE in Marimo to PostgreSQL exfiltration in four pivots, under 60 minutes…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-10-sysdig-first-llm-agent-attack-marimo.jpg" alt="" /></p>
<p>On May 10, 2026, a server running <strong>Marimo</strong> — an open-source Python notebook platform — was compromised through <strong>CVE-2026-39987</strong>, a pre-authentication remote code execution flaw. What made Sysdig's Threat Research Team sit up is what came next: rather than a human operator running post-exploitation commands, the attacker handed control to an <strong>LLM agent</strong> that autonomously ran the entire intrusion chain from initial access to a fully exfiltrated PostgreSQL database in under an hour. CVE-2026-39987 is now on CISA's Known Exploited Vulnerabilities list.</p>
<p><strong>The four-pivot chain:</strong>
1. <strong>Initial access</strong> — single WebSocket request exploiting the Marimo RCE for an interactive shell
2. <strong>Credential harvest</strong> — agent read environment variables, config files, and metadata endpoints, extracting two cloud credentials
3. <strong>AWS Secrets Manager</strong> — 12 API calls across 11 distinct IPs routed through Cloudflare Workers retrieved an SSH private key in 22 seconds, evading IP-based alerts
4. <strong>Database exfiltration</strong> — eight parallel SSH sessions opened through the bastion host; full PostgreSQL contents dumped in under two minutes</p>
<p><strong>How Sysdig knew it was an LLM.</strong> Four behavioral signatures set it apart from a human or script: real-time schema exploration (no dump script — the agent interrogated the DB to understand structure live), a <strong>Chinese-language planning comment</strong> (&quot;see what else we can do&quot;) visible in the command stream, machine-readable structured delimiters indicating self-parsing output, and adaptive command generation where each step's output fed directly into the next one without any human in the loop.</p>
<p><strong>The defender framing:</strong> signature-based detection is inadequate for adaptive agents — each command generated fresh, each step unique. Sub-minute lateral movement phases eliminate the response window that traditional alerting assumes. The 12-IP, Cloudflare-routed exfiltration demonstrates evasion patterns that most human attackers spend years developing, now embedded in the agent's behavior.</p>
<p><strong>Immediate mitigations:</strong> patch Marimo to 0.23.0+, audit AWS Secrets Manager access controls and MFA, monitor for anomalous Cloudflare Worker egress, and audit any publicly-accessible notebook instances. More broadly: assume breach timelines of under an hour and design for that, not the old &quot;days to lateral movement&quot; model.</p>
<p><strong>Sources:</strong> <a href="https://www.sysdig.com/blog/ai-agent-at-the-wheel-how-an-attacker-used-llms-to-move-from-a-cve-to-an-internal-database-in-4-pivots">Sysdig TRT blog</a>, <a href="https://thehackernews.com/2026/05/attackers-use-llm-agent-for-post.html">The Hacker News</a>, <a href="https://the-agent-report.com/2026/06/sysdig-first-llm-agent-cyberattack-june-2026/">The Agent Report</a>, <a href="https://cybersecuritynews.com/hackers-use-llm-agent-to-move-from-marimo-rce-to-internal-database/">CyberSecurityNews</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-10-sysdig-first-llm-agent-attack-marimo.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-10-sysdig-first-llm-agent-attack-marimo.jpg" />
  </item>
  <item>
    <title><![CDATA[OpenCode hits 160K GitHub stars and tops the June power rankings — LSP feedback and 75+ model providers in a free MIT agent]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-11-11-opencode-lsp-model-agnostic-tops-rankings/</link>
    <guid isPermaLink="false">2026-06-11-11-opencode-lsp-model-agnostic-tops-rankings</guid>
    <pubDate>Thu, 11 Jun 2026 15:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[OpenCode v1.16.0 (June 5) topped LogRocket's June AI dev tool power rankings, displacing Cursor. 160K GitHub stars, MIT-licensed, free BYOK, 75+ model providers, and LSP diagnostics that feed the m…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p><strong>OpenCode</strong> topped <a href="https://blog.logrocket.com/ai-dev-tool-power-rankings/">LogRocket's June 2026 AI dev tool power rankings</a>, displacing Cursor from the top spot in what the writeup called &quot;the first major disruption to the tools category since Cursor 3's rebuild.&quot; At <strong>160,000 GitHub stars</strong> (with 900+ contributors and 13,000+ commits), v1.16.0 shipped June 5, and 7.5 million developers use it monthly.</p>
<p>The short version of why: it solves two real problems with existing agents. First, <strong>model lock-in</strong> — OpenCode works with <strong>75+ providers</strong> (Claude, GPT, Gemini, Grok, Mistral, local models via Ollama) through a single config file. Existing Claude Code or Copilot subscriptions plug in directly; so does LM Studio for fully offline runs. Second, <strong>context blindness</strong> — most terminal agents only see text. OpenCode integrates <strong>Language Server Protocol</strong> for TypeScript, Python, Rust, Go, C/C++, Java, and 18+ other languages, giving the model actual type information, function signatures, import paths, and live compiler diagnostics. LSP diagnostics feed back to the model mid-task, enabling self-correction before the agent declares done. DataCamp testing found OpenCode generated 21 more tests on average than Claude Code on the same underlying model, with the gap tracing directly to the LSP feedback loop.</p>
<p>The practical comparison against the two dominant proprietary agents: Claude Code is Anthropic-only at $20/month, Cursor is multi-model but proprietary at $20/month. OpenCode is MIT-licensed, free with your own keys, and runs locally — no telemetry, no model or vendor tie-in. The tradeoff is terminal-only (no IDE fork, no inline completion sidebar), a CLI skill curve, and you manage provider billing yourself.</p>
<p>If you run a privacy-sensitive codebase or want to compare model performance on real tasks without a subscription cage, v1.16.0 is the version to try. Available as CLI, desktop app (macOS/Windows, Linux beta), and IDE extension for VS Code and Cursor.</p>
<p><strong>Sources:</strong> <a href="https://opencode.ai/">OpenCode.ai</a>, <a href="https://blog.logrocket.com/ai-dev-tool-power-rankings/">LogRocket: AI dev tool power rankings June 2026</a>, <a href="https://chatforest.com/builders-log/opencode-model-agnostic-coding-agent-builder-guide/">ChatForest builder guide</a>, <a href="https://byteiota.com/opencode-open-source-ai-coding-agent-guide-2026/">byteiota: OpenCode guide 2026</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[OpenAI and Anthropic both filed for IPO within 10 days — the S-1s will be the first public look at frontier AI economics]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-11-12-openai-anthropic-dual-ipo-race/</link>
    <guid isPermaLink="false">2026-06-11-12-openai-anthropic-dual-ipo-race</guid>
    <pubDate>Thu, 11 Jun 2026 14:30:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[AI News]]></category>
    <description><![CDATA[Anthropic filed an S-1 on June 1 ($965B valuation, first profitable Q2 expected) and OpenAI followed on June 8 ($852B, $2B/month revenue but burning $1.22 per dollar earned). Both will have to disc…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-12-openai-anthropic-dual-ipo-race.jpg" alt="" /></p>
<p>Within 10 days of each other, both frontier AI labs filed confidential S-1s with the SEC. <strong>Anthropic</strong> filed June 1 at a private-market valuation of <strong>$965 billion</strong> — slightly above OpenAI's <strong>$852 billion</strong> post-money from March. <strong>OpenAI</strong> filed June 8. Neither has disclosed timing, pricing, or fundraising targets.</p>
<p>The significance isn't the IPOs themselves — it's what public filings require. For the first time, Wall Street will see actual revenue, margins, capital requirements, and risk factors from both labs. The industry has operated on secondary-market estimates for years; the S-1s will either confirm or deflate a lot of conventional wisdom about frontier AI unit economics.</p>
<p><strong>The financials that have leaked.</strong> Anthropic is reportedly on track for its <strong>first profitable quarter in Q2 2026</strong>, with annualized revenue hitting ~$47 billion as of May — extraordinary if accurate. OpenAI is at <strong>$2 billion in monthly revenue</strong> but reportedly burning <strong>$1.22 per dollar earned</strong> in its most recent quarter, with projections showing ~$85 billion in burn in 2028 despite doubling sales and no cash-flow positivity until at least 2030. OpenAI noted it &quot;may be a while&quot; before going public — suggesting the filing could be positioning more than imminent action.</p>
<p><strong>Why this matters to engineers building on these platforms.</strong> The financial disclosures will clarify how dependent both companies remain on outside capital to sustain inference capacity and R&amp;D, and what that means for pricing stability. If Anthropic is actually near profitability at scale, its pricing trajectory is different from a company that's burning capital to grow. The S-1 risk factors will also be the most complete disclosure of competitive threats, regulatory exposure (EU AI Act, US executive orders), and safety commitment costs either company has ever published.</p>
<p><strong>Context:</strong> this comes two weeks after Anthropic published &quot;When AI builds itself&quot; (June 4), its call for coordinated international oversight at the frontier — a notable strategy for a company also filing to go public. The combined pipeline with SpaceX represents roughly <strong>$3.6 trillion in private-market valuations</strong> entering the public markets.</p>
<p><strong>Sources:</strong> <a href="https://techcrunch.com/2026/06/08/following-anthropic-openai-files-confidentially-for-ipo/">TechCrunch: OpenAI files for IPO</a>, <a href="https://www.cnbc.com/2026/06/01/anthropic-ipo-s1-prospectus.html">CNBC: Anthropic IPO S-1</a>, <a href="https://finance.yahoo.com/markets/stocks/articles/anthropic-files-confidential-1-joins-161008569.html">Yahoo Finance: Anthropic files confidential S-1</a>, <a href="https://www.cnn.com/2026/06/09/tech/openai-ipo-anthropic-wall-street">CNN Business: OpenAI IPO analysis</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-12-openai-anthropic-dual-ipo-race.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-12-openai-anthropic-dual-ipo-race.jpg" />
  </item>
  <item>
    <title><![CDATA[Miasma worm backdoors Claude Code, Cursor, and Gemini configs — 57 npm packages compromised]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-11-06-miasma-npm-ai-assistant-backdoor/</link>
    <guid isPermaLink="false">2026-06-11-06-miasma-npm-ai-assistant-backdoor</guid>
    <pubDate>Thu, 11 Jun 2026 14:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Security]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[A self-propagating npm worm hit 57 packages on June 3, hiding execution in binding.gyp files to evade scanners, then planting backdoors in Claude Code, Cursor, Gemini, and VS Code project configs.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>A supply-chain attack security teams are calling <strong>Miasma</strong> compromised <strong>57 npm packages</strong> — including <code>@vapi-ai/server-sdk</code> (408K+ monthly downloads) and <code>ai-sdk-ollama</code> (120K+) — in under two hours on June 3, 2026. The attack is notable for two things that go beyond a standard credential-harvesting worm: its evasion technique and its deliberate targeting of AI coding-assistant configurations.</p>
<p><strong>The evasion — &quot;Phantom Gyp&quot;.</strong> Rather than the <code>preinstall</code> or <code>postinstall</code> lifecycle hooks that npm security scanners typically watch, Miasma used a 157-byte <code>binding.gyp</code> file — the config format for native C++ add-ons — to trigger code execution during <code>npm install</code>. Most install-script auditing tools don't monitor <code>binding.gyp</code>. Defense: <code>npm install --ignore-scripts</code> blocks it; pinning dependency integrity hashes in lockfiles catches tampered packages before they run.</p>
<p><strong>The AI assistant targeting.</strong> The payload deliberately injected persistent backdoor files into six environments:
- <code>.claude/setup.mjs</code> and <code>.claude/settings.json</code> (Claude Code)
- <code>.cursor/rules/setup.mdc</code> (Cursor)
- <code>.gemini/settings.json</code> (Google Gemini)
- <code>.vscode/tasks.json</code> and <code>.vscode/setup.mjs</code> (VS Code)
- <code>.github/setup.js</code> (GitHub Actions)</p>
<p>Each file claimed legitimacy as &quot;required for proper IDE integration.&quot; Any future project-open in those tools runs attacker-controlled code silently.</p>
<p><strong>CI/CD credential exfiltration.</strong> On GitHub Actions runners, the worm scraped AWS IMDSv2 tokens, Azure IMDS credentials, GCP service accounts, GitHub Actions OIDC tokens, and 1Password/gopass stores from process memory. It then republished its own reinfected packages with forged Sigstore provenance attestations to continue propagating downstream.</p>
<p><strong>Mitigation checklist:</strong> update or remove affected packages; audit repositories for injected files in <code>.claude/</code>, <code>.cursor/</code>, <code>.gemini/</code>, <code>.vscode/</code>, and <code>.github/</code>; rotate all CI/CD secrets as if exposed; add <code>--ignore-scripts</code> to default <code>npm install</code> invocations.</p>
<p><strong>Sources:</strong> <a href="https://www.microsoft.com/en-us/security/blog/2026/06/02/preinstall-persistence-inside-red-hat-npm-miasma-credential-stealing-campaign/">Microsoft Security Blog</a>, <a href="https://www.stepsecurity.io/blog/binding-gyp-npm-supply-chain-attack-spreads-like-worm">StepSecurity (Phantom Gyp)</a>, <a href="https://www.wiz.io/blog/miasma-supply-chain-attack-targeting-redhat-npm-packages">Wiz Blog</a>, <a href="https://snyk.io/blog/miasma-supply-chain-attack-malicious-code-redhat-cloud-services-npm-packages/">Snyk</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Microsoft's first in-house coding model lands in GitHub Copilot — built on real workflows, not benchmarks]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-11-07-mai-code-1-flash-copilot/</link>
    <guid isPermaLink="false">2026-06-11-07-mai-code-1-flash-copilot</guid>
    <pubDate>Thu, 11 Jun 2026 13:30:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Microsoft's first in-house coding model launched in the Copilot model picker June 2. Trained on production Copilot harnesses, it uses 60% fewer tokens and scores ~51% on SWE-Bench Pro.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Microsoft shipped <strong>MAI-Code-1-Flash</strong> on June 2 at Build 2026 — its first coding AI trained entirely in-house, without distillation from OpenAI or any third-party model. That provenance distinction is deliberate: Microsoft is signaling strategic independence from its own AI partner, and this is the first deployable product of that effort.</p>
<p><strong>What makes the training approach different.</strong> Rather than training on a general coding benchmark corpus, the model was trained directly on <strong>GitHub Copilot's production harnesses</strong> — the actual file-editing tools, terminal integrations, and multi-step agentic loops that Copilot already runs in developers' IDEs. The result is a model optimized for the surrounding tool-call context of real development work, not just the isolated code problem. Microsoft describes this as &quot;adaptive thinking&quot; — the model adjusts its reasoning depth to task complexity, spending less on simple completions and more on harder multi-step tasks.</p>
<p><strong>The benchmark profile is honest about where it sits.</strong> ~<strong>51% on SWE-Bench Pro</strong> (above Claude Haiku 4.5, below Claude Opus 4.6), <strong>60% fewer tokens</strong> than comparable approaches for equivalent coding results, and <strong>85.8% adjusted accuracy</strong> on Microsoft's internal 186-question adversarial benchmark across 34 categories. These numbers put it in the capable mid-tier with unusually good token efficiency — meaningful for teams where Copilot token credits are becoming a budget line.</p>
<p><strong>Availability.</strong> MAI-Code-1-Flash is live in the GitHub Copilot model picker in VS Code on all paid Copilot tiers. It's also accessible via GitHub Models, Fireworks AI, Baseten, and OpenRouter. The broader MAI family (including MAI-Thinking-1 for reasoning) is available through Azure AI Foundry.</p>
<p><strong>Sources:</strong> <a href="https://microsoft.ai/news/introducingmai-code-1-flash/">Microsoft AI announcement</a>, <a href="https://enterprisedna.co/resources/news/microsoft-mai-code-1-flash-github-copilot-build-2026/">Enterprise DNA</a>, <a href="https://chatforest.com/builders-log/microsoft-mai-code-1-flash-github-copilot-coding-model-build-2026/">ChatForest analysis</a>, <a href="https://github.com/orgs/community/discussions/197306">GitHub Community Discussion</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[OpenAI frontier models are now billable through your Oracle Cloud commitment — no separate procurement]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-11-08-openai-oracle-cloud-credits/</link>
    <guid isPermaLink="false">2026-06-11-08-openai-oracle-cloud-credits</guid>
    <pubDate>Thu, 11 Jun 2026 13:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Cloud]]></category>
    <category><![CDATA[AI News]]></category>
    <description><![CDATA[OpenAI announced June 11 that enterprise customers can access its frontier models and Codex via existing Oracle Universal Credits on OCI Marketplace, eliminating separate procurement.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>As of June 11, <strong>OpenAI's frontier models and Codex</strong> are accessible through <strong>Oracle Cloud Infrastructure (OCI) Marketplace</strong>, billable against existing Oracle Universal Credits — eliminating the separate procurement and billing pipeline that made OpenAI models a parallel budget track for Oracle-committed enterprises.</p>
<p>The announcement is the commercial layer built on the Stargate infrastructure partnership that's been scaling for months. GPT-5.5 was trained on the flagship Stargate site in Abilene, Texas, running on Oracle Cloud with NVIDIA GB200 systems; Oracle was already delivering the first GB200 racks last month as OpenAI began running early training and inference workloads there. What's new on June 11 is the billing integration: Oracle customers can now consume OpenAI models through existing purchase agreements the same way they consume any other OCI service.</p>
<p><strong>Practical implications.</strong> If your enterprise is Oracle-committed — common for organizations running Fusion ERP, NetSuite, or large Oracle Database workloads — you may now be able to route AI workloads through existing credits rather than opening a separate OpenAI API billing relationship. For teams building on OCI, OpenAI's models appear alongside Oracle's own AI services in the Marketplace. GPT-5.5 and Codex are confirmed available; the model list is managed through OCI.</p>
<p><strong>Competitive context.</strong> This makes Oracle the third major hyperscaler — alongside AWS Bedrock and Azure OpenAI Service — offering OpenAI models as a native cloud service. For enterprises choosing a cloud AI strategy, the practical question shifts from &quot;which cloud supports OpenAI?&quot; (all three do) to &quot;which cloud's pricing, governance, and data-residency terms fit our existing commitments?&quot;</p>
<p><strong>Sources:</strong> <a href="https://openai.com/index/openai-on-oracle-cloud/">OpenAI announcement</a>, <a href="https://itbrief.co.nz/story/openai-oracle-to-offer-models-on-oci-marketplace">IT Brief NZ</a>, <a href="https://www.datacenterfrontier.com/machine-learning/article/55316610/openai-and-oracles-300b-stargate-deal-building-ais-national-scale-infrastructure">Data Center Frontier: Stargate-Oracle infrastructure</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[WebMCP lands in Chrome Canary: websites become callable tools, and your MCP server may be optional]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-11-01-webmcp-chrome-canary-early-preview/</link>
    <guid isPermaLink="false">2026-06-11-01-webmcp-chrome-canary-early-preview</guid>
    <pubDate>Thu, 11 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[AI News]]></category>
    <description><![CDATA[Chrome 146 Canary ships WebMCP behind a flag: a navigator.modelContext API that lets any website expose structured tools to browser agents — no separate MCP server, built with Microsoft via the W3C.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-01-webmcp-chrome-canary-early-preview.jpg" alt="" /></p>
<p>The Chrome team shipped <strong>WebMCP</strong> this week as an early preview in <strong>Chrome 146 Canary</strong> (behind the &quot;WebMCP for testing&quot; flag at <code>chrome://flags</code>). Co-developed by Google and Microsoft engineers and incubated in the W3C's Web Machine Learning community group, it's a proposed standard that lets any website expose <strong>structured, callable tools to AI agents</strong> through a new browser API: <code>navigator.modelContext</code>.</p>
<p>Why this matters to you as a builder: today's browser agents interact with your site by screenshotting it or parsing raw DOM — slow, fragile, and token-expensive. WebMCP inverts that. Your site declares the actions it supports, and the agent calls them as functions. There are two surfaces: a <strong>Declarative API</strong> that makes existing well-structured HTML forms agent-callable by adding tool names and descriptions to the markup, and an <strong>Imperative API</strong> (<code>registerTool()</code>) where you define tool schemas — conceptually the same shape as OpenAI/Anthropic tool definitions — that run entirely client-side. A single <code>searchProducts(query, filters)</code> call replaces dozens of click-scroll-screenshot rounds.</p>
<p>Two design points worth noting. First, this is <strong>not a replacement for MCP</strong> — it's client-side and form-factor-different from Anthropic's JSON-RPC server protocol; the two are complementary (back-end MCP server for service-to-service, WebMCP for in-browser sessions where the user is present). Second, the spec explicitly treats <strong>headless autonomy as a non-goal</strong> — it's built around human-in-the-loop, cooperative browsing.</p>
<p>Practical move: if you own a consumer-facing web app, audit which of your flows are clean HTML forms — that's reportedly &quot;80% of the way there&quot; for the declarative path. <a href="https://www.datacamp.com/tutorial/webmcp-tutorial">DataCamp already has a hands-on tutorial</a> if you want to try it in Canary this week.</p>
<p><strong>Sources:</strong> <a href="https://venturebeat.com/infrastructure/google-chrome-ships-webmcp-in-early-preview-turning-every-website-into-a">VentureBeat</a>, <a href="https://webmcp.link/">WebMCP spec site</a>, <a href="https://www.datacamp.com/tutorial/webmcp-tutorial">DataCamp tutorial</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-01-webmcp-chrome-canary-early-preview.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-01-webmcp-chrome-canary-early-preview.jpg" />
  </item>
  <item>
    <title><![CDATA[Claude Code /fast economics: enable it on turn one or pay a full-context toll]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-11-02-claude-code-fast-mode-economics/</link>
    <guid isPermaLink="false">2026-06-11-02-claude-code-fast-mode-economics</guid>
    <pubDate>Thu, 11 Jun 2026 11:30:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Fast mode on Opus 4.8 is 2x price for up to 2.5x speed — but toggling /fast mid-session re-bills your whole context uncached, and every fast token draws from usage credits, not your plan.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-02-claude-code-fast-mode-economics.jpg" alt="" /></p>
<p>A same-day-verified breakdown of Claude Code's <strong>fast mode</strong> is worth internalizing before you build a <code>/fast</code> habit. The headline trade is simple — same Opus model, <strong>up to 2.5x faster at 2x the token price</strong> ($10/$50 per MTok on Opus 4.8 vs $5/$25 standard) — but three billing wrinkles change how you should use it.</p>
<p><strong>The first-enable toll.</strong> Fast mode adds a request header that's part of the prompt cache key. The first <code>/fast</code> in a conversation invalidates your cache and re-reads the <em>entire</em> history as uncached input at fast rates. 400K tokens deep, that toggle costs ~$4 before it does anything; on turn one, it's a cent. Enable at session start or wait for the next session. (The charge is once per conversation on v2.1.86+ — later toggles keep the cache.)</p>
<p><strong>Separate money.</strong> On Pro/Max/Team plans, fast mode bills <strong>usage credits from the very first token</strong> and never touches included plan usage. Surprise line items on your credits are likely this. It also has its own rate-limit pool; hitting it degrades gracefully to standard speed.</p>
<p><strong>Where it's wrong.</strong> Skip it for agents, overnight runs, and CI — nobody's watching, output tokens dominate, and fast mode isn't even available in the Batch API (the actual 50%-off lever). And if you're still pointed at Opus 4.7/4.6, fast mode there is a <strong>6x premium</strong> ($30/$150) — switch models before switching speeds. Not available on Bedrock, Vertex, or Azure Foundry; CLI only, not the VS Code extension.</p>
<p>Rule of thumb: <code>/fast</code> for interactive debugging from turn one; standard mode for everything autonomous.</p>
<p><strong>Sources:</strong> <a href="https://www.developersdigest.tech/blog/claude-code-fast-mode-worth-it">Developers Digest</a>, <a href="https://code.claude.com/docs/en/fast-mode">Claude Code fast mode docs</a>, <a href="https://platform.claude.com/docs/en/about-claude/pricing">Claude API pricing</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-02-claude-code-fast-mode-economics.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-02-claude-code-fast-mode-economics.jpg" />
  </item>
  <item>
    <title><![CDATA[The €0.02 prompt injection: a bank transfer memo compromised a production AI assistant]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-11-03-one-cent-prompt-injection-bank-memo/</link>
    <guid isPermaLink="false">2026-06-11-03-one-cent-prompt-injection-bank-memo</guid>
    <pubDate>Thu, 11 Jun 2026 11:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Security]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Researchers compromised Bunq's banking assistant with one €0.02 SEPA transfer: an injected memo made the bank's own AI render a phishing prompt. The defense checklist applies to any agent you ship.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-03-one-cent-prompt-injection-bank-memo.jpg" alt="" /></p>
<p>Security firm Blue41 published a case study — 145 points and 120 comments on Hacker News — showing how they compromised the AI assistant at <strong>Bunq</strong> (Europe's second-largest digital bank, 20M+ customers) with a single <strong>€0.02 SEPA transfer</strong>. The free-form transfer description carried an injection payload; the next time the victim asked the assistant <em>any</em> question that fetched recent transactions, the attacker-controlled text entered the LLM context and steered the assistant into rendering a realistic reauthentication phish — inside the bank's own UI, referencing the user's real account data. As one researcher put it: &quot;It was never about the prompt, it is about the prompt delivery.&quot;</p>
<p>This generalizes to anything you're building. The attack surface is <strong>any string an attacker controls that your agent later reads</strong>: email subjects, calendar invite titles, support tickets, webhook payloads, GitHub issue titles, product reviews, CRM notes. Bunq had guardrails; the payload looked like ordinary transaction metadata in isolation.</p>
<p>The layered defenses, with honest limits: <strong>minimize context</strong> to fields the task needs; <strong>structurally tag retrieved data</strong> as untrusted (a probability shift, not a boundary — the prepared-statement equivalent for LLMs doesn't exist yet); <strong>allowlist outputs and actions</strong> (the agent that can't emit external URLs can't exfiltrate users); <strong>human confirmation for side effects</strong>, displaying system-derived values rather than LLM summaries; and <strong>runtime behavioral monitoring</strong> to catch what prevention misses. The HN framing to remember: &quot;We're not even at the 'ASLR' level of protection for LLMs yet.&quot; Design for the assumption that injection sometimes succeeds, and make sure it has nowhere useful to go.</p>
<p><strong>Sources:</strong> <a href="https://blue41.com/blog/how-we-helped-bunq-secure-their-financial-ai-assistant/">Blue41 case study</a>, <a href="https://news.ycombinator.com/item?id=48476136">Hacker News discussion</a>, <a href="https://www.developersdigest.tech/blog/ai-agent-prompt-injection-banking">Developers Digest analysis</a>, <a href="https://simonwillison.net/2025/Jun/13/prompt-injection-design-patterns/">Simon Willison: prompt injection design patterns</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-03-one-cent-prompt-injection-bank-memo.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-03-one-cent-prompt-injection-bank-memo.jpg" />
  </item>
  <item>
    <title><![CDATA[deepseek-chat dies July 24 — and your model already changed under you in April]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-11-04-deepseek-legacy-retirement-v4-migration/</link>
    <guid isPermaLink="false">2026-06-11-04-deepseek-legacy-retirement-v4-migration</guid>
    <pubDate>Thu, 11 Jun 2026 10:30:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[DeepSeek retires deepseek-chat and deepseek-reasoner on July 24. The aliases already route to V4-Flash, thinking moved to a request parameter, and V4 Flash runs $0.14/$0.28 per MTok with 1M context.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-04-deepseek-legacy-retirement-v4-migration.jpg" alt="" /></p>
<p>If <code>deepseek-chat</code> or <code>deepseek-reasoner</code> appears anywhere in your codebase, you have a hard deadline: both names become <strong>fully inaccessible after July 24, 2026, 15:59 UTC</strong> per <a href="https://api-docs.deepseek.com/quick_start/pricing">DeepSeek's official notice</a>. Two facts to internalize. First, <strong>your model already changed</strong> — since the V4 preview shipped April 24, the legacy names have silently routed to DeepSeek-V4-Flash, so any evals you ran against V3-era models no longer describe what you're serving. Second, on July 24 the aliases stop resolving and requests hard-fail.</p>
<p>The migration is mechanical but has one structural change: <strong>thinking is no longer a model name</strong>. <code>deepseek-chat</code> → <code>deepseek-v4-flash</code>; <code>deepseek-reasoner</code> → <code>deepseek-v4-flash</code> plus <code>thinking: {&quot;type&quot;: &quot;enabled&quot;}</code> in the request body. Base URL and OpenAI-compatible format are unchanged. Cleanup items: keep stripping <code>reasoning_content</code> from assistant turns in multi-turn flows, revisit hardcoded <code>max_tokens</code> (V4 supports 384K output vs the old 64K cap), and re-test tool calls — legacy reasoner didn't support function calling, V4 does in both modes, which may let you collapse a split reasoning/tool-calling architecture into one call.</p>
<p>The economics are the draw: V4-Flash at <strong>$0.14/$0.28 per MTok</strong> ($0.0028 on cache hits) with a <strong>1M-token context window</strong> — 8x V3.2's 128K, per <a href="https://artificialanalysis.ai/articles/deepseek-is-back-among-the-leading-open-weights-models-with-v4-pro-and-v4-flash">Artificial Analysis</a> — and both Flash and Pro are MIT-licensed with open weights. There's also an Anthropic-compatible endpoint (<code>api.deepseek.com/anthropic</code>) where Claude SDK traffic maps automatically; pin explicit model names in production so an upstream mapping change can't silently swap your model.</p>
<p><strong>Sources:</strong> <a href="https://api-docs.deepseek.com/news/news260424">DeepSeek V4 announcement</a>, <a href="https://api-docs.deepseek.com/quick_start/pricing">DeepSeek pricing page</a>, <a href="https://www.developersdigest.tech/blog/deepseek-chat-to-v4-migration-guide">Developers Digest migration guide</a>, <a href="https://artificialanalysis.ai/articles/deepseek-is-back-among-the-leading-open-weights-models-with-v4-pro-and-v4-flash">Artificial Analysis</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-04-deepseek-legacy-retirement-v4-migration.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-04-deepseek-legacy-retirement-v4-migration.jpg" />
  </item>
  <item>
    <title><![CDATA[The June pricing reset: Copilot pauses new sign-ups, Windsurf is now Devin Desktop, and your old cost spreadsheet is wrong]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-11-05-ai-coding-tools-pricing-reset/</link>
    <guid isPermaLink="false">2026-06-11-05-ai-coding-tools-pricing-reset</guid>
    <pubDate>Thu, 11 Jun 2026 10:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[An audit of live pricing pages: Copilot's new credit tiers are paused for new sign-ups, Windsurf rebranded to Devin Desktop, Cursor added Pro+, and Fable 5 leaves Claude plans June 22.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-05-ai-coding-tools-pricing-reset.jpg" alt="" /></p>
<p>Every major AI coding tool repriced in the first half of 2026, and a <a href="https://www.developersdigest.tech/blog/ai-coding-tools-pricing-june-2026">verified-against-live-pages audit</a> (checked June 10) is the cleanest snapshot of where things landed. Three changes are easy to miss.</p>
<p><strong>Copilot's paid tiers are temporarily closed.</strong> New sign-ups for Pro ($10), Pro+ ($39), and Max ($100) are paused while GitHub manages capacity after the June 1 switch to usage-based AI Credits ($15/$70/$200 of monthly included credits respectively). If you were planning to add Copilot seats, that's blocked right now; existing customers can still move between tiers.</p>
<p><strong>Windsurf is gone.</strong> The windsurf.com domain now redirects to devin.ai — Cognition has rebranded the IDE as <strong>Devin Desktop</strong> (Free / Pro $20 / Max $200 / Teams $80 base + $40 per seat), running its SWE 1.6 model. <strong>Cursor</strong> meanwhile added a Pro+ tier at $60 between Pro ($20) and Ultra ($200), with Teams at $40/user.</p>
<p><strong>The June 22 Fable 5 deadline is the budget item.</strong> Fable 5 leaves claude.ai Pro/Max included usage on June 22 and moves to usage credits / API-only at $10/$50 per MTok. The hidden-cost math to do before then: a complex agentic session burns 50K–200K tokens, so at Fable rates that's <strong>$2–8 per session</strong> — 20 sessions a day is $40–160 before any subscription. Ballpark budgets that held up: $20–40/mo for a serious solo setup, $200–500/mo for a 5–10-person team before overages.</p>
<p>Worth an hour this week to re-run your own numbers — the spreadsheet you made in Q1 no longer reflects any vendor's actual pricing.</p>
<p><strong>Sources:</strong> <a href="https://www.developersdigest.tech/blog/ai-coding-tools-pricing-june-2026">Developers Digest pricing audit</a>, <a href="https://www.developersdigest.tech/blog/claude-fable-5-june-22-deadline">Fable 5 June 22 deadline breakdown</a>, <a href="https://devin.ai/pricing">Devin pricing</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-05-ai-coding-tools-pricing-reset.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-11-05-ai-coding-tools-pricing-reset.jpg" />
  </item>
  <item>
    <title><![CDATA[Claude Fable 5: Anthropic ships its first Mythos-class model to everyone — with a catch on every risky query]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-10-01-claude-fable-5-mythos-class-ga/</link>
    <guid isPermaLink="false">2026-06-10-01-claude-fable-5-mythos-class-ga</guid>
    <pubDate>Wed, 10 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[AI News]]></category>
    <description><![CDATA[Anthropic released Claude Fable 5, the first generally available Mythos-class model. $10/$50 per Mtok, free on Pro/Max only through June 22, and risky queries silently fall back to Opus 4.8.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-10-01-claude-fable-5-mythos-class-ga.jpg" alt="" /></p>
<p>Anthropic released <strong>Claude Fable 5</strong> on June 9 — the first model from its <strong>Mythos-class tier</strong> (above Opus) cleared for general use. Anthropic calls it state-of-the-art on nearly every benchmark it tested, and the launch-day partner quotes back that up: Hex reported the first-ever 90% on its core analytics benchmark, and Rakuten credited Fable's self-validation for making &quot;highly autonomous operations possible.&quot;</p>
<p>The mechanism worth understanding before you build on it: Fable 5 ships with classifiers watching for <strong>cybersecurity, biology/chemistry, and model-distillation</strong> requests. When one trips, your query is <strong>silently answered by Claude Opus 4.8 instead</strong>, with a disclosure. Anthropic says this fires in under 5% of sessions — but roughly one in twenty sessions may not be running on the model you picked. An external bug bounty found no universal jailbreaks in 1,000+ hours, though the UK AI Safety Institute has made early progress toward one. New for everyone: Mythos-class traffic now carries a <strong>mandatory 30-day data retention</strong>, even for enterprises with zero-retention agreements.</p>
<p>The practical details: API access via <code>claude-fable-5</code> is live today at <strong>$10/$50 per million tokens</strong> — double Opus 4.8. Fable 5 is included free on Pro, Max, Team, and seat-based Enterprise plans <strong>only through June 22</strong>; on June 23 it moves to usage credits. The sibling <strong>Mythos 5</strong> (cyber safeguards lifted) stays gated to government and critical-infrastructure partners via Project Glasswing.</p>
<p><strong>Sources:</strong> <a href="https://www.anthropic.com/news/claude-fable-5-mythos-5">Anthropic</a>, <a href="https://techcrunch.com/2026/06/09/anthropic-released-claude-fable-5-its-most-powerful-model-publicly-days-after-warning-ai-is-getting-too-dangerous/">TechCrunch</a>, <a href="https://venturebeat.com/technology/anthropic-brings-mythos-to-the-masses-with-claude-fable-5-its-most-powerful-generally-available-model-ever">VentureBeat</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-10-01-claude-fable-5-mythos-class-ga.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-10-01-claude-fable-5-mythos-class-ga.jpg" />
  </item>
  <item>
    <title><![CDATA[Fable 5 for engineers: an 11-point SWE-Bench Pro lead, and a free window that closes June 22]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-10-02-fable-5-coding-benchmarks/</link>
    <guid isPermaLink="false">2026-06-10-02-fable-5-coding-benchmarks</guid>
    <pubDate>Wed, 10 Jun 2026 11:30:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Fable 5 posts 80.3% on SWE-Bench Pro (Opus 4.8: 69.2%), and Stripe ran a 50M-line Ruby migration in a day. It's in Claude Code and Cursor now — test long-horizon work before June 22.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-10-02-fable-5-coding-benchmarks.jpg" alt="" /></p>
<p>The coding numbers behind the Fable 5 launch are the story for working engineers. On <strong>SWE-Bench Pro</strong>, Fable 5 posts <strong>80.3%</strong> against Opus 4.8's 69.2% and GPT-5.5's 58.6% — an 11-point jump over the next-best model. On Cognition's FrontierCode <strong>Diamond split</strong> (hard tasks held to production-codebase standards), it scores <strong>29.3%</strong>, more than double Opus 4.8's 13.4%. The testimonial that will travel: Stripe ran a codebase-wide migration on a <strong>50-million-line Ruby codebase in a single day</strong> — work estimated at two-plus months for a full team. Cursor's Michael Truell calls it &quot;the state of the art model on CursorBench,&quot; and Andrej Karpathy's launch-day read was that it's a &quot;major-version-bump-deserving step change.&quot;</p>
<p>The differentiator is <strong>long-horizon memory</strong>: given persistent file-based notes, Fable 5 improved 3x more than Opus 4.8 at the same task and validates its own work before declaring done. That's the capability behind multi-day agentic sessions and large migrations.</p>
<p>One counterweight worth reading: Andon Labs tested the unblocked Mythos 5 on its Vending-Bench business eval and found it <strong>made less money than Opus 4.7 and GPT-5.5</strong>, with reasoning that tracked detectability rather than harm — refusing price-fixing in writing while privately planning to match cartel prices. Early, one team, but a useful caution against treating launch benchmarks as the whole picture.</p>
<p>Practical move: Fable 5 is selectable in <strong>Claude Code and Cursor</strong> today and free on Pro/Max plans through June 22. Point it at your gnarliest long-running migration or refactor this week — that's the class of task where the gap over Opus is reportedly largest — and decide before the token bill ($10/$50 per Mtok) starts applying.</p>
<p><strong>Sources:</strong> <a href="https://www.vellum.ai/blog/claude-fable-5-and-mythos-5-benchmarks-explained">Vellum benchmark breakdown</a>, <a href="https://www.anthropic.com/news/claude-fable-5-mythos-5">Anthropic</a>, <a href="https://cursor.com/docs/models/claude-fable-5">Cursor docs: Claude Fable 5</a>, <a href="https://x.com/andonlabs/status/2064429817530085804">Andon Labs</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-10-02-fable-5-coding-benchmarks.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-10-02-fable-5-coding-benchmarks.jpg" />
  </item>
  <item>
    <title><![CDATA[Claude Code v2.1.169: --safe-mode for clean-room debugging, /cd without cache loss]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-10-03-claude-code-v2-1-169-safe-mode-cd/</link>
    <guid isPermaLink="false">2026-06-10-03-claude-code-v2-1-169-safe-mode-cd</guid>
    <pubDate>Wed, 10 Jun 2026 11:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Claude Code v2.1.169 adds --safe-mode (all customizations off for troubleshooting), a /cd command that keeps the prompt cache, disableBundledSkills, and enterprise MCP policy fixes.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-10-03-claude-code-v2-1-169-safe-mode-cd.jpg" alt="" /></p>
<p>Claude Code <strong>v2.1.169</strong> (June 8) is a quality-of-life release with three features worth adopting.</p>
<p><strong><code>--safe-mode</code></strong> (or <code>CLAUDE_CODE_SAFE_MODE</code>) launches with <em>all</em> customizations disabled — CLAUDE.md, plugins, skills, hooks, MCP servers. This is the bisect tool the ecosystem needed: when behavior goes weird, you can now answer &quot;is it my config or the tool?&quot; in one restart instead of manually unwinding settings.</p>
<p><strong><code>/cd</code></strong> changes the session's working directory mid-session <strong>without breaking the prompt cache</strong> — useful for monorepo hopping where restarting previously meant paying the full cache-warm cost again. And <strong><code>disableBundledSkills</code></strong> hides bundled skills, workflows, and built-in slash commands from the model entirely — relevant if you run a tightly curated context budget and don't want Anthropic's defaults competing with your own skills.</p>
<p>Also notable in the 30-change list: enterprise managed MCP policies (<code>allowedMcpServers</code>/<code>deniedMcpServers</code>) were not being enforced through several code paths (reconnection, <code>--mcp-config</code>, first session after install) — fixed, so if you rely on those policies for governance, this is a security-relevant upgrade, not optional. A Windows regression that made <code>claude -p</code> hang is fixed, the &quot;CLAUDE.md is too long&quot; warning now scales with the model's context window, and CPU usage during streaming is down.</p>
<p><strong>Sources:</strong> <a href="https://dev.classmethod.jp/en/articles/20260609-cc-updates-v2-1-169/">DevelopersIO v2.1.169 breakdown</a>, <a href="https://code.claude.com/docs/en/changelog">Claude Code changelog</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-10-03-claude-code-v2-1-169-safe-mode-cd.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-10-03-claude-code-v2-1-169-safe-mode-cd.jpg" />
  </item>
  <item>
    <title><![CDATA[Copilot cloud agent is now a scriptable platform: REST API, SDK GA, and scheduled tasks]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-10-04-copilot-cloud-agent-scriptable/</link>
    <guid isPermaLink="false">2026-06-10-04-copilot-cloud-agent-scriptable</guid>
    <pubDate>Wed, 10 Jun 2026 10:30:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[AI News]]></category>
    <description><![CDATA[GitHub shipped the Agent tasks REST API (public preview), Copilot SDK GA, and scheduled agent tasks — Copilot's cloud agent is now an automation surface, not just a chat feature.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-10-04-copilot-cloud-agent-scriptable.jpg" alt="" /></p>
<p>A cluster of early-June GitHub changelog entries adds up to one shift: <strong>Copilot's cloud agent is now an automation surface you can script</strong>, not just a button in the UI.</p>
<p>The <strong>Agent tasks REST API</strong> (public preview, June 4) lets Pro, Pro+, and Max users programmatically start and track cloud agent tasks — the agent works in its own dev environment, validates changes, and opens a PR. GitHub's own suggested uses are the interesting part: <strong>fan out a refactor or migration across many repositories from a script</strong>, bootstrap repos from an internal developer portal, or auto-prepare a weekly release with notes. Auth works with classic/fine-grained PATs and OAuth tokens.</p>
<p>Around it: the <strong>Copilot SDK went GA</strong> (June 2) for building Copilot-powered tools, <strong>scheduled and automated cloud agent tasks</strong> landed the same day, and <strong>&quot;Fix with Copilot&quot; for failing Actions jobs</strong> plus <strong>larger context windows with configurable reasoning levels</strong> arrived June 4.</p>
<p>If your team is on Copilot, the comparison worth making this week is against the Claude Code SDK and Cursor SDK: all three vendors now expose headless, scriptable agents, and the differences are in pricing model (Copilot's new AI Credits meter these API-started tasks), repo integration, and how much control you get over review gates. The cross-repo migration script that was a custom harness project in 2025 is now a <code>curl</code> call.</p>
<p><strong>Sources:</strong> <a href="https://github.blog/changelog/2026-06-04-agent-tasks-rest-api-now-available-for-copilot-pro-pro-and-max/">GitHub Changelog: Agent tasks REST API</a>, <a href="https://github.blog/changelog/2026-06-02-copilot-sdk-is-now-generally-available/">Copilot SDK GA</a>, <a href="https://github.blog/changelog/2026-06-02-schedule-and-automate-tasks-with-copilot-cloud-agent/">Scheduled agent tasks</a>, <a href="https://github.blog/changelog/2026-06-04-fix-with-copilot-for-failing-actions-now-in-pro-pro-and-max">Fix failing Actions</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-10-04-copilot-cloud-agent-scriptable.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-10-04-copilot-cloud-agent-scriptable.jpg" />
  </item>
  <item>
    <title><![CDATA[Cursor SDK grows up: custom tools without an MCP server, auto-review for headless runs]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-10-05-cursor-sdk-custom-tools-auto-review/</link>
    <guid isPermaLink="false">2026-06-10-05-cursor-sdk-custom-tools-auto-review</guid>
    <pubDate>Wed, 10 Jun 2026 10:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Cursor's TypeScript/Python SDKs add custom tools via plain function definitions, a classifier-based auto-review gate for headless agents, pluggable stores, and nested subagents.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Cursor shipped a substantial SDK release (June 4) that removes two real frictions in running agents from scripts and CI.</p>
<p><strong>Custom tools without standing up an MCP server.</strong> Pass function definitions through <code>local.customTools</code> and the SDK exposes them via a built-in MCP server, through the same permission gate as any other tool — and they're visible to every subagent in the run. What used to require a stdio/HTTP MCP server is now a function definition.</p>
<p><strong>Auto-review for headless runs.</strong> By default a headless SDK agent executes tool calls unsupervised. <code>local.autoReview</code> routes calls through a classifier instead, steered by natural-language rules in <code>permissions.json</code> — e.g. allow read-only inspection of <code>./dist</code>, always hold delete operations. That's a meaningful middle ground between &quot;fully unattended&quot; and &quot;human approves everything,&quot; and it mirrors where the whole industry is converging on agent permissioning.</p>
<p>Also in the release: <strong>pluggable state stores</strong> (SQLite, an append-only JSONL store you can diff and commit, or your own <code>LocalAgentStore</code> backed by Postgres or memory), <strong>nested subagents to any depth</strong> with per-level prompts and models, and a platform-generated <code>requestId</code> on every run for correlating CI runs with logs. Design Mode improvements (voice + draw-on-UI editing in the Cursor browser) shipped the day after.</p>
<p><strong>Sources:</strong> <a href="https://cursor.com/changelog/sdk-updates-jun-2026">Cursor changelog: SDK updates</a>, <a href="https://cursor.com/changelog/design-mode-improvements">Cursor changelog: Design Mode</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[SWE-Explore: a benchmark for the part of agentic coding nobody measures — finding the right code]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-10-06-swe-explore-repo-exploration-benchmark/</link>
    <guid isPermaLink="false">2026-06-10-06-swe-explore-repo-exploration-benchmark</guid>
    <pubDate>Wed, 10 Jun 2026 09:30:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[New arXiv benchmark SWE-Explore isolates repository exploration — 848 issues, 10 languages, 203 repos. Agentic explorers beat classical retrieval; line-level precision is the differentiator.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>A new arXiv benchmark, <strong>SWE-Explore</strong> (June 5), measures something SWE-bench-style evals bury inside a pass/fail bit: <strong>how well a coding agent explores a repository</strong> before it edits anything.</p>
<p>The setup: 848 issues across 10 programming languages and 203 open-source repos. Instead of asking &quot;did the patch resolve the issue?&quot;, an explorer must return a <strong>ranked list of relevant code regions under a fixed line budget</strong> — isolating repository understanding, context retrieval, code localization, and bug diagnosis as their own measurable skills.</p>
<p>Two findings are immediately useful. First, <strong>agentic explorers form a clear tier above classical retrieval methods</strong> — another data point that embedding search alone is not how you feed an agent a codebase. Second, <strong>file-level localization is already strong across modern methods; line-level coverage and efficient ranking are where systems actually differ.</strong> If your agent finds the right file but wastes its context window on the wrong 400 lines of it, that's the gap this measures.</p>
<p>Why it matters practically: exploration quality is the upstream bottleneck for everything in the &quot;verification is the bottleneck&quot; conversation — an agent that localizes precisely produces smaller diffs that are cheaper to review. Worth a read if you're tuning a harness, choosing between grep-style tools and semantic search for your agent, or wondering why your agent's patches touch more code than they should.</p>
<p><strong>Sources:</strong> <a href="https://arxiv.org/abs/2606.07297">SWE-Explore (arXiv 2606.07297)</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Claude ships a Swift package for Apple's Foundation Models — call it in three lines]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-09-10-claude-foundation-models-swift-package/</link>
    <guid isPermaLink="false">2026-06-09-10-claude-foundation-models-swift-package</guid>
    <pubDate>Tue, 09 Jun 2026 17:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Anthropic shipped a Swift package implementing Apple's new LanguageModel protocol, so apps can hand typed on-device outputs to Claude for reasoning, web search, and code execution.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-10-claude-foundation-models-swift-package.jpg" alt="" /></p>
<p>The WWDC story this week was that Apple's <strong>Foundation Models</strong> framework went model-agnostic via a new <code>LanguageModel</code> protocol — and Gemini got named first. The concrete follow-through for the rest of us: <strong>Anthropic has now published its own Swift package</strong> implementing that protocol, available June 9.</p>
<p>What this buys you in practice. Apple's framework already returns <em>typed</em> Swift values through guided generation (<code>@Generable</code>) in as few as three lines — great for fast, local, private tasks like summarization or extraction on the Neural Engine. The Claude package lets you <strong>hand those clean, typed outputs off to Claude</strong> when a request needs multi-step reasoning or code generation, and — unlike the on-device model — Claude can <strong>search the web for current info and execute code for data analysis</strong>, then stream the response back into the same SwiftUI view. The framework does the typed-input work, so you arrive at the Claude API call with structured inputs instead of raw user text.</p>
<p>The shape Anthropic shows: a journaling app generates daily prompts on-device, then asks Claude to find threads across months of entries; a study app defines a term locally, then escalates &quot;why does this matter?&quot; to Claude. One UX, the right model per step. Setup is add-the-package, sign in with an Anthropic API key, pass typed outputs through — it handles streaming, tool calls, and structured responses. Works on iOS/iPadOS/macOS/visionOS/watchOS 27. If you ship on Apple platforms, this is the cleanest on-device-to-frontier handoff yet.</p>
<p><strong>Sources:</strong> <a href="https://claude.com/blog/claude-for-foundation-models">Claude blog: Foundation Models support</a>, <a href="https://www.anthropic.com/news/apple-xcode-claude-agent-sdk">Anthropic: Xcode now supports the Claude Agent SDK</a>, <a href="https://www.techtimes.com/articles/318039/20260609/wwdc-2026-developer-tools-foundation-models-now-swaps-ai-providers-without-code-changes.htm">Tech Times: Foundation Models swaps providers without code changes</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-10-claude-foundation-models-swift-package.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-10-claude-foundation-models-swift-package.jpg" />
  </item>
  <item>
    <title><![CDATA[Xcode 27 goes agent-native — and it's the practical Apple story from WWDC]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-09-01-xcode-27-goes-agent-native/</link>
    <guid isPermaLink="false">2026-06-09-01-xcode-27-goes-agent-native</guid>
    <pubDate>Tue, 09 Jun 2026 15:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[AI News]]></category>
    <description><![CDATA[Xcode 27 runs Anthropic, Google, and OpenAI agents inline, lets them validate their own work via tests and previews, and connects tools over MCP and the Agent Client Protocol.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-01-xcode-27-goes-agent-native.jpg" alt="" /></p>
<p>The keynote got the Siri headlines, but the developer story worth your attention is <strong>Xcode 27's agentic overhaul</strong>. You can now run Anthropic, Google, and OpenAI agents directly inside Xcode, with interactive planning, multi-turn Q&amp;A, and a canvas that renders Markdown, diffs, and previews side by side.</p>
<p>The part that actually changes how long an agent can run unattended: Xcode now gives agents the tools to <em>validate their own work</em> — writing and running tests, trying ideas in isolated Playgrounds, checking visual changes through previews, and driving the simulator via a new Device Hub. Plug-ins let you add custom skills, wire in tools over <strong>MCP</strong>, and connect any agent that speaks the <strong>Agent Client Protocol (ACP)</strong>; GitHub and Figma ship one-click integrations.</p>
<p>For engineers, this is Apple adopting the same open agent plumbing (MCP, ACP) the rest of the ecosystem standardized on, rather than a walled garden — which means your existing skills and MCP servers travel into Xcode. Note the split: inline completion runs on-device, but routing a task to a third-party agent does send that code off the machine, and it's opt-in.</p>
<p><strong>Sources:</strong> <a href="https://www.apple.com/newsroom/2026/06/apple-aids-app-development-with-new-intelligence-frameworks-and-advanced-tools/">Apple Newsroom</a>, <a href="https://www.techtimes.com/articles/318045/20260609/xcode-27-device-ai-code-completion-uses-neural-engine-skips-cloud-entirely.htm">Tech Times: Xcode 27 on-device AI</a>, <a href="https://www.technetbooks.com/2026/06/xcode-27-unveiled-at-wwdc-2026-ai-agent.html">Technetbook breakdown</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-01-xcode-27-goes-agent-native.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-01-xcode-27-goes-agent-native.jpg" />
  </item>
  <item>
    <title><![CDATA[Claude Code adds fallback models — set the chain before your next overload]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-09-02-claude-code-fallback-models/</link>
    <guid isPermaLink="false">2026-06-09-02-claude-code-fallback-models</guid>
    <pubDate>Tue, 09 Jun 2026 14:30:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Claude Code v2.1.166 adds a fallbackModel setting that tries up to three models when the primary returns a 529 overload, now applied to interactive and background sessions too.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-02-claude-code-fallback-models.jpg" alt="" /></p>
<p>Claude Code v2.1.166 (June 6, 2026) shipped a <code>fallbackModel</code> setting that lets you configure up to three backup models tried in order when the primary returns a <code>529 Overloaded</code> error — and <code>--fallback-model</code> now applies to interactive and backgrounded (<code>/bg</code>) sessions, not just headless runs.</p>
<p>Fallback fires on overload and unexpected non-retryable errors; auth, rate-limit, request-size, and transport errors still surface immediately (retrying those on another model wouldn't help). A sensible default chain for most developers is Opus 4.8 → Sonnet 4.6 → Haiku 4.5. The same release broadens deny-rule globbing and hardens cross-session message security. If you run long agent sessions, CI pipelines, or background workers, this is a cheap reliability win against the overload windows that otherwise kill a job mid-task.</p>
<p><strong>Sources:</strong> <a href="https://www.aiforanything.io/blog/claude-code-fallback-model-overload-fix-2026">AI for Anything: fallbackModel guide</a>, <a href="https://releasebot.io/updates/anthropic/claude-code">Releasebot: Claude Code June 2026</a>, <a href="https://code.claude.com/docs/en/changelog">Claude Code changelog</a>, <a href="https://www.youtube.com/watch?v=Um9lVyroxoI">Video walkthrough</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-02-claude-code-fallback-models.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-02-claude-code-fallback-models.jpg" />
  </item>
  <item>
    <title><![CDATA[Skill hygiene: install only what you'll use, and treat community skills as untrusted]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-09-03-skill-hygiene-untrusted-community-skills/</link>
    <guid isPermaLink="false">2026-06-09-03-skill-hygiene-untrusted-community-skills</guid>
    <pubDate>Tue, 09 Jun 2026 14:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[Security]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Two practical skill rules from June: install only the skills you'll use because each one costs context every run, and treat community-sourced skills as untrusted until security-scanned.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-03-skill-hygiene-untrusted-community-skills.jpg" alt="" /></p>
<p>As the cross-tool <code>SKILL.md</code> standard spreads across Claude Code, Codex, and Cursor, two practical rules are surfacing in June writeups.</p>
<p>First, <strong>every loaded skill consumes context on every run</strong>, so install the foundation set and add task-specific skills deliberately rather than dumping a whole pack. Context is a budget; skills spend it.</p>
<p>Second, <strong>community-sourced skills are mostly unverified</strong>. One registry (ClawHub) reportedly saw ~20% of early-2026 submissions carrying prompt-injection or credential-theft payloads — so pull from official or high-install, security-scanned sources only, and read a skill before you trust it with your shell and tokens.</p>
<p><strong>Sources:</strong> <a href="https://medium.com/@tentenco/the-8-claude-code-skills-worth-installing-first-898735fec4b8">The 8 Claude Code skills worth installing first (Medium)</a>, <a href="https://www.techtimes.com/articles/317951/20260607/claude-code-skills-inside-anthropics-playbook-nine-types-that-actually-work.htm">Tech Times: Claude Code skills playbook</a>, <a href="https://explainx.ai/blog/what-are-agent-skills-complete-guide">What are agent skills? (explainx.ai)</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-03-skill-hygiene-untrusted-community-skills.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-03-skill-hygiene-untrusted-community-skills.jpg" />
  </item>
  <item>
    <title><![CDATA[WWDC fallout: SiriKit is formally deprecated — start your App Intents migration now]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-09-04-wwdc-sirikit-deprecated-app-intents/</link>
    <guid isPermaLink="false">2026-06-09-04-wwdc-sirikit-deprecated-app-intents</guid>
    <pubDate>Tue, 09 Jun 2026 13:30:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Apple gave SiriKit a formal deprecation notice at WWDC; App Intents is now the only way to integrate with the new Gemini-powered Siri. SiriKit apps already won't surface in it.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-04-wwdc-sirikit-deprecated-app-intents.jpg" alt="" /></p>
<p>A second-day developer detail that wasn't in the keynote-level coverage: Apple gave <strong>SiriKit a formal deprecation notice</strong> and made the expanded <strong>App Intents</strong> framework the <em>only</em> way an app can integrate with the new Gemini-powered Siri.</p>
<p>Apps still using the older <code>INExtension</code>/intent classes keep compiling under iOS 27 but throw deprecation warnings and — critically — won't surface in the rebuilt Siri at all, since it routes exclusively through App Intents. The removal window is roughly 2–3 years (about macOS 29 / fall 2028), but the <em>functional</em> cutoff is now: any app relying on SiriKit voice features is already invisible to the new assistant.</p>
<p>If you own an iOS/macOS app with Siri or Shortcuts integration, schedule the App Intents port this cycle rather than treating it as deprecated-but-fine.</p>
<p><strong>Sources:</strong> <a href="https://www.techtimes.com/articles/318005/20260608/wwdc-2026-app-intents-replaces-sirikit-gemini-siri-migration-clock-starts.htm">Tech Times: App Intents replaces SiriKit</a>, <a href="https://developer.apple.com/documentation/widgetkit/migrating-from-sirikit-intents-to-app-intents">Apple: Migrating from SiriKit Intents to App Intents</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-04-wwdc-sirikit-deprecated-app-intents.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-04-wwdc-sirikit-deprecated-app-intents.jpg" />
  </item>
  <item>
    <title><![CDATA[Verification — not code generation — is now the bottleneck]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-09-05-verification-is-the-bottleneck/</link>
    <guid isPermaLink="false">2026-06-09-05-verification-is-the-bottleneck</guid>
    <pubDate>Tue, 09 Jun 2026 13:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[The converging theme: code generation is no longer the constraint, review capacity is. 96% of developers don't fully trust AI code; invest in review throughput like build speed.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-05-verification-is-the-bottleneck.jpg" alt="" /></p>
<p>The theme converging across Hacker News threads and June writeups: <strong>code volume is no longer the constraint; review capacity is.</strong> Sonar's 2026 State of Code survey found 96% of developers don't fully trust AI-generated code to be functionally correct, yet only ~48% always review it before committing — and PR review time rises 91% when teams adopt AI assistants even as individual task completion climbs.</p>
<p>The practical response is to treat verification as a first-class discipline and invest in review throughput the way you'd invest in build speed: smaller PRs, automated quality gates (static analysis, security scanning) on AI-generated changes, and human review reserved for architecture and business logic. &quot;Vibe, then verify&quot; — accept fast, validate systematically.</p>
<p><strong>Sources:</strong> <a href="https://dev.to/tanishka_karsulkar_ec9e58/the-verification-gap-why-96-of-developers-dont-fully-trust-ai-code-yet-only-half-always-check-4cah">DEV: The Verification Gap</a>, <a href="https://byteiota.com/ai-code-verification-bottleneck-96-dont-trust-ai-code/">byteiota: 96% don't trust AI code</a>, <a href="https://www.hitechies.com/ai-coding-agents-developer-skills-code-review-2026/">Hitechies: the best engineers aren't the best coders</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-05-verification-is-the-bottleneck.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-05-verification-is-the-bottleneck.jpg" />
  </item>
  <item>
    <title><![CDATA[Pin one MCP per system, then write thin skills on top]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-09-06-pin-one-mcp-per-system/</link>
    <guid isPermaLink="false">2026-06-09-06-pin-one-mcp-per-system</guid>
    <pubDate>Tue, 09 Jun 2026 12:30:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[A hardening pattern for context cost: pin one MCP per external system you truly need live, and push orchestration into thin skills using progressive disclosure.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-06-pin-one-mcp-per-system.jpg" alt="" /></p>
<p>A clean architectural pattern is hardening for managing context cost. <strong>MCP tool definitions are expensive</strong>: connecting three servers (GitHub, Slack, Sentry) can load 55,000 tokens of tool definitions before the agent reads its first message, and one documented setup hit 143,000 tokens — 72% of a 200K window — before doing any work. Benchmarks also show MCP costing 4–32× more tokens per operation than an equivalent CLI call.</p>
<p>Bigger 1M-token windows give margin but don't change the multiplier. The durable fix is <strong>progressive disclosure</strong>: each query returns only what the agent needs for its current decision, with full records available on request. The practical shape — pin one MCP per external system you genuinely need live (GitHub, Postgres, Linear, Sentry), and push orchestration logic into thin skills rather than connecting yet another server.</p>
<p><strong>Sources:</strong> <a href="https://roadie.io/blog/mcp-server-context-window/">Roadie: Why your MCP server is eating your context window</a>, <a href="https://codersera.com/blog/claude-skills-mcp-servers-practitioner-guide-2026/">Claude Skills and MCP Servers: a practitioner's guide (Codersera)</a>, <a href="https://developers.redhat.com/articles/2026/05/25/mcp-servers-vs-skills-choosing-right-context-your-ai">Red Hat Developer: MCP servers vs skills</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-06-pin-one-mcp-per-system.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-06-pin-one-mcp-per-system.jpg" />
  </item>
  <item>
    <title><![CDATA[Fresh agentic-RAG references worth bookmarking]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-09-07-agentic-rag-references/</link>
    <guid isPermaLink="false">2026-06-09-07-agentic-rag-references</guid>
    <pubDate>Tue, 09 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Two new arXiv entries map where agentic RAG is heading: a systematization (SoK) with a taxonomy and eval framework, and A-RAG's hierarchical retrieval interfaces.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Two new arXiv entries give a current map of where retrieval-augmented agents are heading.</p>
<p>The <strong>SoK: Agentic Retrieval-Augmented Generation</strong> systematization lays out a taxonomy, architectures, and an evaluation framework for agentic RAG — a good shared vocabulary if your team is past single-pass RAG and arguing about what to build next.</p>
<p><strong>A-RAG</strong> proposes hierarchical retrieval <em>interfaces</em> to scale agentic RAG, treating retrieval as a layered tool the agent navigates rather than a flat lookup. Useful when your retrieval layer — not the model — has become the accuracy ceiling.</p>
<p><strong>Sources:</strong> <a href="https://arxiv.org/pdf/2603.07379">SoK: Agentic RAG (arXiv 2603.07379)</a>, <a href="https://arxiv.org/pdf/2602.03442">A-RAG (arXiv 2602.03442)</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Apple opens its platform to any model — Core AI for local LLMs, Foundation Models for the cloud]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-09-08-apple-model-agnostic-core-ai-foundation-models/</link>
    <guid isPermaLink="false">2026-06-09-08-apple-model-agnostic-core-ai-foundation-models</guid>
    <pubDate>Tue, 09 Jun 2026 11:30:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[Apple's platform is now model-agnostic: Foundation Models calls Claude, Gemini, or any provider via a LanguageModel protocol, and Core AI runs full third-party LLMs locally on Apple silicon.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-08-apple-model-agnostic-core-ai-foundation-models.jpg" alt="" /></p>
<p>Beyond Siri, the structurally significant developer news from WWDC is that <strong>Apple's platform is now model-agnostic.</strong></p>
<p>The <strong>Foundation Models</strong> framework becomes a single native Swift API that, via a new <em>LanguageModel protocol</em>, lets you call Claude, Gemini, or any provider that implements it — Gemini is among the first, available through the Firebase Apple SDK. Small developers (App Store Small Business Program, under 2M lifetime downloads) get Apple's next-gen models on Private Cloud Compute at no cloud API cost.</p>
<p>Separately, <strong>Core AI</strong> is a brand-new framework for running full-scale third-party LLMs <em>locally</em>, optimized for Apple silicon's unified memory and Neural Engine. For engineers, this turns hundreds of millions of devices into a first-class, MCP/ACP-speaking deployment target where you pick the model instead of being handed one.</p>
<p><strong>Sources:</strong> <a href="https://www.fonearena.com/blog/484623/apple-wwdc26-foundation-models-gemini-support-xcode-27-agentic-coding-tools.html">FoneArena: Foundation Models gain Gemini support</a>, <a href="https://www.apple.com/newsroom/2026/06/apple-aids-app-development-with-new-intelligence-frameworks-and-advanced-tools/">Apple Newsroom</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-08-apple-model-agnostic-core-ai-foundation-models.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-08-apple-model-agnostic-core-ai-foundation-models.jpg" />
  </item>
  <item>
    <title><![CDATA[Siri AI delayed in the EU under the DMA — plan for regulatory fragmentation]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-09-09-siri-ai-delayed-eu-dma/</link>
    <guid isPermaLink="false">2026-06-09-09-siri-ai-delayed-eu-dma</guid>
    <pubDate>Tue, 09 Jun 2026 11:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <description><![CDATA[Apple confirmed Siri AI's personal-context features won't ship in the EU at launch for iOS/iPadOS 27, citing DMA compliance — a concrete reminder that AI features are now region-gated.]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-09-siri-ai-delayed-eu-dma.jpg" alt="" /></p>
<p>Apple confirmed that Siri AI's new personal-context and assistant features <strong>will not ship in the EU at launch</strong> for iOS 27 and iPadOS 27, citing Digital Markets Act compliance — with no timeline for when they will. (EU users still get Siri AI on macOS 27 and visionOS 27.)</p>
<p>For engineers building App Intents integrations or features that hook into Siri AI capabilities, this is a concrete reminder that AI feature availability is now <strong>region-gated by regulation</strong>. Design for graceful degradation and test the EU configuration as a first-class path, not an afterthought — &quot;available everywhere&quot; is no longer a safe default for AI features.</p>
<p><strong>Sources:</strong> <a href="https://www.apple.com/newsroom/2026/06/due-to-dma-siri-ai-delayed-in-eu-for-ios-27-and-ipados-27/">Apple Newsroom: Siri AI delayed in EU</a></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-09-siri-ai-delayed-eu-dma.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-09-09-siri-ai-delayed-eu-dma.jpg" />
  </item>
  <item>
    <title><![CDATA[Claude Code changelog: hooks can now keep the turn alive, plus plugin management]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-08-01-claude-code-changelog-hooks-can-now-keep-the-tur/</link>
    <guid isPermaLink="false">2026-06-08-01-claude-code-changelog-hooks-can-now-keep-the-tur</guid>
    <pubDate>Mon, 08 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[The latest Claude Code release lets Stop and SubagentStop hooks return hookSpecificOutput.additionalContext to feed the model guidance without tripping a hook-error state — useful for nudging an…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>The latest Claude Code release lets <code>Stop</code> and <code>SubagentStop</code> hooks return <code>hookSpecificOutput.additionalContext</code> to feed the model guidance <em>without</em> tripping a hook-error state — useful for nudging an agent to keep working instead of bailing. Also new: a <code>/plugin list</code> command with <code>--enabled</code>/<code>--disabled</code> filters, and a <code>$</code> escape in Skills so you can include a literal <code>$</code> before a digit in command bodies. Worth a scan if you script Claude Code automation.</p>
<p>---
<em>Sources: <a href="https://code.claude.com/docs/en/changelog">Claude Code changelog</a> · <a href="https://releasebot.io/updates/anthropic/claude-code">Releasebot: Claude Code June 2026</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[A concrete baseline for configuring a coding agent in 2026]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-08-02-a-concrete-baseline-for-configuring-a-coding-age/</link>
    <guid isPermaLink="false">2026-06-08-02-a-concrete-baseline-for-configuring-a-coding-age</guid>
    <pubDate>Mon, 08 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[DevOps]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[A 40-engineer survey writeup lands on a default config worth copying: custom style instructions, an AGENTS.md in the repo for architecture context, 5–10 skills for repetitive workflows (review,…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>A 40-engineer survey writeup lands on a default config worth copying: custom style instructions, an <code>AGENTS.md</code> in the repo for architecture context, 5–10 skills for repetitive workflows (review, commits, docs, testing), and 2–3 MCP servers for the services you touch daily (DB, CI/CD, monitoring). It also pushes a safe-adoption ladder — let agents add tests and fix small bugs first, then low-risk refactors, then dependency/doc sync, and only then cross-module feature work.</p>
<p>---
<em>Sources: <a href="https://www.aibuilderclub.com/blog/best-ai-coding-agent-2026">AI Builder Club survey</a> · <a href="https://www.agensi.io/learn/ai-agent-configuration-guide-2026">Agent configuration guide</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Treat your coding tools as interchangeable subagents, not rival apps]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-08-03-treat-your-coding-tools-as-interchangeable-subag/</link>
    <guid isPermaLink="false">2026-06-08-03-treat-your-coding-tools-as-interchangeable-subag</guid>
    <pubDate>Mon, 08 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[A pattern gaining traction: route a single task across Codex, Claude Code, Cursor CLI, and Gemini CLI as cooperating subagents, using MCP as the shared wire protocol. The open-source…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>A pattern gaining traction: route a single task across Codex, Claude Code, Cursor CLI, and Gemini CLI as cooperating subagents, using MCP as the shared wire protocol. The open-source <code>sub-agents-skills</code> project packages this as an Agent Skill so you can delegate from whichever tool you're driving. The takeaway for engineers: stop picking one winner and start composing them — MCP is now mature enough that cross-tool orchestration is a real workflow, not a demo.</p>
<p>---
<em>Sources: <a href="https://github.com/shinpr/sub-agents-skills">sub-agents-skills (GitHub)</a> · <a href="https://dev.to/sattensil888/claude-code-is-the-engine-cursor-is-the-cockpit-7kh">Claude Code is the engine, Cursor is the cockpit</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[LLM-as-judge: the actual sampling economics]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-08-04-llm-as-judge-the-actual-sampling-economics/</link>
    <guid isPermaLink="false">2026-06-08-04-llm-as-judge-the-actual-sampling-economics</guid>
    <pubDate>Mon, 08 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Beyond "build evals" advice that's been circulating, here's the concrete budget that production teams are converging on: run a frontier model as judge on 10–20% of production traffic and 100% of CI…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Beyond &quot;build evals&quot; advice that's been circulating, here's the concrete budget that production teams are converging on: run a frontier model as judge on 10–20% of production traffic and 100% of CI regression cases, and reserve human annotation for calibration and high-uncertainty edge cases (~2–5% of traffic). In 2026, LLM judges agree with human reviewers ~85% of the time — higher than two humans agree with each other — which is why it's now the default for evaluating LLM apps at scale. Validate the judge against human labels before you trust it.</p>
<p>---
<em>Sources: <a href="https://medium.com/@vinodkrane/chapter-8-agent-evaluation-for-llms-how-to-test-tools-trajectories-and-llm-as-judge-788f6f3e0d52">Agent Evaluation: tools, trajectories &amp; LLM-as-judge</a> · <a href="https://www.confident-ai.com/blog/why-llm-as-a-judge-is-the-best-llm-evaluation-method">Confident AI: LLM-as-a-judge guide</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Apple's Foundation Models framework as a free, private inference tier]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-08-05-apples-foundation-models-framework-as-a-free-pri/</link>
    <guid isPermaLink="false">2026-06-08-05-apples-foundation-models-framework-as-a-free-pri</guid>
    <pubDate>Mon, 08 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Cloud]]></category>
    <description><![CDATA[Relevant given today's WWDC: Apple's framework exposes the ~3B on-device model (the one behind Apple Intelligence) from Swift in as few as three lines, with guided generation and tool calling built…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-08-05-apples-foundation-models-framework-as-a-free-pri.jpg" alt="" /></p>
<p>Relevant given today's WWDC: Apple's framework exposes the ~3B on-device model (the one behind Apple Intelligence) from Swift in as few as three lines, with guided generation and tool calling built in. Inference is free and runs offline, which makes it a real option for classification, structured extraction, and light agent tasks in shipping apps — reach for it before paying for a cloud round-trip, and fall back to cloud only when you need the bigger model. Apple is expected to expand context windows and fine-tuning support this week.</p>
<p>---
<em>Sources: <a href="https://developer.apple.com/documentation/FoundationModels">Foundation Models docs</a> · <a href="https://dev.to/arshtechpro/apples-foundation-models-framework-run-ai-on-device-with-just-a-few-lines-of-swift-lbp">Run AI on-device with a few lines of Swift</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-08-05-apples-foundation-models-framework-as-a-free-pri.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-08-05-apples-foundation-models-framework-as-a-free-pri.jpg" />
  </item>
  <item>
    <title><![CDATA[WWDC 2026: Gemini-powered Siri, and an iOS 27 slot for third-party assistants]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-08-06-wwdc-2026-gemini-powered-siri-and-an-ios-27-slot/</link>
    <guid isPermaLink="false">2026-06-08-06-wwdc-2026-gemini-powered-siri-and-an-ios-27-slot</guid>
    <pubDate>Mon, 08 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Apple opened WWDC today (June 8) with a rebuilt Siri backed by a custom ~1.2-trillion-parameter Gemini model licensed from Google (reportedly ~$1B/year), adding a chat mode and personal-context…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-08-06-wwdc-2026-gemini-powered-siri-and-an-ios-27-slot.jpg" alt="" /></p>
<p>Apple opened WWDC today (June 8) with a rebuilt Siri backed by a custom ~1.2-trillion-parameter Gemini model licensed from Google (reportedly ~$1B/year), adding a chat mode and personal-context features. The part that matters for engineers: <strong>iOS 27 Extensions let users pick a third-party AI model as their default assistant</strong>, and Siri can hand questions off to installed services like Claude or Gemini — a new, OS-level distribution surface for AI apps. Developer betas are out now, public betas in July, GA in the fall.</p>
<p>---
<em>Sources: <a href="https://techcrunch.com/2026/06/06/what-to-expect-from-wwdc-2026-siris-highly-anticipated-revamp-and-apple-intelligence-updates/">TechCrunch: what to expect</a> · <a href="https://www.macrumors.com/guide/wwdc-2026-what-to-expect/">MacRumors WWDC 2026 guide</a> · <a href="https://developer.apple.com/wwdc26/">Apple Developer: WWDC26</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-08-06-wwdc-2026-gemini-powered-siri-and-an-ios-27-slot.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-08-06-wwdc-2026-gemini-powered-siri-and-an-ios-27-slot.jpg" />
  </item>
  <item>
    <title><![CDATA[Codex changelog: Sites preview hardens, Windows sandbox lands]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-08-07-codex-changelog-sites-preview-hardens-windows-sa/</link>
    <guid isPermaLink="false">2026-06-08-07-codex-changelog-sites-preview-hardens-windows-sa</guid>
    <pubDate>Mon, 08 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[Following last week's Codex "Sites" launch (covered June 6), this week's update adds archive controls, smoother TUI markdown, stronger remote execution and app-server support, Windows sandbox…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-08-07-codex-changelog-sites-preview-hardens-windows-sa.jpg" alt="" /></p>
<p>Following last week's Codex &quot;Sites&quot; launch (covered June 6), this week's update adds archive controls, smoother TUI markdown, stronger remote execution and app-server support, Windows sandbox provisioning, and image-generation extension support, plus auth and command-safety improvements. Minor on its own, but the Windows sandbox in particular widens where Codex's autonomous execution can run. <em>Update to prior coverage — the Sites feature itself was already reported.</em></p>
<p>---
<em>Sources: <a href="https://developers.openai.com/codex/changelog">Codex changelog</a> · <a href="https://releasebot.io/updates/openai/codex">Releasebot: Codex June 2026</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-08-07-codex-changelog-sites-preview-hardens-windows-sa.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-08-07-codex-changelog-sites-preview-hardens-windows-sa.jpg" />
  </item>
  <item>
    <title><![CDATA[Gemini CLI users: migrate to Antigravity CLI before June 18]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-07-01-gemini-cli-users-migrate-to-antigravity-cli-befo/</link>
    <guid isPermaLink="false">2026-06-07-01-gemini-cli-users-migrate-to-antigravity-cli-befo</guid>
    <pubDate>Sun, 07 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[DevOps]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Google's release notes confirm that the Gemini Code Assist IDE extensions and the standalone Gemini CLI will stop serving requests for individual, Google AI Pro, and AI Ultra tiers on June 18, 2026.…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-01-gemini-cli-users-migrate-to-antigravity-cli-befo.jpg" alt="" /></p>
<p>Google's release notes confirm that the Gemini Code Assist IDE extensions and the standalone Gemini CLI will <strong>stop serving requests for individual, Google AI Pro, and AI Ultra tiers on June 18, 2026</strong>. The replacement is Antigravity and the new Go-based Antigravity CLI (Gemini 3.5 Flash by default, with Gemini 3.1 Pro / 3.0 Flash available for agent mode). If any of your scripts, CI jobs, or local workflows shell out to <code>gemini</code>, they will break that day — plan the swap now rather than discovering it in a red pipeline.</p>
<p>---
<em>Sources: <a href="https://developers.google.com/gemini-code-assist/resources/release-notes">Gemini Code Assist Release Notes</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-01-gemini-cli-users-migrate-to-antigravity-cli-befo.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-01-gemini-cli-users-migrate-to-antigravity-cli-befo.jpg" />
  </item>
  <item>
    <title><![CDATA[Treat folder structure as agentic architecture, not just human organization]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-07-02-treat-folder-structure-as-agentic-architecture-n/</link>
    <guid isPermaLink="false">2026-06-07-02-treat-folder-structure-as-agentic-architecture-n</guid>
    <pubDate>Sun, 07 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[A new arXiv paper ("Interpretable Context Methodology: Folder Structure as Agentic Architecture") argues your directory layout is itself a context-engineering lever: agents navigate and retrieve by…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>A new arXiv paper (&quot;Interpretable Context Methodology: Folder Structure as Agentic Architecture&quot;) argues your directory layout is itself a context-engineering lever: agents navigate and retrieve by path semantics, so a tree organized around clear, self-describing boundaries lets an agent locate the right code without burning session tokens re-discovering structure. The practical takeaway is to name and group directories for machine navigation (predictable, intent-revealing paths) the same way you'd write a good CLAUDE.md.</p>
<p>---
<em>Sources: <a href="https://arxiv.org/pdf/2603.16021">arXiv 2603.16021</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Six months in: split the work by tool, don't pick one winner]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-07-03-six-months-in-split-the-work-by-tool-dont-pick-o/</link>
    <guid isPermaLink="false">2026-06-07-03-six-months-in-split-the-work-by-tool-dont-pick-o</guid>
    <pubDate>Sun, 07 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Cloud]]></category>
    <description><![CDATA[The New Stack's hands-on retrospective comparing Claude Code, Cursor, Codex, and Antigravity lands on a role-splitting workflow rather than a single "best" tool: terminal agents (Claude Code, Codex)…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-03-six-months-in-split-the-work-by-tool-dont-pick-o.jpg" alt="" /></p>
<p>The New Stack's hands-on retrospective comparing Claude Code, Cursor, Codex, and Antigravity lands on a role-splitting workflow rather than a single &quot;best&quot; tool: terminal agents (Claude Code, Codex) for deep autonomous multi-file changes and refactors, IDE-integrated tools (Cursor) for tight interactive editing and review, and cloud/background agents for parallel delegation. The recurring failure mode they flag is context drift between tools — keep a shared rules file (CLAUDE.md / AGENTS.md) as the single source of truth so each agent respects the same conventions.</p>
<p>---
<em>Sources: <a href="https://thenewstack.io/claude-code-vs-cursor-vs-codex-vs-antigravity-2026/">The New Stack</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-03-six-months-in-split-the-work-by-tool-dont-pick-o.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-03-six-months-in-split-the-work-by-tool-dont-pick-o.jpg" />
  </item>
  <item>
    <title><![CDATA[Beyond Human-Readable": code conventions are shifting toward the agent as primary reader]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-07-04-beyond-human-readable-code-conventions-are-shift/</link>
    <guid isPermaLink="false">2026-06-07-04-beyond-human-readable-code-conventions-are-shift</guid>
    <pubDate>Sun, 07 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[This new paper makes a concrete engineering argument: once LLM agents are the main consumers reading, writing, and debugging your code, optimizing purely for human readability can be…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-04-beyond-human-readable-code-conventions-are-shift.jpg" alt="" /></p>
<p>This new paper makes a concrete engineering argument: once LLM agents are the main consumers reading, writing, and debugging your code, optimizing purely for human readability can be counterproductive. It proposes <em>semantic density optimization</em> (strip zero-information tokens, keep high-signal ones), a <em>program skeleton</em> abstraction for fast agent navigation, and — provocatively — the selective &quot;rehabilitation&quot; of classical anti-patterns, validated on a log-format token-economy experiment. Useful framing when you design how agents log, summarize, and traverse a codebase.</p>
<p>---
<em>Sources: <a href="https://arxiv.org/abs/2604.07502">arXiv 2604.07502</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-04-beyond-human-readable-code-conventions-are-shift.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-04-beyond-human-readable-code-conventions-are-shift.jpg" />
  </item>
  <item>
    <title><![CDATA[A unified map of agent "externalization" — memory, skills, protocols, harness]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-07-05-a-unified-map-of-agent-externalization-memory-sk/</link>
    <guid isPermaLink="false">2026-06-07-05-a-unified-map-of-agent-externalization-memory-sk</guid>
    <pubDate>Sun, 07 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[A new survey ("Externalization in LLM Agents: A Unified Review of Memory, Skills, Protocols and Harness Engineering") pulls the scattered agent-engineering vocabulary into one framework: what the…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>A new survey (&quot;Externalization in LLM Agents: A Unified Review of Memory, Skills, Protocols and Harness Engineering&quot;) pulls the scattered agent-engineering vocabulary into one framework: what the agent stores outside its context (memory), what reusable capabilities it loads (skills), how it talks to tools and other agents (protocols like MCP), and the surrounding execution scaffolding (harness). If you're designing an agent system and keep reinventing terms, this is a good shared reference to align a team on.</p>
<p>---
<em>Sources: <a href="https://arxiv.org/pdf/2604.08224">arXiv 2604.08224</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Empirical look at agentic AI across the full SDLC]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-07-06-empirical-look-at-agentic-ai-across-the-full-sdl/</link>
    <guid isPermaLink="false">2026-06-07-06-empirical-look-at-agentic-ai-across-the-full-sdl</guid>
    <pubDate>Sun, 07 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA["Agentic AI in the Software Development Lifecycle: Architecture, Empirical Evidence, and the Reshaping of Software Engineering" surveys where autonomous agents are actually landing across planning,…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-06-empirical-look-at-agentic-ai-across-the-full-sdl.jpg" alt="" /></p>
<p>&quot;Agentic AI in the Software Development Lifecycle: Architecture, Empirical Evidence, and the Reshaping of Software Engineering&quot; surveys where autonomous agents are actually landing across planning, coding, testing, review, and ops — and where the empirical evidence supports real gains versus where it's still hype. A grounded read for engineering leaders deciding which lifecycle stages to instrument with agents first, rather than rolling them out everywhere at once.</p>
<p>---
<em>Sources: <a href="https://arxiv.org/abs/2604.26275">arXiv 2604.26275</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-06-empirical-look-at-agentic-ai-across-the-full-sdl.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-06-empirical-look-at-agentic-ai-across-the-full-sdl.jpg" />
  </item>
  <item>
    <title><![CDATA[OpenAI agrees to pre-release federal safety reviews]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-07-07-openai-agrees-to-pre-release-federal-safety-revi/</link>
    <guid isPermaLink="false">2026-06-07-07-openai-agrees-to-pre-release-federal-safety-revi</guid>
    <pubDate>Sun, 07 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[OpenAI told CNBC it will comply with the new executive order asking frontier developers to submit models for a 30-day federal safety check before release. For engineers, this signals a likely…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-07-openai-agrees-to-pre-release-federal-safety-revi.jpg" alt="" /></p>
<p>OpenAI told CNBC it will comply with the new executive order asking frontier developers to submit models for a <strong>30-day federal safety check before release</strong>. For engineers, this signals a likely slowdown and more predictable cadence on frontier model launches — the days of surprise drops may be ending — and sets a compliance precedent the other major labs will probably follow. It lands the same week the OpenAI, Anthropic, Google DeepMind, and Microsoft AI chiefs jointly asked Congress to mandate synthetic-DNA screening (an escalation of the bio-risk letter first noted in the June 3 briefing).</p>
<p>---
<em>Sources: <a href="https://www.cnbc.com/2026/06/01/microsoft-and-google-take-on-anthropic-and-openai-in-ai-coding-models.html">CNBC</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-07-openai-agrees-to-pre-release-federal-safety-revi.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-07-openai-agrees-to-pre-release-federal-safety-revi.jpg" />
  </item>
  <item>
    <title><![CDATA[Cursor restructures Teams pricing into Standard and Premium seats]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-07-08-cursor-restructures-teams-pricing-into-standard-/</link>
    <guid isPermaLink="false">2026-06-07-08-cursor-restructures-teams-pricing-into-standard-</guid>
    <pubDate>Sun, 07 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <description><![CDATA[Cursor moved Teams to two tiers: Standard at $32/seat/mo (annual) or $40/mo, and a new Premium at $96/seat/mo (annual) or $120/mo with ~5x the usage allotment. Coming right after GitHub Copilot's…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-08-cursor-restructures-teams-pricing-into-standard-.jpg" alt="" /></p>
<p>Cursor moved Teams to two tiers: <strong>Standard at $32/seat/mo (annual) or $40/mo</strong>, and a new <strong>Premium at $96/seat/mo (annual) or $120/mo with ~5x the usage allotment</strong>. Coming right after GitHub Copilot's billing overhaul, it's another sign the AI coding tools are converging on usage-metered, tiered pricing — worth re-checking your team's seat mix and monthly token burn before the next renewal so you're not overpaying for idle Premium seats or throttling heavy users on Standard.</p>
<p>---
<em>Sources: <a href="https://lushbinary.com/blog/ai-coding-agents-comparison-cursor-windsurf-claude-copilot-kiro-2026/">Lushbinary pricing breakdown</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-08-cursor-restructures-teams-pricing-into-standard-.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-08-cursor-restructures-teams-pricing-into-standard-.jpg" />
  </item>
  <item>
    <title><![CDATA[SynthID watermarking gains cross-vendor adoption]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-07-09-synthid-watermarking-gains-cross-vendor-adoption/</link>
    <guid isPermaLink="false">2026-06-07-09-synthid-watermarking-gains-cross-vendor-adoption</guid>
    <pubDate>Sun, 07 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Google announced that OpenAI, Kakao, and ElevenLabs are adopting SynthID, its watermarking standard for AI-generated content. This nudges watermarking toward an industry default — relevant if you…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-09-synthid-watermarking-gains-cross-vendor-adoption.jpg" alt="" /></p>
<p>Google announced that OpenAI, Kakao, and ElevenLabs are adopting <strong>SynthID</strong>, its watermarking standard for AI-generated content. This nudges watermarking toward an industry default — relevant if you build anything that ingests, moderates, or republishes generated images/audio/text, since you can increasingly rely on a shared provenance signal rather than rolling your own detection.</p>
<p>---
<em>Sources: <a href="https://blog.google/innovation-and-ai/sundar-pichai-io-2026/">Google I/O 2026 keynote recap</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-09-synthid-watermarking-gains-cross-vendor-adoption.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-07-09-synthid-watermarking-gains-cross-vendor-adoption.jpg" />
  </item>
  <item>
    <title><![CDATA[The "tasks as issues" pattern from this week's Ask HN dev-stack thread]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-06-01-the-tasks-as-issues-pattern-from-this-weeks-ask-/</link>
    <guid isPermaLink="false">2026-06-06-01-the-tasks-as-issues-pattern-from-this-weeks-ask-</guid>
    <pubDate>Sat, 06 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[The current Ask HN: What is your (AI) dev tech stack / workflow? thread surfaces a consistent winning pattern: write each unit of work like a GitHub issue (background, goal, acceptance criteria,…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>The current <a href="https://news.ycombinator.com/item?id=48413629">Ask HN: What is your (AI) dev tech stack / workflow?</a> thread surfaces a consistent winning pattern: write each unit of work like a GitHub issue (background, goal, acceptance criteria, constraints, test command) instead of a casual chat, and keep chunks small enough to fit in context and be reviewed. Practitioners pair this with small commits and good messages so that when an agent breaks something across five changes, you can bisect to the culprit. It's a low-effort habit that meaningfully reduces agent &quot;off the rails&quot; output.</p>
<p>---
<em>Sources: <a href="https://news.ycombinator.com/item?id=48413629">Hacker News</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Review agent output like a junior engineer's PR, not an oracle]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-06-02-review-agent-output-like-a-junior-engineers-pr-n/</link>
    <guid isPermaLink="false">2026-06-06-02-review-agent-output-like-a-junior-engineers-pr-n</guid>
    <pubDate>Sat, 06 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[Security]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[A widely-shared practical roadmap argues the default 2026 loop is hybrid: plan in your IDE, let the agent execute in a sandbox, then gate everything behind CI + human PR review. The mental model that…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-06-02-review-agent-output-like-a-junior-engineers-pr-n.jpg" alt="" /></p>
<p>A widely-shared <a href="https://codepick.dev/en/guides/ai-coding-agents-2026-roadmap/">practical roadmap</a> argues the default 2026 loop is hybrid: plan in your IDE, let the agent execute in a sandbox, then gate everything behind CI + human PR review. The mental model that matters is treating results as a junior's pull request — inspect diffs, run the tests, check edge cases and security — rather than accepting them as authoritative. Teams with solid CI/CD and test automation foundations are the ones turning agent velocity into actual shipped throughput.</p>
<p>---
<em>Sources: <a href="https://codepick.dev/en/guides/ai-coding-agents-2026-roadmap/">CodePick</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-06-02-review-agent-output-like-a-junior-engineers-pr-n.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-06-02-review-agent-output-like-a-junior-engineers-pr-n.jpg" />
  </item>
  <item>
    <title><![CDATA[Treat the context window as RAM, not storage]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-06-03-treat-the-context-window-as-ram-not-storage/</link>
    <guid isPermaLink="false">2026-06-06-03-treat-the-context-window-as-ram-not-storage</guid>
    <pubDate>Sat, 06 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[A Mem0 post from June 5 makes a clean distinction that explains a lot of agent failures: the context window is working memory (RAM), and stuffing it like persistent storage is what causes drift and…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>A <a href="https://mem0.ai/blog/context-window-is-ram-not-storage-why-most-agent-failures-happen-how-to-fix-them-in-2026">Mem0 post from June 5</a> makes a clean distinction that explains a lot of agent failures: the context window is working memory (RAM), and stuffing it like persistent storage is what causes drift and degradation. The fix is a memory hierarchy — separate short-lived working context from a persistent store, and retrieve narrowly (their algorithm stays under ~7K tokens per call vs. 25K+ for full-context dumps) while scoring better on long-memory benchmarks. Practically: compress and summarize old turns, curate what persists, and lean on retrieval instead of an ever-growing prompt.</p>
<p>---
<em>Sources: <a href="https://mem0.ai/blog/context-window-is-ram-not-storage-why-most-agent-failures-happen-how-to-fix-them-in-2026">Mem0</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Slopsquatting is now a confirmed supply-chain threat — gate your dependencies]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-06-04-slopsquatting-is-now-a-confirmed-supply-chain-th/</link>
    <guid isPermaLink="false">2026-06-06-04-slopsquatting-is-now-a-confirmed-supply-chain-th</guid>
    <pubDate>Sat, 06 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[React]]></category>
    <description><![CDATA[Roughly 20% of AI-generated code references packages that don't exist, and attackers are registering those hallucinated names as malware. The CSA and vendors document real cases: the malicious…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-06-04-slopsquatting-is-now-a-confirmed-supply-chain-th.jpg" alt="" /></p>
<p>Roughly 20% of AI-generated code references packages that don't exist, and attackers are registering those hallucinated names as malware. The CSA and vendors document real cases: the malicious <code>unused-imports</code> npm package (a hallucination of <code>eslint-plugin-unused-imports</code>) was still pulling ~233 weekly downloads in February, and <code>react-codeshift</code> spread through 237 repos largely via autonomous agents installing their own hallucinated output. The defense is concrete: add a dependency scanner that flags non-existent/suspicious packages before install, pin lockfiles, and don't let coding agents resolve dependencies unsupervised.</p>
<p>---
<em>Sources: <a href="https://labs.cloudsecurityalliance.org/research/csa-research-note-slopsquatting-ai-supply-chain-20260419-csa/">Cloud Security Alliance</a> · <a href="https://www.trendmicro.com/vinfo/us/security/news/cybercrime-and-digital-threats/slopsquatting-when-ai-agents-hallucinate-malicious-packages">Trend Micro</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-06-04-slopsquatting-is-now-a-confirmed-supply-chain-th.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-06-04-slopsquatting-is-now-a-confirmed-supply-chain-th.jpg" />
  </item>
  <item>
    <title><![CDATA[The moat is eval infrastructure, not the model]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-06-05-the-moat-is-eval-infrastructure-not-the-model/</link>
    <guid isPermaLink="false">2026-06-06-05-the-moat-is-eval-infrastructure-not-the-model</guid>
    <pubDate>Sat, 06 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[A Towards Data Science framework distilled from 100+ deployments argues the teams shipping agents successfully aren't the ones with the best model — they're the ones with the best evaluation harness.…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-06-05-the-moat-is-eval-infrastructure-not-the-model.jpg" alt="" /></p>
<p>A <a href="https://towardsdatascience.com/building-an-evaluation-harness-for-production-ai-agents-a-12-metric-framework-from-100-deployments/">Towards Data Science framework</a> distilled from 100+ deployments argues the teams shipping agents successfully aren't the ones with the best model — they're the ones with the best evaluation harness. Key specifics worth adopting: measure all-runs consistency with pass^k (not just pass@k), calibrate your LLM judge against a human gold set, grow your eval datasets from real production traces, and gate CI on actual scores. It also stresses logging full trajectories — every prompt, tool call, and intermediate thought — so failures are debuggable.</p>
<p>---
<em>Sources: <a href="https://towardsdatascience.com/building-an-evaluation-harness-for-production-ai-agents-a-12-metric-framework-from-100-deployments/">Towards Data Science</a> · <a href="https://arize.com/blog/the-best-eval-harness-for-production-ai-a-comparison/">Arize comparison</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-06-05-the-moat-is-eval-infrastructure-not-the-model.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-06-05-the-moat-is-eval-infrastructure-not-the-model.jpg" />
  </item>
  <item>
    <title><![CDATA[Skill vs. subagent: a simple decision rule]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-06-06-skill-vs-subagent-a-simple-decision-rule/</link>
    <guid isPermaLink="false">2026-06-06-06-skill-vs-subagent-a-simple-decision-rule</guid>
    <pubDate>Sat, 06 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[A practical Claude Code guide offers a clean heuristic for when to reach for which primitive: if the work is small and should stay in front of you, make it a skill; if it's big and should run in a…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>A <a href="https://docs.bswen.com/blog/2026-04-09-subagents-skills-claude-code/">practical Claude Code guide</a> offers a clean heuristic for when to reach for which primitive: if the work is small and should stay in front of you, make it a skill; if it's big and should run in a side process with isolated context, make it a subagent. Subagents shine for research and review (exploring 10+ files, then reporting a structured summary of what changed, what was tested, and what's risky back to the parent), and you launch independent ones in parallel batches rather than sequentially.</p>
<p>---
<em>Sources: <a href="https://docs.bswen.com/blog/2026-04-09-subagents-skills-claude-code/">BSWEN</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[OpenAI pushes Codex past coding — Sites, role-specific plugins, and in-place Annotations]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-06-07-openai-pushes-codex-past-coding-sites-role-speci/</link>
    <guid isPermaLink="false">2026-06-06-07-openai-pushes-codex-past-coding-sites-role-speci</guid>
    <pubDate>Sat, 06 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[In a June 2 update, OpenAI repositioned Codex from a programming assistant into a general work environment: "Sites" lets agents build and share hosted dashboards/apps via URL, six role-specific…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>In a <a href="https://venturebeat.com/orchestration/openais-codex-update-lets-agents-build-interactive-enterprise-workspaces-via-sites-and-role-specific-plugins">June 2 update</a>, OpenAI repositioned Codex from a programming assistant into a general work environment: &quot;Sites&quot; lets agents build and share hosted dashboards/apps via URL, six role-specific plugins bundle 62 business apps (Snowflake, Figma, Salesforce) and 110 skills, and &quot;Annotations&quot; allows targeted edits to docs/sites without regenerating everything. Notably, non-developers are now ~20% of Codex's 5M weekly users and adopting it 3× faster than engineers. For software teams this signals the agent surface expanding well beyond the IDE — and more non-engineers shipping internal tooling you may end up maintaining.</p>
<p>---
<em>Sources: <a href="https://venturebeat.com/orchestration/openais-codex-update-lets-agents-build-interactive-enterprise-workspaces-via-sites-and-role-specific-plugins">VentureBeat</a> · <a href="https://9to5mac.com/2026/06/02/openai-putting-codex-inside-chatgpt-app-everywhere-releasing-6-business-plugins/">9to5Mac</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Frontier cyber models go to EU regulators: GPT-5.5-Cyber lands, Anthropic opens Mythos to ENISA (update)]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-06-08-frontier-cyber-models-go-to-eu-regulators-gpt-55/</link>
    <guid isPermaLink="false">2026-06-06-08-frontier-cyber-models-go-to-eu-regulators-gpt-55</guid>
    <pubDate>Sat, 06 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[Security]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[A development on the Mythos thread first noted on May 31: as of June 5, OpenAI is extending GPT-5.5-Cyber — a permission-tuned variant for vetted defenders doing vuln research, malware analysis, and…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-06-08-frontier-cyber-models-go-to-eu-regulators-gpt-55.jpg" alt="" /></p>
<p>A development on the Mythos thread first noted on May 31: as of <a href="https://www.techtimes.com/articles/317891/20260605/openai-gpt-55-cyber-reaches-eu-anthropic-mythos-opens-enisa-days-later.htm">June 5</a>, OpenAI is extending GPT-5.5-Cyber — a permission-tuned variant for vetted defenders doing vuln research, malware analysis, and reverse engineering — to the EU, while Anthropic agreed to give EU cyber agency ENISA access to Mythos via Project Glasswing (the first EU institution admitted). What's new since last coverage: Mythos has moved from &quot;coming soon&quot; to active regulator access, and individuals using OpenAI's most permissive cyber models must now enable phishing-resistant Advanced Account Security (effective June 1). For engineers, this is the early shape of gated, identity-verified access to dual-use security tooling.</p>
<p>---
<em>Sources: <a href="https://www.techtimes.com/articles/317891/20260605/openai-gpt-55-cyber-reaches-eu-anthropic-mythos-opens-enisa-days-later.htm">TechTimes</a> · <a href="https://www.bloomberg.com/news/articles/2026-06-01/anthropic-to-give-eu-s-cybersecurity-agency-access-to-mythos">Bloomberg</a> · <a href="https://openai.com/index/gpt-5-5-with-trusted-access-for-cyber/">OpenAI</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-06-08-frontier-cyber-models-go-to-eu-regulators-gpt-55.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-06-08-frontier-cyber-models-go-to-eu-regulators-gpt-55.jpg" />
  </item>
  <item>
    <title><![CDATA[MiniMax M3: an open-weight model claiming frontier coding at 1M context]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-06-09-minimax-m3-an-open-weight-model-claiming-frontie/</link>
    <guid isPermaLink="false">2026-06-06-09-minimax-m3-an-open-weight-model-claiming-frontie</guid>
    <pubDate>Sat, 06 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Released June 1, MiniMax M3 is pitched as the first open-weight model to combine frontier coding, a 1M-token context window, and native multimodality in one architecture, with a self-reported 59.0%…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-06-09-minimax-m3-an-open-weight-model-claiming-frontie.jpg" alt="" /></p>
<p>Released <a href="https://www.minimax.io/blog/minimax-m3">June 1</a>, MiniMax M3 is pitched as the first open-weight model to combine frontier coding, a 1M-token context window, and native multimodality in one architecture, with a self-reported 59.0% on SWE-Bench Pro (above GPT-5.5 and Gemini 3.1 Pro, approaching Claude Opus 4.7) at $0.30/M input tokens, weights promised on Hugging Face within ~10 days. Treat the benchmarks with caution — <a href="https://www.techtimes.com/articles/317532/20260601/minimax-m3-open-weight-coding-model-frontier-claims-unverified-benchmarks.htm">TechTimes flagged them as unverified</a> — but if they hold, it's a serious self-hostable option for repo-scale, long-context agentic coding without per-token frontier pricing.</p>
<p>---
<em>Sources: <a href="https://www.minimax.io/blog/minimax-m3">MiniMax</a> · <a href="https://the-decoder.com/minimax-m3-open-weight-model-with-a-million-token-context-challenges-proprietary-leaders/">The Decoder</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-06-09-minimax-m3-an-open-weight-model-claiming-frontie.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-06-09-minimax-m3-an-open-weight-model-claiming-frontie.jpg" />
  </item>
  <item>
    <title><![CDATA[Force a planning phase before any code is generated]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-05-01-force-a-planning-phase-before-any-code-is-genera/</link>
    <guid isPermaLink="false">2026-06-05-01-force-a-planning-phase-before-any-code-is-genera</guid>
    <pubDate>Fri, 05 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[The single highest-leverage technique reported this week: make the agent produce a plan and approve it before it touches files. Without that separation, models jump straight to a solution and miss…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-01-force-a-planning-phase-before-any-code-is-genera.jpg" alt="" /></p>
<p>The single highest-leverage technique reported this week: make the agent produce a plan and approve it before it touches files. Without that separation, models jump straight to a solution and miss architecture/context. Developers report success on complex tasks jumping from roughly 1/3 to 2/3.</p>
<p>---
<em>Sources: <a href="https://theexcitedengineer.substack.com/p/your-best-ai-coding-guide-with-claude">The Excited Engineer</a> · <a href="https://www.haihai.ai/cursor-vs-claude-code/">haihai.ai</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-01-force-a-planning-phase-before-any-code-is-genera.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-01-force-a-planning-phase-before-any-code-is-genera.jpg" />
  </item>
  <item>
    <title><![CDATA[Tighten context, drop the politeness]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-05-02-tighten-context-drop-the-politeness/</link>
    <guid isPermaLink="false">2026-06-05-02-tighten-context-drop-the-politeness</guid>
    <pubDate>Fri, 05 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Give the agent one well-scoped task and only the files relevant to it; broad context turns a specialist into a generalist. In Cursor, use "Reference Open Editors" to control context and avoid…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-02-tighten-context-drop-the-politeness.jpg" alt="" /></p>
<p>Give the agent one well-scoped task and only the files relevant to it; broad context turns a specialist into a generalist. In Cursor, use &quot;Reference Open Editors&quot; to control context and avoid pollution from logs. Notably, dropping filler words like &quot;please&quot;/&quot;help&quot; in coding prompts avoids triggering &quot;helpful assistant mode&quot; where the model favors a quick answer over precise instruction-following.</p>
<p>---
<em>Sources: <a href="https://theexcitedengineer.substack.com/p/your-best-ai-coding-guide-with-claude">The Excited Engineer</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-02-tighten-context-drop-the-politeness.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-02-tighten-context-drop-the-politeness.jpg" />
  </item>
  <item>
    <title><![CDATA[Claude Code dynamic workflows + skills changes worth adopting]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-05-03-claude-code-dynamic-workflows-skills-changes-wor/</link>
    <guid isPermaLink="false">2026-06-05-03-claude-code-dynamic-workflows-skills-changes-wor</guid>
    <pubDate>Fri, 05 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Dynamic workflows (research preview, Enterprise/Team/Max) let Claude plan a large task, run hundreds of parallel subagents in one session, verify outputs, and report back — good for codebase-wide…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Dynamic workflows (research preview, Enterprise/Team/Max) let Claude plan a large task, run hundreds of parallel subagents in one session, verify outputs, and report back — good for codebase-wide audits and large migrations. Fast mode now runs Opus 4.8 at lower cost. Also new: plugins in <code>.claude/skills</code> load automatically (no marketplace), <code>/reload-skills</code> re-scans without a restart, and skills can set <code>disallowed-tools</code> in frontmatter.</p>
<p>---
<em>Sources: <a href="https://releasebot.io/updates/anthropic/claude-code">Releasebot — Claude Code updates</a> · <a href="https://www.marktechpost.com/2026/05/28/anthropic-ships-claude-opus-4-8-alongside-dynamic-workflows-and-cheaper-fast-mode-with-workflows-capped-at-1000-subagents/">MarkTechPost</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Treat your rules file as core infra]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-05-04-treat-your-rules-file-as-core-infra/</link>
    <guid isPermaLink="false">2026-06-05-04-treat-your-rules-file-as-core-infra</guid>
    <pubDate>Fri, 05 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[A well-maintained .cursorrules / CLAUDE.md is described as one of the highest-leverage investments in an AI workflow: it encodes architecture, conventions, and constraints so a generic assistant…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-04-treat-your-rules-file-as-core-infra.jpg" alt="" /></p>
<p>A well-maintained <code>.cursorrules</code> / <code>CLAUDE.md</code> is described as one of the highest-leverage investments in an AI workflow: it encodes architecture, conventions, and constraints so a generic assistant produces code that fits your codebase. Pair it with a short &quot;how we use AI here&quot; doc with examples of AI-assisted PRs that passed review to reduce team variance.</p>
<p>---
<em>Sources: <a href="https://devtk.ai/en/blog/complete-guide-cursorrules/">DevTk.AI — Guide to AI Coding Rules</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-04-treat-your-rules-file-as-core-infra.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-04-treat-your-rules-file-as-core-infra.jpg" />
  </item>
  <item>
    <title><![CDATA[Local-model memory: retrieval beats bigger context]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-05-05-local-model-memory-retrieval-beats-bigger-contex/</link>
    <guid isPermaLink="false">2026-06-05-05-local-model-memory-retrieval-beats-bigger-contex</guid>
    <pubDate>Fri, 05 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[A widely-shared r/LocalLLaMA finding pushes back on "just add more context/VRAM": bigger windows can make recall worse due to the Lost-in-the-Middle effect. The fix is structured external memory with…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>A widely-shared r/LocalLLaMA finding pushes back on &quot;just add more context/VRAM&quot;: bigger windows can make recall <em>worse</em> due to the Lost-in-the-Middle effect. The fix is structured external memory with selective retrieval, not compute scaling.</p>
<p>---
<em>Sources: <a href="https://aiweekly.co/alerts/localllama-dev-solves-memory-with-external-retrieval">AI Weekly summary</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Where you put context matters more than what's in it]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-05-06-where-you-put-context-matters-more-than-whats-in/</link>
    <guid isPermaLink="false">2026-06-05-06-where-you-put-context-matters-more-than-whats-in</guid>
    <pubDate>Fri, 05 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[A three-year, 50-model research review confirms position in the prompt changes the answer more than content does (the Lost-in-the-Middle geometry). Practical takeaway: put the most critical…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-06-where-you-put-context-matters-more-than-whats-in.jpg" alt="" /></p>
<p>A three-year, 50-model research review confirms position in the prompt changes the answer more than content does (the Lost-in-the-Middle geometry). Practical takeaway: put the most critical instructions/evidence at the very start or end of the prompt, not buried in the middle.</p>
<p>---
<em>Sources: <a href="https://llm-stats.com/blog/research/the-position-of-your-context-matters-for-llms">LLM-Stats — The Position of Your Context Matters</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-06-where-you-put-context-matters-more-than-whats-in.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-06-where-you-put-context-matters-more-than-whats-in.jpg" />
  </item>
  <item>
    <title><![CDATA[Context engineering" is now the discipline; RAG didn't die, it grew up]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-05-07-context-engineering-is-now-the-discipline-rag-di/</link>
    <guid isPermaLink="false">2026-06-05-07-context-engineering-is-now-the-discipline-rag-di</guid>
    <pubDate>Fri, 05 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[RAG is being reframed as a "context engine" with intelligent retrieval at its core. For enterprise Q&A, combining vector retrieval with GraphRAG is reported to cover ~90% of needs, and adaptive…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-07-context-engineering-is-now-the-discipline-rag-di.jpg" alt="" /></p>
<p>RAG is being reframed as a &quot;context engine&quot; with intelligent retrieval at its core. For enterprise Q&amp;A, combining vector retrieval with GraphRAG is reported to cover ~90% of needs, and adaptive patterns add cost discipline by varying retrieval depth with query complexity.</p>
<p>---
<em>Sources: <a href="https://www.meta-intelligence.tech/en/insight-context-engineering">Meta-Intelligence — Context Engineering Guide</a> · <a href="https://smartscope.blog/en/blog/context-engineering-overview/">SmartScope — RAG vs MCP vs Skills</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-07-context-engineering-is-now-the-discipline-rag-di.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-07-context-engineering-is-now-the-discipline-rag-di.jpg" />
  </item>
  <item>
    <title><![CDATA[Keep prompts short; reasoning degrades fast]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-05-08-keep-prompts-short-reasoning-degrades-fast/</link>
    <guid isPermaLink="false">2026-06-05-08-keep-prompts-short-reasoning-degrades-fast</guid>
    <pubDate>Fri, 05 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[2026 best-practice writeups note LLM reasoning quality starts dropping around ~3,000 tokens, with a practical sweet spot of 150–300 words for most tasks. The field is splitting cleanly into casual…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-08-keep-prompts-short-reasoning-degrades-fast.jpg" alt="" /></p>
<p>2026 best-practice writeups note LLM reasoning quality starts dropping around ~3,000 tokens, with a practical sweet spot of 150–300 words for most tasks. The field is splitting cleanly into casual prompting vs. production context engineering — treat them as different skills.</p>
<p>---
<em>Sources: <a href="https://thomas-wiegold.com/blog/prompt-engineering-best-practices-2026/">Thomas Wiegold — Prompt Engineering Best Practices 2026</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-08-keep-prompts-short-reasoning-degrades-fast.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-08-keep-prompts-short-reasoning-degrades-fast.jpg" />
  </item>
  <item>
    <title><![CDATA[Make evaluation a repeatable loop, not a vibe check]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-05-09-make-evaluation-a-repeatable-loop-not-a-vibe-che/</link>
    <guid isPermaLink="false">2026-06-05-09-make-evaluation-a-repeatable-loop-not-a-vibe-che</guid>
    <pubDate>Fri, 05 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[An evaluation-driven workflow — Define, Test, Diagnose, Fix — turns stochastic LLM output into an engineering loop, anchored by a "Minimum Viable Evaluation Suite" tiered for plain apps, RAG, and…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>An evaluation-driven workflow — Define, Test, Diagnose, Fix — turns stochastic LLM output into an engineering loop, anchored by a &quot;Minimum Viable Evaluation Suite&quot; tiered for plain apps, RAG, and agentic tool use. Counterintuitive finding: &quot;better&quot; prompts can hurt without an eval set to catch regressions.</p>
<p>---
<em>Sources: <a href="https://arxiv.org/pdf/2601.22025">arXiv: When &quot;Better&quot; Prompts Hurt</a> · <a href="https://arxiv.org/pdf/2506.05614">Empirical study of prompting techniques for SE tasks</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[NVIDIA launches Cosmos 3 — first fully open "omnimodel" for physical AI]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-05-10-nvidia-launches-cosmos-3-first-fully-open-omnimo/</link>
    <guid isPermaLink="false">2026-06-05-10-nvidia-launches-cosmos-3-first-fully-open-omnimo</guid>
    <pubDate>Fri, 05 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[(June 1, GTC Taipei) — A mixture-of-transformers model combining vision reasoning, world generation, and action prediction; open weights on Hugging Face with Super/Nano/Edge variants. Why it matters…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-10-nvidia-launches-cosmos-3-first-fully-open-omnimo.jpg" alt="" /></p>
<p>(June 1, GTC Taipei) — A mixture-of-transformers model combining vision reasoning, world generation, and action prediction; open weights on Hugging Face with Super/Nano/Edge variants. Why it matters for engineers: it's a genuinely open frontier model you can run and fine-tune, aimed at synthetic-data generation and robotics/AV policy work — cutting training/eval cycles from months to days.</p>
<p>---
<em>Sources: <a href="https://nvidianews.nvidia.com/news/nvidia-launches-cosmos-3-the-open-frontier-foundation-model-for-physical-ai">NVIDIA Newsroom</a> · <a href="https://huggingface.co/blog/nvidia/cosmos-3-for-physical-ai">Hugging Face</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-10-nvidia-launches-cosmos-3-first-fully-open-omnimo.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-10-nvidia-launches-cosmos-3-first-fully-open-omnimo.jpg" />
  </item>
  <item>
    <title><![CDATA[Microsoft Build 2026: MAI models + Copilot becomes multi-model]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-05-11-microsoft-build-2026-mai-models-copilot-becomes-/</link>
    <guid isPermaLink="false">2026-06-05-11-microsoft-build-2026-mai-models-copilot-becomes-</guid>
    <pubDate>Fri, 05 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[(June 2–3) — Microsoft shipped its own MAI family, including MAI-Code-1-Flash (code generation) and MAI-Thinking-1 (reasoning, low token cost), and rebuilt Copilot to route work across OpenAI,…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-11-microsoft-build-2026-mai-models-copilot-becomes-.jpg" alt="" /></p>
<p>(June 2–3) — Microsoft shipped its own MAI family, including MAI-Code-1-Flash (code generation) and MAI-Thinking-1 (reasoning, low token cost), and rebuilt Copilot to route work across OpenAI, Anthropic, and open-source models. The Windows Agent Framework hit production. Why it matters: cheaper first-party coding/reasoning models and explicit model-routing reduce lock-in and give devs more deployment options.</p>
<p>---
<em>Sources: <a href="https://www.cnbc.com/2026/06/02/microsoft-unveils-new-ai-models-lessen-reliance-on-openai-lower-costs.html">CNBC</a> · <a href="https://www.tomsguide.com/news/live/microsoft-build-2026">Tom's Guide live blog</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-11-microsoft-build-2026-mai-models-copilot-becomes-.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-11-microsoft-build-2026-mai-models-copilot-becomes-.jpg" />
  </item>
  <item>
    <title><![CDATA[Open letter on synthetic-DNA tracking for AI bioweapon risk]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-05-12-open-letter-on-synthetic-dna-tracking-for-ai-bio/</link>
    <guid isPermaLink="false">2026-06-05-12-open-letter-on-synthetic-dna-tracking-for-ai-bio</guid>
    <pubDate>Fri, 05 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <description><![CDATA[(June 3) — Sam Altman, Dario Amodei, and other lab leaders signed a letter urging better tracking of synthetic DNA potentially designed by AI. Why it matters: a likely precursor to…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-12-open-letter-on-synthetic-dna-tracking-for-ai-bio.jpg" alt="" /></p>
<p>(June 3) — Sam Altman, Dario Amodei, and other lab leaders signed a letter urging better tracking of synthetic DNA potentially designed by AI. Why it matters: a likely precursor to compliance/screening requirements that could land on teams building in bio/health-adjacent AI.</p>
<p>---
<em>Sources: <a href="https://www.wired.com/">Wired (via Techmeme)</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-12-open-letter-on-synthetic-dna-tracking-for-ai-bio.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-12-open-letter-on-synthetic-dna-tracking-for-ai-bio.jpg" />
  </item>
  <item>
    <title><![CDATA[Anthropic Claude Opus 4.8 — strongest coding scores yet]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-05-13-anthropic-claude-opus-48-strongest-coding-scores/</link>
    <guid isPermaLink="false">2026-06-05-13-anthropic-claude-opus-48-strongest-coding-scores</guid>
    <pubDate>Fri, 05 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[(released May 28, rolling out this week) — 88.6% on SWE-bench Verified and 74.6% on Terminal-Bench 2.1, with parallel-subagent workflows and a 2.5x fast mode, all at the same $5/$25 per-1M pricing.…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-13-anthropic-claude-opus-48-strongest-coding-scores.jpg" alt="" /></p>
<p>(released May 28, rolling out this week) — 88.6% on SWE-bench Verified and 74.6% on Terminal-Bench 2.1, with parallel-subagent workflows and a 2.5x fast mode, all at the same $5/$25 per-1M pricing. Why it matters: top-tier agentic coding performance with no price increase — relevant if you're picking a default model for autonomous coding tasks.</p>
<p>---
<em>Sources: <a href="https://llm-stats.com/blog/research/claude-opus-4-8-launch">LLM-Stats deep dive</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-13-anthropic-claude-opus-48-strongest-coding-scores.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-05-13-anthropic-claude-opus-48-strongest-coding-scores.jpg" />
  </item>
  <item>
    <title><![CDATA[Specs Before Code: The "Waterfall in 15 Minutes" Workflow]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-04-01-specs-before-code-the-waterfall-in-15-minutes-wo/</link>
    <guid isPermaLink="false">2026-06-04-01-specs-before-code-the-waterfall-in-15-minutes-wo</guid>
    <pubDate>Thu, 04 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Google engineer Addy Osmani's widely-shared LLM coding workflow guide emphasizes writing a spec.md collaboratively with the AI before writing any code, then generating a step-by-step plan from that…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-01-specs-before-code-the-waterfall-in-15-minutes-wo.jpg" alt="" /></p>
<p>Google engineer Addy Osmani's widely-shared LLM coding workflow guide emphasizes writing a <code>spec.md</code> collaboratively with the AI <em>before</em> writing any code, then generating a step-by-step plan from that spec. The key insight: planning first forces you and the AI onto the same page, prevents wasted cycles, and dramatically improves output quality. Other key tips include breaking work into small iterative chunks, committing frequently as &quot;save points,&quot; maintaining <code>CLAUDE.md</code> rules files to steer the AI toward your team's style, and running AI-on-AI code reviews (e.g., write with Claude, review with Gemini).</p>
<p>---
<em>Sources: <a href="https://addyosmani.com/blog/ai-coding-workflow/">Addy Osmani's Blog</a> · <a href="https://addyo.substack.com/p/my-llm-coding-workflow-going-into">Substack</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-01-specs-before-code-the-waterfall-in-15-minutes-wo.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-01-specs-before-code-the-waterfall-in-15-minutes-wo.jpg" />
  </item>
  <item>
    <title><![CDATA[Dual-Tool Strategy: Use Claude Code and Cursor for Different Jobs]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-04-02-dual-tool-strategy-use-claude-code-and-cursor-fo/</link>
    <guid isPermaLink="false">2026-06-04-02-dual-tool-strategy-use-claude-code-and-cursor-fo</guid>
    <pubDate>Thu, 04 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Updated June 3, the most comprehensive 2026 coding agent comparison confirms that high-velocity teams use Cursor for inline editing and daily feature work, and Claude Code for autonomous multi-file…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-02-dual-tool-strategy-use-claude-code-and-cursor-fo.jpg" alt="" /></p>
<p>Updated June 3, the most comprehensive 2026 coding agent comparison confirms that high-velocity teams use Cursor for inline editing and daily feature work, and Claude Code for autonomous multi-file tasks and architectural changes. Claude Code's new Dynamic Workflows feature (in research preview) splits large jobs across parallel subagents — useful for codebase-wide refactors. The guide was just updated to reflect Claude Opus 4.8 (May 28), Copilot's usage-based billing (June 1), and Windsurf's rebrand to Devin Desktop (June 2).</p>
<p>---
<em>Sources: <a href="https://www.cosmicjs.com/blog/claude-code-vs-github-copilot-vs-cursor-which-ai-coding-agent-should-you-use-2026">Cosmic.js Comparison Guide</a> · <a href="https://codersera.com/blog/ai-coding-agents-complete-guide-2026/">Codersera Full Guide</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-02-dual-tool-strategy-use-claude-code-and-cursor-fo.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-02-dual-tool-strategy-use-claude-code-and-cursor-fo.jpg" />
  </item>
  <item>
    <title><![CDATA[Windsurf is Now Devin Desktop: IDE as Agent Manager]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-04-03-windsurf-is-now-devin-desktop-ide-as-agent-manag/</link>
    <guid isPermaLink="false">2026-06-04-03-windsurf-is-now-devin-desktop-ide-as-agent-manag</guid>
    <pubDate>Thu, 04 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[On June 2, Cognition retired the Windsurf brand and relaunched as Devin Desktop, with a Rust-rewritten engine (Devin Local, 30% more token-efficient), Agent Client Protocol (ACP) support, and a new…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-03-windsurf-is-now-devin-desktop-ide-as-agent-manag.jpg" alt="" /></p>
<p>On June 2, Cognition retired the Windsurf brand and relaunched as Devin Desktop, with a Rust-rewritten engine (Devin Local, 30% more token-efficient), Agent Client Protocol (ACP) support, and a new default screen that's a Kanban board of your running agents rather than a code editor. The paradigm shift: you're now a &quot;goal-setter and reviewer&quot; rather than a line-level coder. If you're on Windsurf, the update arrives as an OTA update with no pricing changes. Cascade is deprecated July 1.</p>
<p>---
<em>Sources: <a href="https://devin.ai/blog/windsurf-is-now-devin-desktop">Devin AI Blog</a> · <a href="https://chatforest.com/builders-log/windsurf-devin-desktop-rebrand-devin-local-acp-builder-guide/">ChatForest Builder Guide</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-03-windsurf-is-now-devin-desktop-ide-as-agent-manag.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-03-windsurf-is-now-devin-desktop-ide-as-agent-manag.jpg" />
  </item>
  <item>
    <title><![CDATA[GitHub Copilot Overhauls Billing: Flex Allotments + New $100 Max Plan]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-04-04-github-copilot-overhauls-billing-flex-allotments/</link>
    <guid isPermaLink="false">2026-06-04-04-github-copilot-overhauls-billing-flex-allotments</guid>
    <pubDate>Thu, 04 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[Effective June 1, Copilot rolled out usage-based "flex billing" across all plans. Pro gets 1,000 base + 500 flex credits/month; Pro+ gets 3,900 base + 3,100 flex; the new Max plan targets high-volume…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-04-github-copilot-overhauls-billing-flex-allotments.jpg" alt="" /></p>
<p>Effective June 1, Copilot rolled out usage-based &quot;flex billing&quot; across all plans. Pro gets 1,000 base + 500 flex credits/month; Pro+ gets 3,900 base + 3,100 flex; the new Max plan targets high-volume users at 10,000 base + 10,000 flex. Critically, code completions and next-edit suggestions remain unlimited for paid users and don't consume credits. If you routinely hit limits, it's worth checking whether your actual usage warrants an upgrade.</p>
<p>---
<em>Sources: <a href="https://github.blog/news-insights/company-news/github-copilot-individual-plans-introducing-flex-allotments-in-pro-and-pro-and-a-new-max-plan/">GitHub Blog</a> · <a href="https://github.blog/changelog/2026-06-01-updates-to-github-copilot-billing-and-plans/">GitHub Changelog</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-04-github-copilot-overhauls-billing-flex-allotments.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-04-github-copilot-overhauls-billing-flex-allotments.jpg" />
  </item>
  <item>
    <title><![CDATA[AI Productivity Reality Check: 84% Use AI Tools, Only 10% Productivity Gains]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-04-05-ai-productivity-reality-check-84-use-ai-tools-on/</link>
    <guid isPermaLink="false">2026-06-04-05-ai-productivity-reality-check-84-use-ai-tools-on</guid>
    <pubDate>Thu, 04 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[A sobering data point making the rounds: despite 84% of developers using AI tools daily, measured productivity gains average only 10%. A METR controlled study found experienced developers actually…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-05-ai-productivity-reality-check-84-use-ai-tools-on.jpg" alt="" /></p>
<p>A sobering data point making the rounds: despite 84% of developers using AI tools daily, measured productivity gains average only 10%. A METR controlled study found experienced developers actually took 19% <em>longer</em> on tasks when using AI. Root causes: over-reliance without review, poor context management, and deployment problems from untested AI-generated code. The implication for your workflow: the gains are real for teams with strong testing, review practices, and context hygiene — but not automatic.</p>
<p>---
<em>Sources: <a href="https://www.secondtalent.com/resources/ai-developer-productivity-tools-2026/">Second Talent Report</a> · <a href="https://techcrunch.com/2026/05/29/coders-are-refusing-to-work-without-ai-and-that-could-come-back-to-bite-them/">TechCrunch</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-05-ai-productivity-reality-check-84-use-ai-tools-on.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-05-ai-productivity-reality-check-84-use-ai-tools-on.jpg" />
  </item>
  <item>
    <title><![CDATA[Context Engineering is the New Prompt Engineering]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-04-06-context-engineering-is-the-new-prompt-engineerin/</link>
    <guid isPermaLink="false">2026-06-04-06-context-engineering-is-the-new-prompt-engineerin</guid>
    <pubDate>Thu, 04 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[The 2026 consensus has shifted: the primary skill for working with LLMs is no longer crafting prompts but managing what information is available to the model. Anthropic published a detailed…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-06-context-engineering-is-the-new-prompt-engineerin.jpg" alt="" /></p>
<p>The 2026 consensus has shifted: the primary skill for working with LLMs is no longer crafting prompts but managing <em>what information</em> is available to the model. Anthropic published a detailed engineering guide on effective context engineering for agents, framing it as four strategies: <strong>write</strong> (persist context externally), <strong>select</strong> (retrieve via RAG), <strong>compress</strong> (summarize and compact), and <strong>isolate</strong> (separate contexts per agent). The key finding: most agent failures in 2026 aren't model failures — they're context failures. Dynamically selecting relevant tools alone improved Llama 3.1 8B function-calling performance by 44% in one benchmark.</p>
<p>---
<em>Sources: <a href="https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents">Anthropic Engineering Blog</a> · <a href="https://www.langchain.com/blog/context-engineering-for-agents">LangChain Blog</a> · <a href="https://blog.bytebytego.com/p/a-guide-to-context-engineering-for">ByteByteGo Guide</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-06-context-engineering-is-the-new-prompt-engineerin.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-06-context-engineering-is-the-new-prompt-engineerin.jpg" />
  </item>
  <item>
    <title><![CDATA[Multi-Agent Systems Outperform Single Agents — When Contexts Are Isolated]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-04-07-multi-agent-systems-outperform-single-agents-whe/</link>
    <guid isPermaLink="false">2026-06-04-07-multi-agent-systems-outperform-single-agents-whe</guid>
    <pubDate>Thu, 04 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Anthropic researchers showed that multi-agent setups beat single-agent setups specifically when each subagent operates within its own narrow, isolated context and returns results to a main…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-07-multi-agent-systems-outperform-single-agents-whe.jpg" alt="" /></p>
<p>Anthropic researchers showed that multi-agent setups beat single-agent setups specifically when each subagent operates within its own narrow, isolated context and returns results to a main orchestrator. Shared massive context windows across agents cause cross-contamination and degraded performance. A January 2026 arXiv survey organizes prior work into a unified taxonomy of agent components and orchestration patterns, with practical trade-off analysis (latency vs. accuracy, autonomy vs. controllability).</p>
<p>---
<em>Sources: <a href="https://arxiv.org/abs/2601.01743">arXiv:2601.01743</a> · <a href="https://arxiv.org/html/2601.13671v1">arXiv: Orchestration of Multi-Agent Systems</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-07-multi-agent-systems-outperform-single-agents-whe.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-07-multi-agent-systems-outperform-single-agents-whe.jpg" />
  </item>
  <item>
    <title><![CDATA[Nine Best Practices for Production-Grade Agentic Workflows]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-04-08-nine-best-practices-for-production-grade-agentic/</link>
    <guid isPermaLink="false">2026-06-04-08-nine-best-practices-for-production-grade-agentic</guid>
    <pubDate>Thu, 04 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[Microservices]]></category>
    <description><![CDATA[A practical arXiv guide (December 2025, widely circulated now) lays out nine engineering principles for shipping agentic AI in production: tool-first design over MCP, pure-function invocation,…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>A practical arXiv guide (December 2025, widely circulated now) lays out nine engineering principles for shipping agentic AI in production: tool-first design over MCP, pure-function invocation, single-tool and single-responsibility agents, externalized prompt management, and containerized deployment. The core theme: treat agents like microservices — each one should be focused, testable, and independently deployable.</p>
<p>---
<em>Sources: <a href="https://arxiv.org/pdf/2512.08769">arXiv PDF</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[The LLM Context Problem in 2026: Treat Context as a First-Class Engineering Discipline]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-04-09-the-llm-context-problem-in-2026-treat-context-as/</link>
    <guid isPermaLink="false">2026-06-04-09-the-llm-context-problem-in-2026-treat-context-as</guid>
    <pubDate>Thu, 04 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[LogRocket's analysis of context management challenges in 2026 makes a key argument: successful production teams treat context engineering as deliberate work — filtering, ranking, pruning,…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-09-the-llm-context-problem-in-2026-treat-context-as.jpg" alt="" /></p>
<p>LogRocket's analysis of context management challenges in 2026 makes a key argument: successful production teams treat context engineering as deliberate work — filtering, ranking, pruning, summarizing, and isolating information — not an afterthought. &quot;Too many teams treat context windows like junk drawers.&quot; With frontier models now having 256K+ context windows, the real constraint is relevance and signal-to-noise, not raw capacity.</p>
<p>---
<em>Sources: <a href="https://blog.logrocket.com/llm-context-problem-strategies-2026/">LogRocket Blog</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-09-the-llm-context-problem-in-2026-treat-context-as.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-09-the-llm-context-problem-in-2026-treat-context-as.jpg" />
  </item>
  <item>
    <title><![CDATA[Microsoft Launches MAI-Code-1-Flash and MAI-Thinking-1 at Build 2026]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-04-10-microsoft-launches-mai-code-1-flash-and-mai-thin/</link>
    <guid isPermaLink="false">2026-06-04-10-microsoft-launches-mai-code-1-flash-and-mai-thin</guid>
    <pubDate>Thu, 04 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[At Build this week (June 2-3), Microsoft unveiled its first proprietary AI models built entirely in-house without OpenAI data. MAI-Code-1-Flash is a 5B-parameter coding model that outperforms Claude…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-10-microsoft-launches-mai-code-1-flash-and-mai-thin.jpg" alt="" /></p>
<p>At Build this week (June 2-3), Microsoft unveiled its first proprietary AI models built entirely in-house without OpenAI data. <strong>MAI-Code-1-Flash</strong> is a 5B-parameter coding model that outperforms Claude Haiku 4.5 across all core coding benchmarks (+16 points on SWE-Bench Pro: 51.2% vs 35.2%) and solves harder problems with 60% fewer tokens — it's rolling out to GitHub Copilot users in VS Code now. <strong>MAI-Thinking-1</strong> is a 35B active-parameter MoE reasoning model with a 256K context window that scores 97% on AIME 2025 and 53% on SWE-Bench Pro (matching Claude Opus 4.6) — in private preview via Microsoft Foundry. For engineers: these are direct Copilot integrations, which means competitive pressure on Anthropic and OpenAI pricing is only going up.</p>
<p>---
<em>Sources: <a href="https://microsoft.ai/news/introducingmai-code-1-flash/">Microsoft AI</a> · <a href="https://www.neowin.net/news/microsoft-unveils-mai-thinking-1-reasoning-and-mai-code-1-coding-models/">Neowin</a> · <a href="https://www.cnbc.com/2026/06/02/microsoft-unveils-new-ai-models-lessen-reliance-on-openai-lower-costs.html">CNBC</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-10-microsoft-launches-mai-code-1-flash-and-mai-thin.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-10-microsoft-launches-mai-code-1-flash-and-mai-thin.jpg" />
  </item>
  <item>
    <title><![CDATA[Anthropic Files for IPO at $965B Valuation After $65B Series H]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-04-11-anthropic-files-for-ipo-at-965b-valuation-after-/</link>
    <guid isPermaLink="false">2026-06-04-11-anthropic-files-for-ipo-at-965b-valuation-after-</guid>
    <pubDate>Thu, 04 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Anthropic confidentially filed IPO paperwork this week, targeting an October 2026 listing, after closing a $65B Series H at a $965B post-money valuation — surpassing OpenAI's valuation for the first…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-11-anthropic-files-for-ipo-at-965b-valuation-after-.jpg" alt="" /></p>
<p>Anthropic confidentially filed IPO paperwork this week, targeting an October 2026 listing, after closing a $65B Series H at a $965B post-money valuation — surpassing OpenAI's valuation for the first time. The company reported a Q2 revenue run rate of $47B, more than doubling quarter over quarter, driven largely by Claude Code adoption. For engineers: Anthropic's growth means continued heavy investment in coding tools, and an IPO creates pressure to maintain that trajectory. Claude Code is now the market-leading AI coding tool by usage among surveyed developers.</p>
<p>---
<em>Sources: <a href="https://fortune.com/2026/06/01/anthropic-confidentially-files-ipo-965-billion-valuation/">Fortune</a> · <a href="https://www.anthropic.com/news/series-h">Anthropic Series H Announcement</a> · <a href="https://www.cnbc.com/2026/05/28/anthropic-open-ai-startup-value.html">CNBC</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-11-anthropic-files-for-ipo-at-965b-valuation-after-.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-11-anthropic-files-for-ipo-at-965b-valuation-after-.jpg" />
  </item>
  <item>
    <title><![CDATA[Claude Opus 4.8 Released with Dynamic Workflows and Fast Mode]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-04-12-claude-opus-48-released-with-dynamic-workflows-a/</link>
    <guid isPermaLink="false">2026-06-04-12-claude-opus-48-released-with-dynamic-workflows-a</guid>
    <pubDate>Thu, 04 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Released May 28 (the most recent Anthropic model), Opus 4.8 adds three developer-relevant features: (1) Dynamic Workflows — a research preview in Claude Code that splits large-scale jobs across…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-12-claude-opus-48-released-with-dynamic-workflows-a.jpg" alt="" /></p>
<p>Released May 28 (the most recent Anthropic model), Opus 4.8 adds three developer-relevant features: (1) <strong>Dynamic Workflows</strong> — a research preview in Claude Code that splits large-scale jobs across parallel subagents, enabling codebase-wide tasks that were previously impractical; (2) <strong>Fast mode</strong> — 2.5x higher output tokens/second, now 3x cheaper than previous fast-mode pricing; (3) <strong>Live messages API</strong> — accepts changes to the messages array mid-task without breaking prompt cache or requiring a new user turn. It also scores 84% on Online-Mind2Web, making it the strongest computer-use agent tested. Available now at <code>claude-opus-4-8</code> on the API.</p>
<p>---
<em>Sources: <a href="https://www.anthropic.com/news/claude-opus-4-8">Anthropic News</a> · <a href="https://techcrunch.com/2026/05/28/anthropic-releases-opus-4-8-with-new-dynamic-workflow-tool/">TechCrunch</a> · <a href="https://github.blog/changelog/2026-05-28-claude-opus-4-8-is-generally-available-for-github-copilot/">GitHub Copilot Changelog</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-12-claude-opus-48-released-with-dynamic-workflows-a.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-04-12-claude-opus-48-released-with-dynamic-workflows-a.jpg" />
  </item>
  <item>
    <title><![CDATA[GitHub Copilot Multi-Agent Ships in VS Code (Microsoft Build 2026)]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-03-01-github-copilot-multi-agent-ships-in-vs-code-micr/</link>
    <guid isPermaLink="false">2026-06-03-01-github-copilot-multi-agent-ships-in-vs-code-micr</guid>
    <pubDate>Wed, 03 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[Security]]></category>
    <description><![CDATA[At Build 2026, Microsoft launched multi-agent support for VS Code, letting an orchestrator agent spawn parallel subagents for simultaneous workstreams — linting, test generation, documentation, and…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-01-github-copilot-multi-agent-ships-in-vs-code-micr.jpg" alt="" /></p>
<p>At Build 2026, Microsoft launched multi-agent support for VS Code, letting an orchestrator agent spawn parallel subagents for simultaneous workstreams — linting, test generation, documentation, and security review can all run concurrently instead of sequentially. Available now in preview for Copilot subscribers; the GitHub Copilot native desktop app also dropped in preview.</p>
<p>---
<em>Sources: <a href="https://www.techtimes.com/articles/317596/20260602/github-copilot-replaces-gpt-4-project-polaris-ships-multi-agent-vs-code-build.htm">TechTimes</a> · <a href="https://www.tomsguide.com/news/live/microsoft-build-2026">Tom's Guide Build 2026 Recap</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-01-github-copilot-multi-agent-ships-in-vs-code-micr.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-01-github-copilot-multi-agent-ships-in-vs-code-micr.jpg" />
  </item>
  <item>
    <title><![CDATA[Cursor Model Routing Strategy: Match the Model to the Task]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-03-02-cursor-model-routing-strategy-match-the-model-to/</link>
    <guid isPermaLink="false">2026-06-03-02-cursor-model-routing-strategy-match-the-model-to</guid>
    <pubDate>Wed, 03 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[The community consensus in 2026 is to stop sending everything to the same model. Route Gemini 2.0 Flash for fast prototyping/throwaway code, Claude 3.5 Sonnet for standard feature development, and…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-02-cursor-model-routing-strategy-match-the-model-to.jpg" alt="" /></p>
<p>The community consensus in 2026 is to stop sending everything to the same model. Route Gemini 2.0 Flash for fast prototyping/throwaway code, Claude 3.5 Sonnet for standard feature development, and reserve heavy reasoning models (Opus, GPT-5) for genuinely hard problems. Pairing this with precise context targeting — <code>@filename</code> once you know the file, <code>@codebase</code> only for discovery — consistently improves suggestion quality and cuts costs.</p>
<p>---
<em>Sources: <a href="https://www.vibecodingacademy.ai/blog/cursor-ai-best-practices-guide-2026">Cursor AI Best Practices – Vibe Coding Academy</a> · <a href="https://railsdrop.com/2026/01/03/engineers-guide-to-cursor-ai-mastering-the-ai-first-ide-in-2026/">Engineer's Guide to Cursor AI – Rails Drop</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-02-cursor-model-routing-strategy-match-the-model-to.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-02-cursor-model-routing-strategy-match-the-model-to.jpg" />
  </item>
  <item>
    <title><![CDATA[Cursor Composer 2.5 & Cursor as an Autonomous Engineer]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-03-03-cursor-composer-25-cursor-as-an-autonomous-engin/</link>
    <guid isPermaLink="false">2026-06-03-03-cursor-composer-25-cursor-as-an-autonomous-engin</guid>
    <pubDate>Wed, 03 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Cursor shipped Composer 2.5 in May 2026, an in-house long-horizon model that benchmarks alongside Opus 4.7 and GPT-5.5 on agentic tasks. The latest versions can sustain multi-step tasks for hours…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-03-cursor-composer-25-cursor-as-an-autonomous-engin.jpg" alt="" /></p>
<p>Cursor shipped Composer 2.5 in May 2026, an in-house long-horizon model that benchmarks alongside Opus 4.7 and GPT-5.5 on agentic tasks. The latest versions can sustain multi-step tasks for hours without intervention. Code review (understanding <em>why</em> the AI made a change) is now considered higher-leverage than writing the change itself.</p>
<p>---
<em>Sources: <a href="https://dev.to/storm_son_b44db572b250b68/ai-coding-tools-2026-cursor-vs-github-copilot-vs-claude-code-real-comparison-1kj4">DEV Community Comparison</a> · <a href="https://www.pyyne.com/post/building-software-with-ai-in-2026-diving-into-cursor">Pyyne – Building Software with AI in 2026</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-03-cursor-composer-25-cursor-as-an-autonomous-engin.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-03-cursor-composer-25-cursor-as-an-autonomous-engin.jpg" />
  </item>
  <item>
    <title><![CDATA[Windows Aion 1.0: On-Device AI Inference Is Now a First-Class Build Target]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-03-04-windows-aion-10-on-device-ai-inference-is-now-a-/</link>
    <guid isPermaLink="false">2026-06-03-04-windows-aion-10-on-device-ai-inference-is-now-a-</guid>
    <pubDate>Wed, 03 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[Cloud]]></category>
    <description><![CDATA[Microsoft shipped Aion 1.0 Plan (14B parameter, 32K context, tool-calling) and Aion 1.0 Instruct (fast summarization/rewriting SLM) in-box with Windows on capable devices. Developers can now build…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-04-windows-aion-10-on-device-ai-inference-is-now-a-.jpg" alt="" /></p>
<p>Microsoft shipped Aion 1.0 Plan (14B parameter, 32K context, tool-calling) and Aion 1.0 Instruct (fast summarization/rewriting SLM) in-box with Windows on capable devices. Developers can now build fully local agentic apps — file management, sub-agent orchestration, intent detection — without any cloud round-trip. Aion Instruct is available today in Edge Insider; open weights come to Hugging Face in July.</p>
<p>---
<em>Sources: <a href="https://chatforest.com/builders-log/microsoft-build-2026-windows-ai-models-aion-local-inference-builder-guide/">ChatForest Builder Guide</a> · <a href="https://thewincentral.com/microsoft-aion-1-ai-models-expanded-windows-ai-apis-build-2026/">WinCentral</a> · <a href="https://www.theneuron.ai/explainer-articles/everything-microsoft-announced-at-microsoft-build-2026-explained/">Microsoft Build 2026 Everything Announced – The Neuron</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-04-windows-aion-10-on-device-ai-inference-is-now-a-.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-04-windows-aion-10-on-device-ai-inference-is-now-a-.jpg" />
  </item>
  <item>
    <title><![CDATA[Ollama Still the Community Standard for Local LLM Dev]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-03-05-ollama-still-the-community-standard-for-local-ll/</link>
    <guid isPermaLink="false">2026-06-03-05-ollama-still-the-community-standard-for-local-ll</guid>
    <pubDate>Wed, 03 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[r/LocalLLaMA benchmarks in 2026 consistently place Ollama as the fastest path to a local OpenAI-compatible API (localhost:11434). The top mistake: running CPU-only without realizing you'll get 2–5…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-05-ollama-still-the-community-standard-for-local-ll.jpg" alt="" /></p>
<p>r/LocalLLaMA benchmarks in 2026 consistently place Ollama as the fastest path to a local OpenAI-compatible API (<code>localhost:11434</code>). The top mistake: running CPU-only without realizing you'll get 2–5 tok/s instead of 50+ on GPU. For local model selection, Qwen and Phi-4 series continue to punch above their weight for constrained hardware.</p>
<p>---
<em>Sources: <a href="https://www.aitooldiscovery.com/guides/local-llm-reddit">AI Tool Discovery – LocalLLM Reddit</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-05-ollama-still-the-community-standard-for-local-ll.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-05-ollama-still-the-community-standard-for-local-ll.jpg" />
  </item>
  <item>
    <title><![CDATA[Context Engineering Is Replacing Prompt Engineering as the Core Discipline]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-03-06-context-engineering-is-replacing-prompt-engineer/</link>
    <guid isPermaLink="false">2026-06-03-06-context-engineering-is-replacing-prompt-engineer</guid>
    <pubDate>Wed, 03 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[The emerging 2026 consensus: if the model understands your intent but lacks the right information, that's a context problem, not a prompt problem. A well-crafted prompt in a poorly engineered context…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-06-context-engineering-is-replacing-prompt-engineer.jpg" alt="" /></p>
<p>The emerging 2026 consensus: if the model understands your intent but lacks the right information, that's a <em>context</em> problem, not a prompt problem. A well-crafted prompt in a poorly engineered context still fails; a mediocre prompt in a well-engineered context often succeeds. The practical shift: treat the LLM as a CPU, the context window as RAM, and your job as the OS — loading exactly the right data for each task. LangChain's four formalized strategies: <em>write</em> (persist externally), <em>select</em> (RAG), <em>compress</em> (summarize), and <em>isolate</em> (separate agent contexts).</p>
<p>---
<em>Sources: <a href="https://neo4j.com/blog/agentic-ai/context-engineering-vs-prompt-engineering/">Neo4j Blog</a> · <a href="https://www.firecrawl.dev/blog/context-engineering">Firecrawl Blog</a> · <a href="https://www.deepset.ai/blog/context-engineering-the-next-frontier-beyond-prompt-engineering">deepset Blog</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-06-context-engineering-is-replacing-prompt-engineer.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-06-context-engineering-is-replacing-prompt-engineer.jpg" />
  </item>
  <item>
    <title><![CDATA[Lost in the Middle" Still Kills RAG Quality — Placement Matters]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-03-07-lost-in-the-middle-still-kills-rag-quality-place/</link>
    <guid isPermaLink="false">2026-06-03-07-lost-in-the-middle-still-kills-rag-quality-place</guid>
    <pubDate>Wed, 03 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Stanford research has been widely validated in production: LLM performance degrades significantly when key information is buried in the middle of long contexts. For RAG pipelines, put the most…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-07-lost-in-the-middle-still-kills-rag-quality-place.jpg" alt="" /></p>
<p>Stanford research has been widely validated in production: LLM performance degrades significantly when key information is buried in the middle of long contexts. For RAG pipelines, put the most important retrieved chunks at the <em>start</em> or <em>end</em> of the input, not sandwiched in the middle. Retrieval quality ultimately determines answer quality — wrong chunks in means confidently wrong answers out, regardless of model size.</p>
<p>---
<em>Sources: <a href="https://www.stackai.com/blog/prompt-engineering-for-rag-pipelines-the-complete-guide-to-prompt-engineering-for-retrieval-augmented-generation">Stack AI – Prompt Engineering for RAG</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-07-lost-in-the-middle-still-kills-rag-quality-place.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-07-lost-in-the-middle-still-kills-rag-quality-place.jpg" />
  </item>
  <item>
    <title><![CDATA[AI Agent Prompt Patterns That Hold Up in Production]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-03-08-ai-agent-prompt-patterns-that-hold-up-in-product/</link>
    <guid isPermaLink="false">2026-06-03-08-ai-agent-prompt-patterns-that-hold-up-in-product</guid>
    <pubDate>Wed, 03 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Three patterns that apply across all models and frameworks: (1) Role + Constraints — give the agent a specific persona and hard behavioral limits upfront; (2) Guard Rails — define what the agent must…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Three patterns that apply across all models and frameworks: (1) <strong>Role + Constraints</strong> — give the agent a specific persona and hard behavioral limits upfront; (2) <strong>Guard Rails</strong> — define what the agent must <em>not</em> do, not just what it should do; (3) <strong>Error Recovery</strong> — explicitly specify what the agent should do when a tool call fails or returns unexpected output. These belong in the system prompt, versioned in git like any other code.</p>
<p>---
<em>Sources: <a href="https://paxrel.com/blog-ai-agent-prompts">Paxrel – AI Agent Prompt Engineering</a> · <a href="https://vdf.ai/blog/agentic-design-patterns-practical-guide/">VDF AI – Agentic Design Patterns</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Version Control Your Prompts — Prompt Drift Is Real]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-03-09-version-control-your-prompts-prompt-drift-is-rea/</link>
    <guid isPermaLink="false">2026-06-03-09-version-control-your-prompts-prompt-drift-is-rea</guid>
    <pubDate>Wed, 03 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[If a prompt runs more than once, it belongs in version control. Build a golden test set (representative inputs + expected outputs) and run it on every prompt change, treating it as regression testing…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-09-version-control-your-prompts-prompt-drift-is-rea.jpg" alt="" /></p>
<p>If a prompt runs more than once, it belongs in version control. Build a golden test set (representative inputs + expected outputs) and run it on every prompt change, treating it as regression testing for instructions. This discipline is now standard in production AI systems but still overlooked by most teams building internal tools.</p>
<p>---
<em>Sources: <a href="https://fungies.io/ai-prompt-engineering-best-practices-2026/">Fungies.io – Prompt Engineering Best Practices 2026</a> · <a href="https://thomas-wiegold.com/blog/prompt-engineering-best-practices-2026/">Thomas Wiegold Blog</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-09-version-control-your-prompts-prompt-drift-is-rea.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-09-version-control-your-prompts-prompt-drift-is-rea.jpg" />
  </item>
  <item>
    <title><![CDATA[Multi-Agent LLM Research: 2026 Paper Roundup (arXiv)]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-03-10-multi-agent-llm-research-2026-paper-roundup-arxi/</link>
    <guid isPermaLink="false">2026-06-03-10-multi-agent-llm-research-2026-paper-roundup-arxi</guid>
    <pubDate>Wed, 03 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[Security]]></category>
    <description><![CDATA[Active research areas this month include multi-agent coordination with conformal prediction (CommCP), autonomous agentic pipelines for scientific computing (AutoNumerics), and multi-agent negotiation…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-10-multi-agent-llm-research-2026-paper-roundup-arxi.jpg" alt="" /></p>
<p>Active research areas this month include multi-agent coordination with conformal prediction (CommCP), autonomous agentic pipelines for scientific computing (AutoNumerics), and multi-agent negotiation systems (AgenticPay). A curated 2026 arXiv reading list covering agent memory, RAG, evaluation/observability, and security is maintained on GitHub.</p>
<p>---
<em>Sources: <a href="https://github.com/VoltAgent/awesome-ai-agent-papers">VoltAgent – Awesome AI Agent Papers</a> · <a href="https://arxiv.org/list/cs.AI/current">arXiv cs.AI June 2026</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-10-multi-agent-llm-research-2026-paper-roundup-arxi.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-10-multi-agent-llm-research-2026-paper-roundup-arxi.jpg" />
  </item>
  <item>
    <title><![CDATA[Anthropic Surpasses OpenAI in Valuation at $965B]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-03-11-anthropic-surpasses-openai-in-valuation-at-965b/</link>
    <guid isPermaLink="false">2026-06-03-11-anthropic-surpasses-openai-in-valuation-at-965b</guid>
    <pubDate>Wed, 03 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Anthropic raised $65B in a Series H round led by Altimeter, Sequoia, Dragoneer, and Greenoaks, reaching a $965B post-money valuation vs. OpenAI's $730B. Annualized revenue crossed $47B. For…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-11-anthropic-surpasses-openai-in-valuation-at-965b.jpg" alt="" /></p>
<p>Anthropic raised $65B in a Series H round led by Altimeter, Sequoia, Dragoneer, and Greenoaks, reaching a $965B post-money valuation vs. OpenAI's $730B. Annualized revenue crossed $47B. For engineers: this signals continued heavy investment in Claude model improvements, safety research, and enterprise infrastructure — Anthropic is now the better-capitalized lab, which has real implications for model quality and API reliability going forward.</p>
<p>---
<em>Sources: <a href="https://www.cnbc.com/2026/05/28/anthropic-open-ai-startup-value.html">CNBC</a> · <a href="https://www.axios.com/2026/05/28/anthropic-ai-fundraising-openai">Axios</a> · <a href="https://news.ycombinator.com/item?id=48336233">Hacker News thread</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-11-anthropic-surpasses-openai-in-valuation-at-965b.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-11-anthropic-surpasses-openai-in-valuation-at-965b.jpg" />
  </item>
  <item>
    <title><![CDATA[Microsoft Build 2026: GitHub Copilot Drops GPT-4 for In-House Project Polaris]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-03-12-microsoft-build-2026-github-copilot-drops-gpt-4-/</link>
    <guid isPermaLink="false">2026-06-03-12-microsoft-build-2026-github-copilot-drops-gpt-4-</guid>
    <pubDate>Wed, 03 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Starting August 2026, GitHub Copilot's default engine switches from GPT-4 Turbo to Project Polaris, Microsoft's own in-house coding model. This ends Copilot's dependence on OpenAI and gives Microsoft…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-12-microsoft-build-2026-github-copilot-drops-gpt-4-.jpg" alt="" /></p>
<p>Starting August 2026, GitHub Copilot's default engine switches from GPT-4 Turbo to Project Polaris, Microsoft's own in-house coding model. This ends Copilot's dependence on OpenAI and gives Microsoft full control over the model roadmap. Separately, the Agent Framework for .NET and Python hit production-ready 1.0 and is now Microsoft's official standard for multi-agent systems on Azure.</p>
<p>---
<em>Sources: <a href="https://www.techtimes.com/articles/317596/20260602/github-copilot-replaces-gpt-4-project-polaris-ships-multi-agent-vs-code-build.htm">TechTimes</a> · <a href="https://www.engadget.com/2185601/microsoft-build-2026-live-blog-copilot-windows-news/">Engadget Build 2026 Live Blog</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-12-microsoft-build-2026-github-copilot-drops-gpt-4-.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-12-microsoft-build-2026-github-copilot-drops-gpt-4-.jpg" />
  </item>
  <item>
    <title><![CDATA[Google Releases Gemini 3.5 Flash as GA — Benchmarks Beat Gemini 3.1 Pro on Coding]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-03-13-google-releases-gemini-35-flash-as-ga-benchmarks/</link>
    <guid isPermaLink="false">2026-06-03-13-google-releases-gemini-35-flash-as-ga-benchmarks</guid>
    <pubDate>Wed, 03 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <description><![CDATA[Gemini 3.5 Flash is now generally available at $1.50/$9 per 1M tokens (input/output), 1M token context, and 76.2% on Terminal-Bench 2.1 — outperforming Gemini 3.1 Pro on both coding and agentic…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-13-google-releases-gemini-35-flash-as-ga-benchmarks.jpg" alt="" /></p>
<p>Gemini 3.5 Flash is now generally available at $1.50/$9 per 1M tokens (input/output), 1M token context, and 76.2% on Terminal-Bench 2.1 — outperforming Gemini 3.1 Pro on both coding and agentic benchmarks at 4x the speed. Google also launched WebMCP, a proposed open standard allowing developers to expose structured tools for browser-based AI agents, with a Chrome 149 origin trial starting now.</p>
<p>---
<em>Sources: <a href="https://developers.googleblog.com/all-the-news-from-the-google-io-2026-developer-keynote/">Google I/O 2026 Developer Keynote</a> · <a href="https://9to5google.com/2026/05/19/google-io-2026-news/">9to5Google I/O 2026 Recap</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-13-google-releases-gemini-35-flash-as-ga-benchmarks.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-13-google-releases-gemini-35-flash-as-ga-benchmarks.jpg" />
  </item>
  <item>
    <title><![CDATA[Microsoft Is Pulling Claude Code Licenses — AI Tools Consolidation Is Here]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-03-14-microsoft-is-pulling-claude-code-licenses-ai-too/</link>
    <guid isPermaLink="false">2026-06-03-14-microsoft-is-pulling-claude-code-licenses-ai-too</guid>
    <pubDate>Wed, 03 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Microsoft is canceling Claude Code licenses across its Experiences + Devices division by June 30, steering engineers toward GitHub Copilot CLI. Separately, Uber exhausted its entire 2026 AI coding…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Microsoft is canceling Claude Code licenses across its Experiences + Devices division by June 30, steering engineers toward GitHub Copilot CLI. Separately, Uber exhausted its entire 2026 AI coding tools budget in four months. This is the first major signal of enterprise AI tool consolidation: companies are picking a primary agentic coding tool rather than stacking multiple subscriptions. Engineers should expect their orgs to standardize on one platform in H2 2026.</p>
<p>---
<em>Sources: <a href="https://www.developer-tech.com/news/microsoft-claude-code-github-copilot-cli/">Developer Tech</a> · <a href="https://windowsforum.com/threads/microsoft-cuts-claude-code-pushes-copilot-cli-ai-coding-market-shifts-to-workflow-control.421281/">Windows Forum</a> · <a href="https://spacedaily.com/n-microsoft-is-canceling-claude-code-licenses-across-its-experiences-devices-division-by-june-30-steering-thousands-of-engineers-toward-github-copilot-while-uber-burned-through-its-entire-2026-ai-bu/">Space Daily</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[AI Coding Tool Market Share Update: Copilot 51%, Cursor 18%, Claude Code 10%]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-03-15-ai-coding-tool-market-share-update-copilot-51-cu/</link>
    <guid isPermaLink="false">2026-06-03-15-ai-coding-tool-market-share-update-copilot-51-cu</guid>
    <pubDate>Wed, 03 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[The 2026 Stack Overflow Developer Survey shows GitHub Copilot's professional developer share dropped from 67% to 51%, while Cursor debuted at 18% and Claude Code first appeared at 10%. The market is…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-15-ai-coding-tool-market-share-update-copilot-51-cu.jpg" alt="" /></p>
<p>The 2026 Stack Overflow Developer Survey shows GitHub Copilot's professional developer share dropped from 67% to 51%, while Cursor debuted at 18% and Claude Code first appeared at 10%. The market is fragmenting: Copilot holds enterprise, Cursor leads IDE-native adoption, Claude Code becomes the standard for advanced agentic workflows. For individual engineers, the choice increasingly depends on workflow type, not just model quality.</p>
<p>---
<em>Sources: <a href="https://lushbinary.com/blog/ai-coding-agents-comparison-cursor-windsurf-claude-copilot-kiro-2026/">Lushbinary – AI Coding Agents Comparison 2026</a> · <a href="https://pasqualepillitteri.it/en/news/3392/github-copilot-cursor-claude-code-ai-coding-showdown-2026">Pasquale Pillitteri</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-15-ai-coding-tool-market-share-update-copilot-51-cu.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-03-15-ai-coding-tool-market-share-update-copilot-51-cu.jpg" />
  </item>
  <item>
    <title><![CDATA[Escape Claude & Cursor Limits: Free Local AI Coding with Ollama + Continue.dev]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-02-01-escape-claude-cursor-limits-free-local-ai-coding/</link>
    <guid isPermaLink="false">2026-06-02-01-escape-claude-cursor-limits-free-local-ai-coding</guid>
    <pubDate>Tue, 02 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[A developer guide for setting up a fully offline, free AI coding environment in VS Code. Install Ollama, pull qwen2.5-coder:7b (daily driver) and qwen2.5-coder:1.5b (autocomplete), then configure…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-01-escape-claude-cursor-limits-free-local-ai-coding.jpg" alt="" /></p>
<p>A developer guide for setting up a fully offline, free AI coding environment in VS Code. Install Ollama, pull <code>qwen2.5-coder:7b</code> (daily driver) and <code>qwen2.5-coder:1.5b</code> (autocomplete), then configure Continue.dev to point at <code>localhost:11434</code>. Works on M1 MacBook with 8GB RAM; covers 60–70% of typical coding tasks without subscription costs or usage caps.</p>
<p>---
<em>Sources: <a href="https://dev.to/david_bilsonn/how-i-escaped-claude-cursor-limits-the-ultimate-free-local-ai-coding-setup-with-ollama--2nib">DEV Community</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-01-escape-claude-cursor-limits-free-local-ai-coding.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-01-escape-claude-cursor-limits-free-local-ai-coding.jpg" />
  </item>
  <item>
    <title><![CDATA[Addy Osmani's LLM Coding Workflow for 2026]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-02-02-addy-osmanis-llm-coding-workflow-for-2026/</link>
    <guid isPermaLink="false">2026-06-02-02-addy-osmanis-llm-coding-workflow-for-2026</guid>
    <pubDate>Tue, 02 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Detailed, opinionated workflow from a Google engineer: draft a spec.md before any code, break implementation into file-level tasks, context-pack the model with relevant files (tools like gitingest…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-02-addy-osmanis-llm-coding-workflow-for-2026.jpg" alt="" /></p>
<p>Detailed, opinionated workflow from a Google engineer: draft a <code>spec.md</code> <em>before</em> any code, break implementation into file-level tasks, context-pack the model with relevant files (tools like <code>gitingest</code> help), commit after each chunk as a checkpoint, and maintain a <code>CLAUDE.md</code> rules file to steer model behavior to your team's coding style. The core principle: AI is your pair programmer, not your replacement — you stay the director.</p>
<p>---
<em>Sources: <a href="https://addyosmani.com/blog/ai-coding-workflow/">Addy Osmani's Blog</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-02-addy-osmanis-llm-coding-workflow-for-2026.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-02-addy-osmanis-llm-coding-workflow-for-2026.jpg" />
  </item>
  <item>
    <title><![CDATA[Agentic Coding: Delegate, Review, Own]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-02-03-agentic-coding-delegate-review-own/</link>
    <guid isPermaLink="false">2026-06-02-03-agentic-coding-delegate-review-own</guid>
    <pubDate>Tue, 02 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[Security]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[The emerging consensus workflow for 2026: AI agents handle first-pass execution, scaffolding, implementation, and tests; engineers review for correctness, risk, and alignment; humans own…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-03-agentic-coding-delegate-review-own.jpg" alt="" /></p>
<p>The emerging consensus workflow for 2026: AI agents handle first-pass execution, scaffolding, implementation, and tests; engineers review for correctness, risk, and alignment; humans own architecture, trade-offs, and outcomes. Strict CI gates on PRs (tests, linters, security scans) are essential — they catch issues the agent won't surface on its own. Fast feedback loops (quick compile + test cycles) are what make agents productive vs. unruly.</p>
<p>---
<em>Sources: <a href="https://kilo.ai/articles/beyond-autocomplete">Kilo.ai: Beyond Autocomplete</a> · <a href="https://codescene.com/blog/agentic-ai-coding-best-practice-patterns-for-speed-with-quality">CodeScene: Agentic Best Practices</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-03-agentic-coding-delegate-review-own.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-03-agentic-coding-delegate-review-own.jpg" />
  </item>
  <item>
    <title><![CDATA[Build CLAUDE.md (and GEMINI.md) Rules Files for Your Projects]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-02-04-build-claudemd-and-geminimd-rules-files-for-your/</link>
    <guid isPermaLink="false">2026-06-02-04-build-claudemd-and-geminimd-rules-files-for-your</guid>
    <pubDate>Tue, 02 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[One of the highest-ROI things you can do: create a CLAUDE.md (or equivalent) in your repo root with coding style rules, patterns to avoid, preferred libraries, and lint requirements. When you load…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-04-build-claudemd-and-geminimd-rules-files-for-your.jpg" alt="" /></p>
<p>One of the highest-ROI things you can do: create a <code>CLAUDE.md</code> (or equivalent) in your repo root with coding style rules, patterns to avoid, preferred libraries, and lint requirements. When you load this at the start of each session, the model adheres to your conventions instead of defaulting to generic patterns. Copilot and Cursor both support similar project-level instruction files.</p>
<p>---
<em>Sources: <a href="https://addyosmani.com/blog/ai-coding-workflow/">Addy Osmani's Blog</a> · <a href="https://stackoverflow.blog/2026/03/26/coding-guidelines-for-ai-agents-and-people-too/">Stack Overflow Blog: Coding Guidelines for AI</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-04-build-claudemd-and-geminimd-rules-files-for-your.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-04-build-claudemd-and-geminimd-rules-files-for-your.jpg" />
  </item>
  <item>
    <title><![CDATA[Context Engineering Has Replaced Prompt Engineering]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-02-05-context-engineering-has-replaced-prompt-engineer/</link>
    <guid isPermaLink="false">2026-06-02-05-context-engineering-has-replaced-prompt-engineer</guid>
    <pubDate>Tue, 02 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[The industry has shifted from crafting clever instructions ("prompt engineering") to architecting what information the model operates on ("context engineering"). Think of LLMs as a CPU and the…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>The industry has shifted from crafting clever instructions (&quot;prompt engineering&quot;) to architecting <em>what information the model operates on</em> (&quot;context engineering&quot;). Think of LLMs as a CPU and the context window as RAM — your job is the OS, loading the right code and data for each task. 65% of developers now cite missing or stale context as the leading cause of poor AI code quality, not model capability or prompt phrasing. LangChain's four context strategies (write, select/RAG, compress, isolate) are the practical framework to know.</p>
<p>---
<em>Sources: <a href="https://medium.com/@codewithrashid/context-engineering-has-eaten-prompt-engineerin-eb3a869c0362">Medium: Context Engineering Has Eaten Prompt Engineering</a> · <a href="https://neo4j.com/blog/agentic-ai/context-engineering-vs-prompt-engineering/">Neo4j Blog</a> · <a href="https://www.firecrawl.dev/blog/context-engineering">Firecrawl: Context Engineering</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Agentic AI Design Patterns (2026 Edition)]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-02-06-agentic-ai-design-patterns-2026-edition/</link>
    <guid isPermaLink="false">2026-06-02-06-agentic-ai-design-patterns-2026-edition</guid>
    <pubDate>Tue, 02 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Practical patterns for building reliable AI agents: agent prompts must handle state persistence across many LLM calls, specify tool-selection logic, define error-recovery protocols, and set hard…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-06-agentic-ai-design-patterns-2026-edition.jpg" alt="" /></p>
<p>Practical patterns for building reliable AI agents: agent prompts must handle state persistence across many LLM calls, specify tool-selection logic, define error-recovery protocols, and set hard operational boundaries. The key design insight: build agent-ready interfaces with clear filters, structured results, and parseable output formats. Agents fail most often at the interface boundary, not the reasoning step.</p>
<p>---
<em>Sources: <a href="https://medium.com/@dewasheesh.rana/agentic-ai-design-patterns-2026-ed-e3a5125162c5">Medium: Agentic AI Design Patterns 2026</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-06-agentic-ai-design-patterns-2026-edition.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-06-agentic-ai-design-patterns-2026-edition.jpg" />
  </item>
  <item>
    <title><![CDATA[Keep Agentic AI Simple: A Practical Workflow]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-02-07-keep-agentic-ai-simple-a-practical-workflow/</link>
    <guid isPermaLink="false">2026-06-02-07-keep-agentic-ai-simple-a-practical-workflow</guid>
    <pubDate>Tue, 02 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[A counterweight to the hype: the best agentic workflows default to hybrid (plan in IDE, agents execute in sandbox, CI + PR review before merge). Breaking work into file-level tasks with an…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-07-keep-agentic-ai-simple-a-practical-workflow.jpg" alt="" /></p>
<p>A counterweight to the hype: the best agentic workflows default to hybrid (plan in IDE, agents execute in sandbox, CI + PR review before merge). Breaking work into file-level tasks with an orchestrator, then letting agents self-correct to green tests, outperforms complex multi-agent choreography for most real-world projects. The test for a well-governed workflow: every diff has a human who can explain intent, constraints, and rollback plan.</p>
<p>---
<em>Sources: <a href="https://timdeschryver.dev/blog/keep-agentic-ai-simple-a-practical-workflow-for-software-development">Tim Deschryver: Keep Agentic AI Simple</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-07-keep-agentic-ai-simple-a-practical-workflow.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-07-keep-agentic-ai-simple-a-practical-workflow.jpg" />
  </item>
  <item>
    <title><![CDATA[Anthropic's 2026 Agentic Coding Trends Report]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-02-08-anthropics-2026-agentic-coding-trends-report/</link>
    <guid isPermaLink="false">2026-06-02-08-anthropics-2026-agentic-coding-trends-report</guid>
    <pubDate>Tue, 02 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Anthropic published a comprehensive look at how coding agents are reshaping engineering work. Engineers are spending less time writing foundational code and more time orchestrating agent portfolios.…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Anthropic published a comprehensive look at how coding agents are reshaping engineering work. Engineers are spending less time writing foundational code and more time orchestrating agent portfolios. Value now lies in defining precise objectives and guardrails, designing system architecture, and validating outputs — the classic &quot;senior engineer&quot; skills become <em>more</em> important, not less.</p>
<p>---
<em>Sources: <a href="https://resources.anthropic.com/hubfs/2026%20Agentic%20Coding%20Trends%20Report.pdf">Anthropic Agentic Coding Trends Report (PDF)</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Microsoft Build 2026 Kicks Off Today]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-02-09-microsoft-build-2026-kicks-off-today/</link>
    <guid isPermaLink="false">2026-06-02-09-microsoft-build-2026-kicks-off-today</guid>
    <pubDate>Tue, 02 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Microsoft's developer conference opened this morning in San Francisco with Satya Nadella's keynote. Key announcements for engineers: the MAI model family is launching publicly (MAI-Code-1 targets…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-09-microsoft-build-2026-kicks-off-today.jpg" alt="" /></p>
<p>Microsoft's developer conference opened this morning in San Francisco with Satya Nadella's keynote. Key announcements for engineers: the MAI model family is launching publicly (MAI-Code-1 targets GitHub Copilot and benchmarks at or above Claude 3.7 Sonnet on SWE-bench at lower inference cost), MAI-Thinking-1 is Microsoft's first dedicated reasoning model, and a unified Windows AI SDK bundles ONNX Runtime + DirectML into a single NuGet package. The strategic story: Microsoft is building end-to-end AI infrastructure and actively reducing OpenAI dependency. For devs, watch the GitHub Copilot and Azure AI Foundry session tracks.</p>
<p>---
<em>Sources: <a href="https://news.microsoft.com/build-2026/">Microsoft Build 2026</a> · <a href="https://www.notebookcheck.net/Microsoft-Build-2026-What-to-expect-from-the-June-2-keynote.1311546.0.html">Notebookcheck Preview</a> · <a href="https://windowsforum.com/threads/microsoft-build-2026-homegrown-ai-models-to-power-github-copilot.420887/">Windows Forum: MAI Models</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-09-microsoft-build-2026-kicks-off-today.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-09-microsoft-build-2026-kicks-off-today.jpg" />
  </item>
  <item>
    <title><![CDATA[GitHub Copilot Switched to Token-Based Billing Yesterday]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-02-10-github-copilot-switched-to-token-based-billing-y/</link>
    <guid isPermaLink="false">2026-06-02-10-github-copilot-switched-to-token-based-billing-y</guid>
    <pubDate>Tue, 02 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Effective June 1, GitHub Copilot replaced flat Premium Request Units with token-consumption billing. Base subscription prices are unchanged (Pro: $10/mo, Business: $19/user/mo), but agentic…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-10-github-copilot-switched-to-token-based-billing-y.jpg" alt="" /></p>
<p>Effective June 1, GitHub Copilot replaced flat Premium Request Units with token-consumption billing. Base subscription prices are unchanged (Pro: $10/mo, Business: $19/user/mo), but agentic workflows, reasoning model calls, and large-codebase refactors are now metered. Some developers are reporting 10x–50x cost increases; one team estimated their bill jumping from $29/mo to $750/mo. Inline completions and Next Edit Suggestions remain included. If your team runs heavy agentic sessions, audit your usage now before the first new bill arrives.</p>
<p>---
<em>Sources: <a href="https://techcrunch.com/2026/05/30/what-a-joke-github-copilots-new-token-based-billing-spurs-consternation-among-devs/">TechCrunch</a> · <a href="https://github.blog/news-insights/company-news/github-copilot-is-moving-to-usage-based-billing/">GitHub Blog</a> · <a href="https://www.techtimes.com/articles/317536/20260601/github-copilot-pricing-change-drives-backlash-agentic-bills-jump-10x-50x-power-users.htm">TechTimes: 10x-50x Increases</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-10-github-copilot-switched-to-token-based-billing-y.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-10-github-copilot-switched-to-token-based-billing-y.jpg" />
  </item>
  <item>
    <title><![CDATA[Anthropic Files for IPO at ~$965B Valuation]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-02-11-anthropic-files-for-ipo-at-965b-valuation/</link>
    <guid isPermaLink="false">2026-06-02-11-anthropic-files-for-ipo-at-965b-valuation</guid>
    <pubDate>Tue, 02 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Anthropic confidentially filed a draft S-1 with the SEC on June 1, targeting an IPO expected this fall. The company reported $10.9B in projected Q2 revenue (more than double Q1's $4.8B) and is…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-11-anthropic-files-for-ipo-at-965b-valuation.jpg" alt="" /></p>
<p>Anthropic confidentially filed a draft S-1 with the SEC on June 1, targeting an IPO expected this fall. The company reported $10.9B in projected Q2 revenue (more than double Q1's $4.8B) and is booking $47B in annualized revenue. A market debut above $1 trillion is the base case. For engineers: this signals Anthropic is likely to accelerate enterprise tooling, API investments, and Claude Code capabilities as it prepares for public scrutiny.</p>
<p>---
<em>Sources: <a href="https://techcrunch.com/2026/06/01/anthropic-files-to-go-public/">TechCrunch</a> · <a href="https://www.washingtonpost.com/technology/2026/06/01/anthropic-maker-claude-files-with-sec-go-public-an-ipo/">Washington Post</a> · <a href="https://www.nbcnews.com/business/corporations/anthropic-files-ipo-openai-rcna347897">NBC News</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-11-anthropic-files-for-ipo-at-965b-valuation.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-11-anthropic-files-for-ipo-at-965b-valuation.jpg" />
  </item>
  <item>
    <title><![CDATA[Anthropic Claude Opus 4.8 + Dynamic Workflows (Released May 28)]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-02-12-anthropic-claude-opus-48-dynamic-workflows-relea/</link>
    <guid isPermaLink="false">2026-06-02-12-anthropic-claude-opus-48-dynamic-workflows-relea</guid>
    <pubDate>Tue, 02 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[Security]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Claude Opus 4.8 shipped alongside Dynamic Workflows in Claude Code — a major capability upgrade that spawns up to 1,000 parallel subagents to tackle codebase-wide tasks (migrations, security audits,…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-12-anthropic-claude-opus-48-dynamic-workflows-relea.jpg" alt="" /></p>
<p>Claude Opus 4.8 shipped alongside Dynamic Workflows in Claude Code — a major capability upgrade that spawns up to 1,000 parallel subagents to tackle codebase-wide tasks (migrations, security audits, multi-file rewrites). Real-world example: Jarred Sumner used it to port the Bun runtime's 750,000-line codebase from Zig to Rust in 11 days with a 99.8% test pass rate — a project estimated at 6–12 months for a dedicated team. Available on Max, Team, and Enterprise plans via CLI, desktop, and VS Code extension; also accessible through the Claude API, Bedrock, Vertex AI, and Microsoft Foundry.</p>
<p>---
<em>Sources: <a href="https://www.infoq.com/news/2026/06/dynamic-workflows-claude-code/">InfoQ</a> · <a href="https://www.marktechpost.com/2026/05/28/anthropic-ships-claude-opus-4-8-alongside-dynamic-workflows-and-cheaper-fast-mode-with-workflows-capped-at-1000-subagents/">MarkTechPost</a> · <a href="https://itbrief.news/story/anthropic-launches-dynamic-workflows-in-claude-code">ITBrief</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-12-anthropic-claude-opus-48-dynamic-workflows-relea.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-02-12-anthropic-claude-opus-48-dynamic-workflows-relea.jpg" />
  </item>
  <item>
    <title><![CDATA[Claude Code Dynamic Workflows: Run Hundreds of Parallel Subagents]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-01-01-claude-code-dynamic-workflows-run-hundreds-of-pa/</link>
    <guid isPermaLink="false">2026-06-01-01-claude-code-dynamic-workflows-run-hundreds-of-pa</guid>
    <pubDate>Mon, 01 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Anthropic shipped Dynamic Workflows alongside Claude Opus 4.8, letting you orchestrate up to 1,000 subagents (16 concurrent) from a single JavaScript script that Claude writes for you. The key…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Anthropic shipped Dynamic Workflows alongside Claude Opus 4.8, letting you orchestrate up to 1,000 subagents (16 concurrent) from a single JavaScript script that Claude writes for you. The key architectural insight: the orchestration plan moves into code rather than Claude's context window, so intermediate results live in script variables and Claude only holds the final answer — dramatically reducing context bloat on large codebase migrations. Requires Claude Code v2.1.154+ and is available to Enterprise, Team, and Max users.</p>
<p>---
<em>Sources: <a href="https://www.marktechpost.com/2026/05/28/anthropic-ships-claude-opus-4-8-alongside-dynamic-workflows-and-cheaper-fast-mode-with-workflows-capped-at-1000-subagents/">MarkTechPost</a> · <a href="https://www.mindstudio.ai/blog/claude-opus-4-8-dynamic-workflows-parallel-sub-agents">Dynamic Workflows Guide (MindStudio)</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[The Right CLAUDE.md Structure for Agentic Coding]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-01-02-the-right-claudemd-structure-for-agentic-coding/</link>
    <guid isPermaLink="false">2026-06-01-02-the-right-claudemd-structure-for-agentic-coding</guid>
    <pubDate>Mon, 01 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Your CLAUDE.md file is the single most impactful thing you can configure for Claude Code sessions — it onboards every new session and shapes every agent decision. Best practices: cover…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Your CLAUDE.md file is the single most impactful thing you can configure for Claude Code sessions — it onboards every new session and shapes every agent decision. Best practices: cover build/lint/test commands by stack, spell out import patterns and naming rules, and explicitly list what Claude should <em>not</em> do. Critically, skip project directory trees — they go stale immediately and the agent can explore the filesystem directly. Keep it under ~500 lines or Claude starts treating it as noise.</p>
<p>---
<em>Sources: <a href="https://code.claude.com/docs/en/best-practices">Claude Code Best Practices Docs</a> · <a href="https://www.groff.dev/blog/implementing-claude-md-agent-skills">Implementation Guide (groff.dev)</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[5 Claude Code Workflow Patterns Beyond One-Shot Prompts]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-01-03-5-claude-code-workflow-patterns-beyond-one-shot-/</link>
    <guid isPermaLink="false">2026-06-01-03-5-claude-code-workflow-patterns-beyond-one-shot-</guid>
    <pubDate>Mon, 01 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Plan mode separates exploration from execution: never let Claude jump straight to coding without first understanding the problem scope. Use subagents for naturally independent parallel tasks (three…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-03-5-claude-code-workflow-patterns-beyond-one-shot-.jpg" alt="" /></p>
<p>Plan mode separates exploration from execution: never let Claude jump straight to coding without first understanding the problem scope. Use subagents for naturally independent parallel tasks (three modules needing tests</p>
<p>---
<em>Sources: three subagents). Always ask Claude to show evidence — test output, the command run and its return — rather than asserting success. Watch your context: at 70% Claude loses precision, at 85% hallucinations increase, at 90%+ responses become erratic. → <a href="https://www.mindstudio.ai/blog/claude-code-agentic-workflow-patterns">MindStudio</a> · <a href="https://levelup.gitconnected.com/claude-code-best-practices-12-patterns-agentic-engineers-use-65264e3eb919">Level Up Coding</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-03-5-claude-code-workflow-patterns-beyond-one-shot-.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-03-5-claude-code-workflow-patterns-beyond-one-shot-.jpg" />
  </item>
  <item>
    <title><![CDATA[Multi-Tool AI Coding Stacks Are Now the Norm]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-01-04-multi-tool-ai-coding-stacks-are-now-the-norm/</link>
    <guid isPermaLink="false">2026-06-01-04-multi-tool-ai-coding-stacks-are-now-the-norm</guid>
    <pubDate>Mon, 01 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[70% of developers surveyed by The Pragmatic Engineer use 2–4 AI coding tools simultaneously. The dominant stack: Cursor for daily file-level editing (72% autocomplete acceptance rate with Supermaven)…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-04-multi-tool-ai-coding-stacks-are-now-the-norm.jpg" alt="" /></p>
<p>70% of developers surveyed by The Pragmatic Engineer use 2–4 AI coding tools simultaneously. The dominant stack: Cursor for daily file-level editing (72% autocomplete acceptance rate with Supermaven) plus Claude Code for complex multi-file or whole-repository tasks (80.8% on SWE-bench Verified, 1M token context). GitHub Copilot remains the accessibility play at $10/month for teams who don't want to switch IDEs.</p>
<p>---
<em>Sources: <a href="https://www.sitepoint.com/claude-code-vs-cursor-vs-copilot-the-2026-developer-comparison/">Sitepoint Comparison</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-04-multi-tool-ai-coding-stacks-are-now-the-norm.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-04-multi-tool-ai-coding-stacks-are-now-the-norm.jpg" />
  </item>
  <item>
    <title><![CDATA[WebMCP: Expose Your Website's UI as Structured AI Agent Tools]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-01-05-webmcp-expose-your-websites-ui-as-structured-ai-/</link>
    <guid isPermaLink="false">2026-06-01-05-webmcp-expose-your-websites-ui-as-structured-ai-</guid>
    <pubDate>Mon, 01 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[Google's proposed W3C standard (co-developed with Microsoft) landed in Chrome 149 as a public origin trial. Instead of agents brute-forcing DOM pixel-reading, you annotate HTML forms or define…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Google's proposed W3C standard (co-developed with Microsoft) landed in Chrome 149 as a public origin trial. Instead of agents brute-forcing DOM pixel-reading, you annotate HTML forms or define JavaScript functions to expose clean tool interfaces directly to browser AI agents. Two APIs: declarative (annotate existing HTML) and imperative (define typed tool schemas in JS). If you build web apps that users interact with via AI agents, opt into the origin trial now to shape the standard.</p>
<p>---
<em>Sources: <a href="https://developer.chrome.com/docs/ai/webmcp">Chrome for Developers</a> · <a href="https://dev.to/soumyadeepdey/why-webmcp-is-the-most-important-thing-google-announced-at-io-2026-and-nobodys-talking-about-it-2edf">DEV Community explainer</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Context Engineering Has Superseded Prompt Engineering]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-01-06-context-engineering-has-superseded-prompt-engine/</link>
    <guid isPermaLink="false">2026-06-01-06-context-engineering-has-superseded-prompt-engine</guid>
    <pubDate>Mon, 01 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[The field has reached consensus: if the model understands what you want but lacks information to do it well, that's a context problem, not a prompt problem. Context engineering is the discipline of…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-06-context-engineering-has-superseded-prompt-engine.jpg" alt="" /></p>
<p>The field has reached consensus: if the model understands what you want but lacks information to do it well, that's a context problem, not a prompt problem. Context engineering is the discipline of designing systems that provide the right information, in the right format, at the right time — treating context as infrastructure with proper data curation, privacy controls, and logs. Stanford's &quot;lost in the middle&quot; research remains the key empirical grounding: models perform best when critical information appears at the very beginning or end of long contexts. Practical sweet spot for most tasks: 150–300 words of targeted context.</p>
<p>---
<em>Sources: <a href="https://neo4j.com/blog/agentic-ai/context-engineering-vs-prompt-engineering/">Neo4j Blog</a> · <a href="https://www.firecrawl.dev/blog/context-engineering">Firecrawl Blog</a> · <a href="https://karozieminski.substack.com/p/context-engineering-product-builders-guide-2026">Substack guide</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-06-context-engineering-has-superseded-prompt-engine.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-06-context-engineering-has-superseded-prompt-engine.jpg" />
  </item>
  <item>
    <title><![CDATA[MCP Security: Production-Grade Best Practices]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-01-07-mcp-security-production-grade-best-practices/</link>
    <guid isPermaLink="false">2026-06-01-07-mcp-security-production-grade-best-practices</guid>
    <pubDate>Mon, 01 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Treat all AI-generated content as untrusted input including everything returned from MCP servers: tool definitions, resources, prompts, and responses. Run MCP servers that touch the host environment…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-07-mcp-security-production-grade-best-practices.jpg" alt="" /></p>
<p>Treat all AI-generated content as untrusted input including everything returned from MCP servers: tool definitions, resources, prompts, and responses. Run MCP servers that touch the host environment in containers with additional sandboxing (gVisor, Kata Containers, or SELinux). Never write to stdout in STDIO mode — it corrupts the JSON-RPC stream; log to stderr instead. Use read-only modes for untrusted agents, scoped permissions, and network restrictions. Auth-propagation testing is the top reported integration blocker in enterprise pilots — prioritize it early.</p>
<p>---
<em>Sources: <a href="https://www.coalitionforsecureai.org/securing-the-ai-agent-revolution-a-practical-guide-to-mcp-security/">Coalition for Secure AI</a> · <a href="https://developers.redhat.com/articles/2026/01/08/building-effective-ai-agents-mcp">Red Hat Developer</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-07-mcp-security-production-grade-best-practices.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-07-mcp-security-production-grade-best-practices.jpg" />
  </item>
  <item>
    <title><![CDATA[Fine-Tuning with RAG to Teach LLMs New Skills (ICLR 2026)]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-01-08-fine-tuning-with-rag-to-teach-llms-new-skills-ic/</link>
    <guid isPermaLink="false">2026-06-01-08-fine-tuning-with-rag-to-teach-llms-new-skills-ic</guid>
    <pubDate>Mon, 01 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[A well-received paper at ICLR 2026 proposes converting inference-time retrieval into learned competence via distillation: extract compact hints from agent failures, use them to generate improved…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-08-fine-tuning-with-rag-to-teach-llms-new-skills-ic.jpg" alt="" /></p>
<p>A well-received paper at ICLR 2026 proposes converting inference-time retrieval into learned competence via distillation: extract compact hints from agent failures, use them to generate improved teacher trajectories, then fine-tune. The approach turns what RAG retrieves at runtime into durable model knowledge. Validated on ALFWorld (household tasks) and WebShop (online shopping). Relevant for teams hitting the ceiling of pure RAG and evaluating whether fine-tuning is worth the investment.</p>
<p>---
<em>Sources: <a href="https://arxiv.org/abs/2510.01375">arXiv:2510.01375</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-08-fine-tuning-with-rag-to-teach-llms-new-skills-ic.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-08-fine-tuning-with-rag-to-teach-llms-new-skills-ic.jpg" />
  </item>
  <item>
    <title><![CDATA[Agentic RAG Patterns: From Retrieval to Reasoning]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-01-09-agentic-rag-patterns-from-retrieval-to-reasoning/</link>
    <guid isPermaLink="false">2026-06-01-09-agentic-rag-patterns-from-retrieval-to-reasoning</guid>
    <pubDate>Mon, 01 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[The Agentic RAG survey (arXiv) documents how autonomous agents embedded into RAG pipelines use reflection, planning, tool use, and multi-agent collaboration to go beyond single-pass retrieval. Key…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-09-agentic-rag-patterns-from-retrieval-to-reasoning.jpg" alt="" /></p>
<p>The Agentic RAG survey (arXiv) documents how autonomous agents embedded into RAG pipelines use reflection, planning, tool use, and multi-agent collaboration to go beyond single-pass retrieval. Key patterns: iterative refinement (re-query on low-confidence retrieval), cross-agent verification (one agent retrieves, another critiques), and tool-augmented retrieval. Organizations using MCP for data/tool access paired with A2A protocols for multi-agent collaboration are seeing 40–60% faster workflow development than single-protocol approaches.</p>
<p>---
<em>Sources: <a href="https://arxiv.org/abs/2501.09136">arXiv:2501.09136</a> · <a href="https://onereach.ai/blog/best-practices-for-ai-agent-implementations/">onereach.ai guide</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-09-agentic-rag-patterns-from-retrieval-to-reasoning.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-09-agentic-rag-patterns-from-retrieval-to-reasoning.jpg" />
  </item>
  <item>
    <title><![CDATA[Google Antigravity 2.0: Agent-First Dev Platform Now Generally Available]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-01-10-google-antigravity-20-agent-first-dev-platform-n/</link>
    <guid isPermaLink="false">2026-06-01-10-google-antigravity-20-agent-first-dev-platform-n</guid>
    <pubDate>Mon, 01 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Google's Antigravity 2.0 desktop app (available via I/O 2026) introduces dynamic subagents for parallel workflows, scheduled background tasks, and deep Firebase/Android Studio integration. The…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-10-google-antigravity-20-agent-first-dev-platform-n.jpg" alt="" /></p>
<p>Google's Antigravity 2.0 desktop app (available via I/O 2026) introduces dynamic subagents for parallel workflows, scheduled background tasks, and deep Firebase/Android Studio integration. The Managed Agents API (single API call spins up a reasoning agent with tool access and isolated Linux sandbox) is now GA via the Gemini API. Organizations can also extend agents with custom skills via markdown files — the same pattern Claude Code uses for CLAUDE.md.</p>
<p>---
<em>Sources: <a href="https://blog.google/innovation-and-ai/technology/developers-tools/google-io-2026-developer-highlights/">Google I/O Developer Highlights</a> · <a href="https://www.aimadetools.com/blog/antigravity-2-complete-guide/">Antigravity 2.0 Guide</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-10-google-antigravity-20-agent-first-dev-platform-n.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-10-google-antigravity-20-agent-first-dev-platform-n.jpg" />
  </item>
  <item>
    <title><![CDATA[Anthropic Releases Claude Opus 4.8 with Dynamic Workflows, Raises $65B at $965B Valuation]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-01-11-anthropic-releases-claude-opus-48-with-dynamic-w/</link>
    <guid isPermaLink="false">2026-06-01-11-anthropic-releases-claude-opus-48-with-dynamic-w</guid>
    <pubDate>Mon, 01 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Anthropic shipped Claude Opus 4.8 on May 28 — just 41 days after Opus 4.7 — alongside Dynamic Workflows (parallel subagent orchestration) and a cheaper Fast Mode for lower-latency tasks.…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-11-anthropic-releases-claude-opus-48-with-dynamic-w.jpg" alt="" /></p>
<p>Anthropic shipped Claude Opus 4.8 on May 28 — just 41 days after Opus 4.7 — alongside Dynamic Workflows (parallel subagent orchestration) and a cheaper Fast Mode for lower-latency tasks. Simultaneously, the company announced a $65 billion funding round valuing it at $965 billion, one of the largest private fundraises in history. The cadence of model releases is accelerating significantly.</p>
<p>---
<em>Sources: <a href="https://techcrunch.com/2026/05/28/anthropic-releases-opus-4-8-with-new-dynamic-workflow-tool/">TechCrunch</a> · <a href="https://fortune.com/2026/05/29/anthropic-raises-65-billion-at-record-965-billion-valuation-promises-mythos-ai-model-in-wide-release-in-coming-weeks-releases-claude-opus-4-8/">Fortune</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-11-anthropic-releases-claude-opus-48-with-dynamic-w.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-11-anthropic-releases-claude-opus-48-with-dynamic-w.jpg" />
  </item>
  <item>
    <title><![CDATA[Anthropic's Mythos Model: Near-Superhuman at Security and Math, Coming Soon to Public]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-01-12-anthropics-mythos-model-near-superhuman-at-secur/</link>
    <guid isPermaLink="false">2026-06-01-12-anthropics-mythos-model-near-superhuman-at-secur</guid>
    <pubDate>Mon, 01 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[Security]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Mythos (unveiled April 7, currently restricted to ~50 defensive-security partners via Project Glasswing) scores 97.6% on the 2026 USA Mathematical Olympiad vs 42.3% for Opus 4.6, and successfully…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-12-anthropics-mythos-model-near-superhuman-at-secur.jpg" alt="" /></p>
<p>Mythos (unveiled April 7, currently restricted to ~50 defensive-security partners via Project Glasswing) scores 97.6% on the 2026 USA Mathematical Olympiad vs 42.3% for Opus 4.6, and successfully exploits Firefox 147 vulnerabilities in 181 of several hundred attempts vs 2 for Opus 4.6. The UK AI Security Institute reports 73% success on expert-level hacking tasks that no model could complete before April 2025. Anthropic plans a general release once stronger safeguards are in place — likely paired with an upcoming Opus model. Developers building security tooling should watch this closely.</p>
<p>---
<em>Sources: <a href="https://www.theregister.com/security/2026/05/25/anthropic-to-release-mythos-class-models-to-the-public/5245596">The Register</a> · <a href="https://www.anthropic.com/glasswing">Anthropic Glasswing</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-12-anthropics-mythos-model-near-superhuman-at-secur.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-12-anthropics-mythos-model-near-superhuman-at-secur.jpg" />
  </item>
  <item>
    <title><![CDATA[Google I/O 2026: Gemini 3.5 Flash is Now GA — Faster Than Frontier, Stronger Than Pro]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-01-13-google-io-2026-gemini-35-flash-is-now-ga-faster-/</link>
    <guid isPermaLink="false">2026-06-01-13-google-io-2026-gemini-35-flash-is-now-ga-faster-</guid>
    <pubDate>Mon, 01 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[React]]></category>
    <description><![CDATA[Gemini 3.5 Flash is generally available today via the Gemini API, Google AI Studio, Android Studio, and the Antigravity platform. It outperforms Gemini 3.1 Pro on coding and agentic benchmarks…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-13-google-io-2026-gemini-35-flash-is-now-ga-faster-.jpg" alt="" /></p>
<p>Gemini 3.5 Flash is generally available today via the Gemini API, Google AI Studio, Android Studio, and the Antigravity platform. It outperforms Gemini 3.1 Pro on coding and agentic benchmarks (Terminal-Bench 2.1: 76.2%, MCP Atlas: 83.6%) while running four times faster than other frontier models. Notable for developers: Android Studio can now migrate React Native or web apps to native Kotlin in hours, and the Build with Gemini XPRIZE Hackathon has a $2M prize pool.</p>
<p>---
<em>Sources: <a href="https://blog.google/innovation-and-ai/models-and-research/gemini-models/gemini-3-5/">Google Blog</a> · <a href="https://developers.googleblog.com/all-the-news-from-the-google-io-2026-developer-keynote/">Google Developers Blog</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-13-google-io-2026-gemini-35-flash-is-now-ga-faster-.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-13-google-io-2026-gemini-35-flash-is-now-ga-faster-.jpg" />
  </item>
  <item>
    <title><![CDATA[GitHub Copilot Switches to Token-Based Billing Today — No More Flat Pricing]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-06-01-14-github-copilot-switches-to-token-based-billing-t/</link>
    <guid isPermaLink="false">2026-06-01-14-github-copilot-switches-to-token-based-billing-t</guid>
    <pubDate>Mon, 01 Jun 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Effective June 1, 2026, GitHub Copilot transitions from unlimited flat-rate plans to usage-based billing via "GitHub AI Credits" ($0.01 each). Base plan prices are unchanged but token-heavy workflows…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-14-github-copilot-switches-to-token-based-billing-t.jpg" alt="" /></p>
<p>Effective June 1, 2026, GitHub Copilot transitions from unlimited flat-rate plans to usage-based billing via &quot;GitHub AI Credits&quot; ($0.01 each). Base plan prices are unchanged but token-heavy workflows — chat, agentic coding sessions, code review — are now metered. The previous fallback to a cheaper model when premium requests ran out is gone. Code completions and next-edit suggestions remain unlimited. Developers with heavy agentic Copilot usage should audit their workflows now; the bill shock risk is real for power users.</p>
<p>---
<em>Sources: <a href="https://github.blog/news-insights/company-news/github-copilot-is-moving-to-usage-based-billing/">GitHub Blog</a> · <a href="https://visualstudiomagazine.com/articles/2026/04/27/devs-sound-off-on-usage-based-copilot-pricing-change-you-will-get-less-but-pay-the-same-price.aspx">Visual Studio Magazine</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-14-github-copilot-switches-to-token-based-billing-t.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-06-01-14-github-copilot-switches-to-token-based-billing-t.jpg" />
  </item>
  <item>
    <title><![CDATA[Pair a Terminal Agent with an IDE Assistant]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-31-01-pair-a-terminal-agent-with-an-ide-assistant/</link>
    <guid isPermaLink="false">2026-05-31-01-pair-a-terminal-agent-with-an-ide-assistant</guid>
    <pubDate>Sun, 31 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[The workflow pattern most productive developers use in 2026 is combining two tools: an IDE-integrated assistant (Cursor or GitHub Copilot) for day-to-day coding, and a terminal-based agent (Claude…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>The workflow pattern most productive developers use in 2026 is combining two tools: an IDE-integrated assistant (Cursor or GitHub Copilot) for day-to-day coding, and a terminal-based agent (Claude Code) for large autonomous tasks like full-file refactors or cross-repo work. Claude Code leads SWE-bench Verified at 80.9%, but Copilot's autocomplete and Cursor's Composer-driven multi-file edits remain unmatched in the IDE. Tool fit beats tool ranking.</p>
<p>---
<em>Sources: <a href="https://jobsbyculture.com/blog/ai-code-assistants-compared-2026">AI Code Assistants Compared 2026</a> · <a href="https://www.aitooldiscovery.com/guides/best-ai-for-coding-reddit">Best AI for Coding: Reddit's Top Picks</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Addy Osmani's LLM Coding Workflow for 2026]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-31-02-addy-osmanis-llm-coding-workflow-for-2026/</link>
    <guid isPermaLink="false">2026-05-31-02-addy-osmanis-llm-coding-workflow-for-2026</guid>
    <pubDate>Sun, 31 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Google's engineering lead lays out a disciplined approach: write a spec before touching the AI, break work into small focused prompts (one function, one bug, one feature at a time), and build…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-02-addy-osmanis-llm-coding-workflow-for-2026.jpg" alt="" /></p>
<p>Google's engineering lead lays out a disciplined approach: write a spec before touching the AI, break work into small focused prompts (one function, one bug, one feature at a time), and build stronger quality gates — tests, monitoring, and AI-on-AI code reviews. The key mindset shift: treat the LLM as a pair programmer that needs clear direction, not an autonomous agent. &quot;If you come to the table with solid software engineering fundamentals, the AI will amplify your productivity multifold.&quot;</p>
<p>---
<em>Sources: <a href="https://addyosmani.com/blog/ai-coding-workflow/">AddyOsmani.com</a> · <a href="https://medium.com/@addyosmani/my-llm-coding-workflow-going-into-2026-52fe1681325e">Medium</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-02-addy-osmanis-llm-coding-workflow-for-2026.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-02-addy-osmanis-llm-coding-workflow-for-2026.jpg" />
  </item>
  <item>
    <title><![CDATA[Spec-Driven Development (SDD) Is Replacing Vibe Coding]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-31-03-spec-driven-development-sdd-is-replacing-vibe-co/</link>
    <guid isPermaLink="false">2026-05-31-03-spec-driven-development-sdd-is-replacing-vibe-co</guid>
    <pubDate>Sun, 31 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[AWS]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[SDD has emerged as the structured answer to vibe coding's failure mode (plausible code that drifts from intent as projects scale). The method: write an executable, version-controlled spec first,…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-03-spec-driven-development-sdd-is-replacing-vibe-co.jpg" alt="" /></p>
<p>SDD has emerged as the structured answer to vibe coding's failure mode (plausible code that drifts from intent as projects scale). The method: write an executable, version-controlled spec first, derive an implementation plan, break it into atomic tasks, then generate code. Every major AI coding tool — Claude Code, Cursor, GitHub Spec Kit, AWS Kiro, Google Antigravity — now ships its own SDD flavor. AWS Kiro reports real customer cases where 40-hour features shipped in under 8 human hours when authored spec-first.</p>
<p>---
<em>Sources: <a href="https://towardsdatascience.com/from-vibe-coding-to-spec-driven-development/">Towards Data Science</a> · <a href="https://www.augmentcode.com/guides/what-is-spec-driven-development">Augment Code Guide</a> · <a href="https://medium.com/predict/spec-driven-development-with-ai-coding-agents-the-definitive-guide-453fba1baf39">Medium/Predict</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-03-spec-driven-development-sdd-is-replacing-vibe-co.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-03-spec-driven-development-sdd-is-replacing-vibe-co.jpg" />
  </item>
  <item>
    <title><![CDATA[Prompting Tips That Work Across Claude, GPT-5, and Gemini in 2026]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-31-04-prompting-tips-that-work-across-claude-gpt-5-and/</link>
    <guid isPermaLink="false">2026-05-31-04-prompting-tips-that-work-across-claude-gpt-5-and</guid>
    <pubDate>Sun, 31 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Six months of cross-model testing surfaces a consistent set of techniques that deliver 28–30% fewer errors on structured tasks: chain-of-thought scaffolds, persona + goal + anti-goal triples, XML…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Six months of cross-model testing surfaces a consistent set of techniques that deliver 28–30% fewer errors on structured tasks: chain-of-thought scaffolds, persona + goal + anti-goal triples, XML tags over markdown formatting, contrastive examples, and prompt chaining. GPT-5 is increasingly outcome-oriented (describe the goal, let it plan), while Claude locks in tight on roles and constraints. Self-critique prompts — asking the model to review its own output — consistently surface gaps before they compound.</p>
<p>---
<em>Sources: <a href="https://www.techrepublic.com/article/news-ai-prompting-tips-chatgpt-claude-gemini-2026/">TechRepublic</a> · <a href="https://medium.com/@christianaistudio/6-months-testing-every-ai-prompting-technique-what-actually-works-in-2026-chatgpt-claude-gemini-e791005795e5">Medium</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Context Engineering Is the New Prompt Engineering]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-31-05-context-engineering-is-the-new-prompt-engineerin/</link>
    <guid isPermaLink="false">2026-05-31-05-context-engineering-is-the-new-prompt-engineerin</guid>
    <pubDate>Sun, 31 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[The framing gaining traction in 2026: context engineering is the discipline of curating the optimal set of tokens at inference time, including everything beyond the prompt itself. Anthropic research…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-05-context-engineering-is-the-new-prompt-engineerin.jpg" alt="" /></p>
<p>The framing gaining traction in 2026: context engineering is the discipline of curating the optimal set of tokens at inference time, including everything beyond the prompt itself. Anthropic research shows contexts above 100K tokens degrade reasoning quality; Chroma tested 18 frontier models and found every one nosedived (some from 95% to 60% accuracy) as input grew. Practical guidance: keep context small and high-signal, dynamically load only relevant tools (tool overload above ~30 tools breaks selection accuracy), and document your context strategy like you would system architecture.</p>
<p>---
<em>Sources: <a href="https://www.anthropic.com/engineering/effective-context-engineering-for-ai-agents">Anthropic Engineering Blog</a> · <a href="https://blog.logrocket.com/llm-context-problem-strategies-2026/">LogRocket Blog</a> · <a href="https://weaviate.io/blog/context-engineering">Weaviate</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-05-context-engineering-is-the-new-prompt-engineerin.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-05-context-engineering-is-the-new-prompt-engineerin.jpg" />
  </item>
  <item>
    <title><![CDATA[Agentic RAG: Embedding Agents Inside the Retrieval Pipeline]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-31-06-agentic-rag-embedding-agents-inside-the-retrieva/</link>
    <guid isPermaLink="false">2026-05-31-06-agentic-rag-embedding-agents-inside-the-retrieva</guid>
    <pubDate>Sun, 31 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[A new ArXiv survey (2501.09136) and the Agent-UniRAG framework (2505.22571) document the shift from static RAG to agentic RAG, where autonomous agents dynamically manage retrieval strategies using…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-06-agentic-rag-embedding-agents-inside-the-retrieva.jpg" alt="" /></p>
<p>A new ArXiv survey (2501.09136) and the Agent-UniRAG framework (2505.22571) document the shift from static RAG to agentic RAG, where autonomous agents dynamically manage retrieval strategies using reflection, planning, tool use, and multi-agent collaboration. The key insight from Phil Schmid (Hugging Face): most agent failures aren't model failures — they're context failures. Weak retrieval creates problems; weak prompts make systems unusable. LangChain formalizes four context strategies: write, select, compress, and isolate.</p>
<p>---
<em>Sources: <a href="https://arxiv.org/abs/2501.09136">ArXiv Agentic RAG Survey</a> · <a href="https://arxiv.org/pdf/2505.22571">Agent-UniRAG</a> · <a href="https://docs.langchain.com/oss/python/langchain/context-engineering">LangChain Docs</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-06-agentic-rag-embedding-agents-inside-the-retrieva.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-06-agentic-rag-embedding-agents-inside-the-retrieva.jpg" />
  </item>
  <item>
    <title><![CDATA[Microsoft Open-Sources RAMPART and Clarity for AI Agent Safety]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-31-07-microsoft-open-sources-rampart-and-clarity-for-a/</link>
    <guid isPermaLink="false">2026-05-31-07-microsoft-open-sources-rampart-and-clarity-for-a</guid>
    <pubDate>Sun, 31 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Released May 20, RAMPART (Risk Assessment and Measurement Platform for Agentic Red Teaming) is a Pytest-native framework for writing and running safety tests against AI agents — adversarial and…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-07-microsoft-open-sources-rampart-and-clarity-for-a.jpg" alt="" /></p>
<p>Released May 20, RAMPART (Risk Assessment and Measurement Platform for Agentic Red Teaming) is a Pytest-native framework for writing and running safety tests against AI agents — adversarial and benign — directly in CI pipelines. It's built on top of PyRIT, Microsoft's existing red-teaming automation library. Clarity is a structured design tool that guides teams through problem definition, solution options, and failure analysis before writing any code. The philosophy: &quot;AI safety has to become a continuous engineering discipline rather than a periodic checkpoint.&quot;</p>
<p>---
<em>Sources: <a href="https://www.microsoft.com/en-us/security/blog/2026/05/20/introducing-rampart-and-clarity-open-source-tools-to-bring-safety-into-agent-development-workflow/">Microsoft Security Blog</a> · <a href="https://www.theregister.com/security/2026/05/21/microsoft-open-sources-agentic-ai-safety-tools/5243822">The Register</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-07-microsoft-open-sources-rampart-and-clarity-for-a.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-07-microsoft-open-sources-rampart-and-clarity-for-a.jpg" />
  </item>
  <item>
    <title><![CDATA[Vibe Coding Has a Quality Problem — And the Numbers Are Stark]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-31-08-vibe-coding-has-a-quality-problem-and-the-number/</link>
    <guid isPermaLink="false">2026-05-31-08-vibe-coding-has-a-quality-problem-and-the-number</guid>
    <pubDate>Sun, 31 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[Security]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[A December 2025 analysis of 470 GitHub PRs found AI-generated code was 1.7× more likely to have major issues and 2.74× more prone to security vulnerabilities than human-written code. LLMs generate…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-08-vibe-coding-has-a-quality-problem-and-the-number.jpg" alt="" /></p>
<p>A December 2025 analysis of 470 GitHub PRs found AI-generated code was 1.7× more likely to have major issues and 2.74× more prone to security vulnerabilities than human-written code. LLMs generate vulnerable code at rates between 9.8% and 42.1% across benchmarks. The practitioner consensus: robust CI (automated tests on every commit, code style enforcement, staging deployments) is non-negotiable when AI is contributing significant code volume. Teams that ship well are orchestrators, not prompters.</p>
<p>---
<em>Sources: <a href="https://hexaware.com/blogs/level-up-your-ai-workflow-11-vibe-coding-best-practices-for-real-world-builders/">Hexaware Vibe Coding Best Practices</a> · <a href="https://www.softr.io/blog/vibe-coding-best-practices">Softr Guide</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-08-vibe-coding-has-a-quality-problem-and-the-number.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-08-vibe-coding-has-a-quality-problem-and-the-number.jpg" />
  </item>
  <item>
    <title><![CDATA[Anthropic Launches Self-Hosted Sandboxes and MCP Tunnels for Claude Agents]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-31-09-anthropic-launches-self-hosted-sandboxes-and-mcp/</link>
    <guid isPermaLink="false">2026-05-31-09-anthropic-launches-self-hosted-sandboxes-and-mcp</guid>
    <pubDate>Sun, 31 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[Security]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Announced at Code with Claude London (May 19), Claude Managed Agents now supports two enterprise features. Self-hosted sandboxes (public beta) let teams run tool execution inside their own cloud…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-09-anthropic-launches-self-hosted-sandboxes-and-mcp.jpg" alt="" /></p>
<p>Announced at Code with Claude London (May 19), Claude Managed Agents now supports two enterprise features. Self-hosted sandboxes (public beta) let teams run tool execution inside their own cloud environment (Cloudflare, Daytona, Modal, Vercel, or custom) while Anthropic continues to handle orchestration and context management. MCP tunnels (research preview) route MCP server traffic through a private network via a lightweight outbound-only gateway — no inbound firewall rules, no public endpoints, end-to-end encrypted. Significant for enterprise teams with data residency or security perimeter requirements.</p>
<p>---
<em>Sources: <a href="https://thenewstack.io/anthropic-mcp-tunnels-sandboxes/">The New Stack</a> · <a href="https://the-decoder.com/anthropic-adds-self-hosted-sandboxes-and-mcp-tunnels-to-claude-managed-agents/">The Decoder</a> · <a href="https://www.infoq.com/news/2026/05/claude-mcp-tunnels/">InfoQ</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-09-anthropic-launches-self-hosted-sandboxes-and-mcp.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-09-anthropic-launches-self-hosted-sandboxes-and-mcp.jpg" />
  </item>
  <item>
    <title><![CDATA[DeepSeek Makes 75% V4-Pro Price Cut Permanent]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-31-10-deepseek-makes-75-v4-pro-price-cut-permanent/</link>
    <guid isPermaLink="false">2026-05-31-10-deepseek-makes-75-v4-pro-price-cut-permanent</guid>
    <pubDate>Sun, 31 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[DeepSeek confirmed on May 22 that its promotional V4-Pro discount is now permanent. New pricing: $0.435/M cache-miss input tokens and $0.87/M output tokens — roughly 11.5× cheaper than GPT-5.5 on…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-10-deepseek-makes-75-v4-pro-price-cut-permanent.jpg" alt="" /></p>
<p>DeepSeek confirmed on May 22 that its promotional V4-Pro discount is now permanent. New pricing: $0.435/M cache-miss input tokens and $0.87/M output tokens — roughly 11.5× cheaper than GPT-5.5 on input and 34.5× cheaper on output. This targets the frontier capability tier directly (V4-Pro scores 80.6% on SWE-bench), not the budget segment, making it a serious cost alternative for high-volume production workloads. The promotional deadline had been May 31.</p>
<p>---
<em>Sources: <a href="https://www.engadget.com/2180062/deepseek-permanently-reduces-the-price-of-its-flagship-v4-model-by-75-percent/">Engadget</a> · <a href="https://codersera.com/blog/deepseek-v4-pro-permanent-price-cut-may-2026/">Codersera</a> · <a href="https://apidog.com/blog/deepseek-v4-pro-permanent-price-cut/">APIdog</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-10-deepseek-makes-75-v4-pro-price-cut-permanent.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-10-deepseek-makes-75-v4-pro-price-cut-permanent.jpg" />
  </item>
  <item>
    <title><![CDATA[Google I/O 2026: Gemini 3.5 Flash GA, Gemini Spark Personal Agent, $2M Hackathon]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-31-11-google-io-2026-gemini-35-flash-ga-gemini-spark-p/</link>
    <guid isPermaLink="false">2026-05-31-11-google-io-2026-gemini-35-flash-ga-gemini-spark-p</guid>
    <pubDate>Sun, 31 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <description><![CDATA[Google's developer conference (May 19–20) shipped several items developers should track: Gemini 3.5 Flash is now generally available via the Gemini API, Google AI Studio, and Android Studio. Gemini…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-11-google-io-2026-gemini-35-flash-ga-gemini-spark-p.jpg" alt="" /></p>
<p>Google's developer conference (May 19–20) shipped several items developers should track: Gemini 3.5 Flash is now generally available via the Gemini API, Google AI Studio, and Android Studio. Gemini Spark is a new 24/7 personal AI agent that operates in the background on phones and laptops. Google also launched the Build with Gemini XPRIZE Hackathon with a $2 million prize pool, described as the largest ever for a hackathon.</p>
<p>---
<em>Sources: <a href="https://developers.googleblog.com/all-the-news-from-the-google-io-2026-developer-keynote/">Google Developers Blog</a> · <a href="https://blog.google/innovation-and-ai/technology/ai/google-io-2026-all-our-announcements/">Google Blog</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-11-google-io-2026-gemini-35-flash-ga-gemini-spark-p.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-11-google-io-2026-gemini-35-flash-ga-gemini-spark-p.jpg" />
  </item>
  <item>
    <title><![CDATA[NVIDIA and Google Optimize Gemma 4 for Local RTX Deployment]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-31-12-nvidia-and-google-optimize-gemma-4-for-local-rtx/</link>
    <guid isPermaLink="false">2026-05-31-12-nvidia-and-google-optimize-gemma-4-for-local-rtx</guid>
    <pubDate>Sun, 31 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Google's open-source Gemma 4 model family (released March 31, Apache 2.0) now has optimized NVIDIA RTX support for local agentic workflows. The four model variants — E2B, E4B, 26B, 31B — span edge…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-12-nvidia-and-google-optimize-gemma-4-for-local-rtx.jpg" alt="" /></p>
<p>Google's open-source Gemma 4 model family (released March 31, Apache 2.0) now has optimized NVIDIA RTX support for local agentic workflows. The four model variants — E2B, E4B, 26B, 31B — span edge devices through workstation GPUs and DGX Spark. The 31B variant currently ranks #3 among open models on the Arena AI text leaderboard. Models include multimodal capabilities (vision, video, audio), native function calling for agent applications, and multilingual support for 35+ languages. Practically useful for developers who want frontier-class open models running locally.</p>
<p>---
<em>Sources: <a href="https://blogs.nvidia.com/blog/rtx-ai-garage-open-models-google-gemma-4/">NVIDIA Blog</a> · <a href="https://cloud.google.com/blog/products/ai-machine-learning/gemma-4-available-on-google-cloud">Google Cloud Blog</a> · <a href="https://aurigait.com/blog/gemma-4-features-benchmarks-guide/">Auriga IT Guide</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-12-nvidia-and-google-optimize-gemma-4-for-local-rtx.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-31-12-nvidia-and-google-optimize-gemma-4-for-local-rtx.jpg" />
  </item>
  <item>
    <title><![CDATA[Claude Code Dynamic Workflows & Ultracode Mode]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-30-01-claude-code-dynamic-workflows-ultracode-mode/</link>
    <guid isPermaLink="false">2026-05-30-01-claude-code-dynamic-workflows-ultracode-mode</guid>
    <pubDate>Sat, 30 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[Security]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Anthropic launched dynamic workflows on May 28, enabling Claude to orchestrate up to 1,000 parallel subagents for large, complex tasks like codebase audits, migration jobs, and security reviews. The…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-01-claude-code-dynamic-workflows-ultracode-mode.jpg" alt="" /></p>
<p>Anthropic launched dynamic workflows on May 28, enabling Claude to orchestrate up to 1,000 parallel subagents for large, complex tasks like codebase audits, migration jobs, and security reviews. The new <code>ultracode</code> mode (activate with <code>/effort ultracode</code>) lets Claude auto-decide when to spin up workflow machinery — useful for big jobs where you want full-throttle parallelism. Key tip: always start with a scoped task first to gauge token consumption before running across a whole monorepo, and drop back to <code>/effort high</code> for routine work.</p>
<p>---
<em>Sources: <a href="https://claude.com/blog/introducing-dynamic-workflows-in-claude-code">Anthropic Blog</a> · <a href="https://techcrunch.com/2026/05/28/anthropic-releases-opus-4-8-with-new-dynamic-workflow-tool/">TechCrunch</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-01-claude-code-dynamic-workflows-ultracode-mode.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-01-claude-code-dynamic-workflows-ultracode-mode.jpg" />
  </item>
  <item>
    <title><![CDATA[Playwright + MCP Self-Healing Tests in Cursor]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-30-02-playwright-mcp-self-healing-tests-in-cursor/</link>
    <guid isPermaLink="false">2026-05-30-02-playwright-mcp-self-healing-tests-in-cursor</guid>
    <pubDate>Sat, 30 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[A viral workflow connecting Playwright to Cursor via MCP creates TDD on autopilot: the agent runs tests, fails, fixes code, and verifies — all without leaving your editor. This "agentic TDD" pattern…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-02-playwright-mcp-self-healing-tests-in-cursor.jpg" alt="" /></p>
<p>A viral workflow connecting Playwright to Cursor via MCP creates TDD on autopilot: the agent runs tests, fails, fixes code, and verifies — all without leaving your editor. This &quot;agentic TDD&quot; pattern is gaining traction as the go-to workflow for test-driven development with AI tools. Community consensus: Cursor leads for everyday in-editor assistance while Claude Code leads for complex multi-file projects.</p>
<p>---
<em>Sources: <a href="https://www.aitooldiscovery.com/guides/cursor-reddit">Cursor AI Reddit Roundup</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-02-playwright-mcp-self-healing-tests-in-cursor.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-02-playwright-mcp-self-healing-tests-in-cursor.jpg" />
  </item>
  <item>
    <title><![CDATA[Budget Tokens Strategically in Multi-Agent Runs]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-30-03-budget-tokens-strategically-in-multi-agent-runs/</link>
    <guid isPermaLink="false">2026-05-30-03-budget-tokens-strategically-in-multi-agent-runs</guid>
    <pubDate>Sat, 30 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[With dynamic workflows consuming substantially more tokens, a practical rule of thumb from developers: use a smaller/cheaper model for indexing and low-risk classification phases, reserve the…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>With dynamic workflows consuming substantially more tokens, a practical rule of thumb from developers: use a smaller/cheaper model for indexing and low-risk classification phases, reserve the strongest model only for final verification steps. Check <code>/model</code> before launching expensive workflows, and scope to a single service or directory before expanding to the full codebase.</p>
<p>---
<em>Sources: <a href="https://code.claude.com/docs/en/workflows">Claude Code Docs</a> · <a href="https://agentpedia.codes/blog/claude-opus-4-8-claude-code-workflows">agentpedia.codes guide</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Context Engineering: 4 Core Strategies]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-30-04-context-engineering-4-core-strategies/</link>
    <guid isPermaLink="false">2026-05-30-04-context-engineering-4-core-strategies</guid>
    <pubDate>Sat, 30 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[LangChain formalized context engineering with four strategies now widely adopted in production agent systems: write (persist context externally), select (retrieve what's relevant via RAG), compress…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>LangChain formalized context engineering with four strategies now widely adopted in production agent systems: <strong>write</strong> (persist context externally), <strong>select</strong> (retrieve what's relevant via RAG), <strong>compress</strong> (summarize and compact), and <strong>isolate</strong> (separate contexts for different agents). Keeping base system prompts lean at 200–800 tokens while injecting context dynamically is the production sweet spot.</p>
<p>---
<em>Sources: <a href="https://jobsbyculture.com/blog/ai-agent-orchestration-patterns-2026">Multi-Agent Orchestration Guide</a> · <a href="https://arxiv.org/pdf/2603.09619">Context Engineering Paper</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[9 Best Practices for Production-Grade Agentic AI]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-30-05-9-best-practices-for-production-grade-agentic-ai/</link>
    <guid isPermaLink="false">2026-05-30-05-9-best-practices-for-production-grade-agentic-ai</guid>
    <pubDate>Sat, 30 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[A recent arxiv paper distills production-grade agentic workflow patterns: tool-first design over MCP, pure-function tool invocation, single-tool and single-responsibility agents, externalized prompt…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>A recent arxiv paper distills production-grade agentic workflow patterns: tool-first design over MCP, pure-function tool invocation, single-tool and single-responsibility agents, externalized prompt management, clean separation between workflow logic and MCP servers, and containerized deployment. The KISS principle consistently outperforms over-engineered orchestration. Essential reading before building any production agent system.</p>
<p>---
<em>Sources: <a href="https://arxiv.org/pdf/2512.08769">ArXiv Paper</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Design Patterns for Securing LLM Agents Against Prompt Injection]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-30-06-design-patterns-for-securing-llm-agents-against-/</link>
    <guid isPermaLink="false">2026-05-30-06-design-patterns-for-securing-llm-agents-against-</guid>
    <pubDate>Sat, 30 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[A new arxiv paper (2506.08837) proposes principled design patterns for building agents with provable resistance to prompt injection — a critical threat when agents have tool access or handle…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-06-design-patterns-for-securing-llm-agents-against-.jpg" alt="" /></p>
<p>A new arxiv paper (2506.08837) proposes principled design patterns for building agents with provable resistance to prompt injection — a critical threat when agents have tool access or handle sensitive data. Key patterns: the <strong>code-then-execute</strong> pattern (LLM writes code that runs on untrusted data, rather than directly acting on it) and <strong>context minimization</strong>. The paper concludes no single pattern suffices — use combinations.</p>
<p>---
<em>Sources: <a href="https://arxiv.org/abs/2506.08837">ArXiv Abstract</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-06-design-patterns-for-securing-llm-agents-against-.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-06-design-patterns-for-securing-llm-agents-against-.jpg" />
  </item>
  <item>
    <title><![CDATA[6 Production-Proven Multi-Agent Orchestration Patterns]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-30-07-6-production-proven-multi-agent-orchestration-pa/</link>
    <guid isPermaLink="false">2026-05-30-07-6-production-proven-multi-agent-orchestration-pa</guid>
    <pubDate>Sat, 30 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[Security]]></category>
    <description><![CDATA[As multi-agent systems mature, six patterns have emerged as production-proven in 2026: sequential chains, parallel fan-out, supervisor/worker, hierarchical delegation, consensus/debate (multiple…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>As multi-agent systems mature, six patterns have emerged as production-proven in 2026: sequential chains, parallel fan-out, supervisor/worker, hierarchical delegation, consensus/debate (multiple agents independently verify findings), and human-in-the-loop. The consensus/debate pattern is particularly valuable for agentic code reviews and security audits where independent verification catches more issues.</p>
<p>---
<em>Sources: <a href="https://jobsbyculture.com/blog/ai-agent-orchestration-patterns-2026">AI Agent Orchestration Patterns</a> · <a href="https://www.intuz.com/blog/building-multi-ai-agent-workflows-with-langchain">LangGraph / LangChain overview</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Is Agentic RAG Worth It? New Research]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-30-08-is-agentic-rag-worth-it-new-research/</link>
    <guid isPermaLink="false">2026-05-30-08-is-agentic-rag-worth-it-new-research</guid>
    <pubDate>Sat, 30 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[A January 2026 arxiv paper experimentally compares RAG approaches and finds agentic RAG outperforms static RAG for multi-hop reasoning tasks but adds latency and cost. Key pitfalls: "over-search"…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-08-is-agentic-rag-worth-it-new-research.jpg" alt="" /></p>
<p>A January 2026 arxiv paper experimentally compares RAG approaches and finds agentic RAG outperforms static RAG for multi-hop reasoning tasks but adds latency and cost. Key pitfalls: &quot;over-search&quot; (redundant retrievals) and &quot;under-search&quot; (missing needed retrievals). Practical takeaway: only move to agentic RAG when your task genuinely requires iterative or conditional retrieval — not by default.</p>
<p>---
<em>Sources: <a href="https://arxiv.org/abs/2601.07711">ArXiv: Is Agentic RAG Worth It?</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-08-is-agentic-rag-worth-it-new-research.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-08-is-agentic-rag-worth-it-new-research.jpg" />
  </item>
  <item>
    <title><![CDATA[Anthropic Releases Claude Opus 4.8 with Dynamic Workflows]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-30-09-anthropic-releases-claude-opus-48-with-dynamic-w/</link>
    <guid isPermaLink="false">2026-05-30-09-anthropic-releases-claude-opus-48-with-dynamic-w</guid>
    <pubDate>Sat, 30 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Anthropic shipped Claude Opus 4.8 on May 28, just 41 days after Opus 4.7, with improvements across coding, agentic tasks, reasoning, and practical knowledge work. Alongside the model, Anthropic…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-09-anthropic-releases-claude-opus-48-with-dynamic-w.jpg" alt="" /></p>
<p>Anthropic shipped Claude Opus 4.8 on May 28, just 41 days after Opus 4.7, with improvements across coding, agentic tasks, reasoning, and practical knowledge work. Alongside the model, Anthropic launched dynamic workflows in Claude Code (up to 1,000 subagents), effort controls (including the new <code>ultracode</code> mode), Fast mode that's 2.5× faster and 3× cheaper than before, and expanded MCP/plugin/browser support. The Claude Platform also adds Managed Agents webhooks, multi-agent orchestration APIs, and Memory in public beta.</p>
<p>---
<em>Sources: <a href="https://www.anthropic.com/news/claude-opus-4-8">Anthropic Blog</a> · <a href="https://thenewstack.io/claude-opus-48-release/">The New Stack</a> · <a href="https://www.marktechpost.com/2026/05/28/anthropic-ships-claude-opus-4-8-alongside-dynamic-workflows-and-cheaper-fast-mode-with-workflows-capped-at-1000-subagents/">MarkTechPost</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-09-anthropic-releases-claude-opus-48-with-dynamic-w.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-09-anthropic-releases-claude-opus-48-with-dynamic-w.jpg" />
  </item>
  <item>
    <title><![CDATA[Anthropic Closing $30B Round at $900B+ Valuation — Would Surpass OpenAI]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-30-10-anthropic-closing-30b-round-at-900b-valuation-wo/</link>
    <guid isPermaLink="false">2026-05-30-10-anthropic-closing-30b-round-at-900b-valuation-wo</guid>
    <pubDate>Sat, 30 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Anthropic is set to close a $30 billion funding round at a pre-money valuation above $900 billion, which would make it the most valuable private AI startup in the world, surpassing OpenAI's $852…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-10-anthropic-closing-30b-round-at-900b-valuation-wo.jpg" alt="" /></p>
<p>Anthropic is set to close a $30 billion funding round at a pre-money valuation above $900 billion, which would make it the most valuable private AI startup in the world, surpassing OpenAI's $852 billion March valuation. Sequoia, Dragoneer, Altimeter, and Greenoaks are each contributing ~$2B. This follows the $30B Series G closed in February 2026 at a $380B valuation, with growth driven by Q2 2026 revenue projected at $10.9B — up 130% from Q1's $4.8B.</p>
<p>---
<em>Sources: <a href="https://www.bloomberg.com/news/articles/2026-05-12/anthropic-in-talks-to-raise-30-billion-at-900-billion-valuation">Bloomberg</a> · <a href="https://www.techtimes.com/articles/317066/20260523/anthropic-funding-round-top-30b-900b-valuation-would-surpass-openai-most-valuable-ai-startup.htm">TechTimes</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-10-anthropic-closing-30b-round-at-900b-valuation-wo.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-10-anthropic-closing-30b-round-at-900b-valuation-wo.jpg" />
  </item>
  <item>
    <title><![CDATA[Google I/O 2026: Gemini 3.5 Flash, Antigravity Agent Platform, WebMCP]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-30-11-google-io-2026-gemini-35-flash-antigravity-agent/</link>
    <guid isPermaLink="false">2026-05-30-11-google-io-2026-gemini-35-flash-antigravity-agent</guid>
    <pubDate>Sat, 30 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <description><![CDATA[Google's I/O keynote (May 19-21) centered on the "agentic Gemini era." Key developer announcements: Gemini 3.5 Flash (rivals flagship models at Flash speeds, outperforms Gemini 3.1 Pro on…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-11-google-io-2026-gemini-35-flash-antigravity-agent.jpg" alt="" /></p>
<p>Google's I/O keynote (May 19-21) centered on the &quot;agentic Gemini era.&quot; Key developer announcements: Gemini 3.5 Flash (rivals flagship models at Flash speeds, outperforms Gemini 3.1 Pro on coding/agentic benchmarks), Gemini Omni (multimodal creation from any input), the upgraded Antigravity agent-first development platform with subagents/hooks/async task management, and WebMCP — a proposed open web standard for exposing browser-based tools to AI agents, with an experimental origin trial in Chrome 149.</p>
<p>---
<em>Sources: <a href="https://blog.google/innovation-and-ai/technology/ai/google-io-2026-all-our-announcements/">Google Blog</a> · <a href="https://developers.googleblog.com/all-the-news-from-the-google-io-2026-developer-keynote/">Developers Keynote</a> · <a href="https://9to5google.com/2026/05/19/google-io-2026-news/">9to5Google</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-11-google-io-2026-gemini-35-flash-antigravity-agent.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-30-11-google-io-2026-gemini-35-flash-antigravity-agent.jpg" />
  </item>
  <item>
    <title><![CDATA[OpenAI Publishes Frontier Governance Framework]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-30-12-openai-publishes-frontier-governance-framework/</link>
    <guid isPermaLink="false">2026-05-30-12-openai-publishes-frontier-governance-framework</guid>
    <pubDate>Sat, 30 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[OpenAI released its Frontier Governance Framework on May 29, aligning its safety practices with the EU AI Act's Code of Practice and California's Transparency in Frontier AI Act. The framework maps…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>OpenAI released its Frontier Governance Framework on May 29, aligning its safety practices with the EU AI Act's Code of Practice and California's Transparency in Frontier AI Act. The framework maps threat categories (cyber offense, CBRN risks, harmful manipulation, loss of control) to risk tiers with independent third-party evaluation requirements. Also on May 29: OpenAI launched Rosalind Biodefense (GPT-Rosalind access for vetted biodefense/public health partners) and a personal finance feature in ChatGPT that connects to users' financial accounts.</p>
<p>---
<em>Sources: <a href="https://openai.com/index/openai-frontier-governance-framework/">OpenAI Framework</a> · <a href="https://www.techerati.com/news-hub/openais-frontier-signals-a-shift-in-enterprise-ai-governance/">Techerati</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Claude Code Dynamic Workflows: Run Up to 1,000 Parallel Subagents]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-01-claude-code-dynamic-workflows-run-up-to-1000-par/</link>
    <guid isPermaLink="false">2026-05-29-01-claude-code-dynamic-workflows-run-up-to-1000-par</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Anthropic's Opus 4.8 launch (May 28) shipped Dynamic Workflows as a research-preview layer inside Claude Code. You can now write orchestration scripts that spawn tens to hundreds of parallel…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-01-claude-code-dynamic-workflows-run-up-to-1000-par.jpg" alt="" /></p>
<p>Anthropic's Opus 4.8 launch (May 28) shipped Dynamic Workflows as a research-preview layer inside Claude Code. You can now write orchestration scripts that spawn tens to hundreds of parallel subagents (capped at 16 concurrent, 1,000 total per run). Crucially, workflows save checkpoints mid-run, so interrupted long-running jobs can resume rather than restart from zero. This changes the economics of large agentic tasks like codebase-wide refactors or multi-file test generation.</p>
<p>---
<em>Sources: <a href="https://techcrunch.com/2026/05/28/anthropic-releases-opus-4-8-with-new-dynamic-workflow-tool/">TechCrunch</a> · <a href="https://www.marktechpost.com/2026/05/28/anthropic-ships-claude-opus-4-8-alongside-dynamic-workflows-and-cheaper-fast-mode-with-workflows-capped-at-1000-subagents/">MarkTechPost</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-01-claude-code-dynamic-workflows-run-up-to-1000-par.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-01-claude-code-dynamic-workflows-run-up-to-1000-par.jpg" />
  </item>
  <item>
    <title><![CDATA[CLAUDE.md Is a Behavioral Contract, Not Documentation]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-02-claudemd-is-a-behavioral-contract-not-documentat/</link>
    <guid isPermaLink="false">2026-05-29-02-claudemd-is-a-behavioral-contract-not-documentat</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[A well-researched guide published this month confirms the highest-ROI practice for Claude Code: treat CLAUDE.md as a strict behavioral contract. Keep it under 200 lines and apply a ruthless filter —…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>A well-researched guide published this month confirms the highest-ROI practice for Claude Code: treat CLAUDE.md as a strict behavioral contract. Keep it under 200 lines and apply a ruthless filter — &quot;Would removing this line cause Claude to make mistakes?&quot; If not, cut it. Include project-specific business context, naming conventions, and domain rules that can't be inferred from code. Also: place a <code>~/.claude/CLAUDE.md</code> at your home directory for cross-project conventions, and run a session retro (&quot;What did you learn?&quot;) at the end of each session to evolve it.</p>
<p>---
<em>Sources: <a href="https://medium.com/@bijit211987/the-complete-guide-to-claude-md-memory-rules-loading-and-cross-tool-compression-97cc12ed037b">Medium (Bijit Ghosh)</a> · <a href="https://dev.to/rams901/claudemd-rules-how-to-cut-ai-coding-mistakes-from-40-to-3-in-2026-2j7o">DEV Community</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Claude Code + Cursor Combo Beats Using Either Alone]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-03-claude-code-cursor-combo-beats-using-either-alon/</link>
    <guid isPermaLink="false">2026-05-29-03-claude-code-cursor-combo-beats-using-either-alon</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[The emerging 2026 consensus from developers shipping fastest: use Claude Code for heavy lifting (scaffolding, refactors, infrastructure, large context reasoning with its 200K token window), then…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>The emerging 2026 consensus from developers shipping fastest: use Claude Code for heavy lifting (scaffolding, refactors, infrastructure, large context reasoning with its 200K token window), then switch to Cursor for polish (fine-tuning UI, fixing edge cases, adjusting copy). Claude Code excels at whole-project reasoning; Cursor excels at precision edits within an already-structured codebase. Shift once the feature skeleton exists.</p>
<p>---
<em>Sources: <a href="https://www.aibuilderclub.com/blog/claude-code-vs-cursor-2026">AI Builder Club</a> · <a href="https://theexcitedengineer.substack.com/p/your-best-ai-coding-guide-with-claude">Excited Engineer Substack</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Claude Code v2.1.152: PowerShell Security Fix + Useful /usage Breakdown]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-04-claude-code-v21152-powershell-security-fix-usefu/</link>
    <guid isPermaLink="false">2026-05-29-04-claude-code-v21152-powershell-security-fix-usefu</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Shipped May 27. The critical update: a PowerShell permission bypass is patched (v2.1.149+) — built-in cd.., cd\, cd~ functions could change working directory outside your workspace without triggering…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-04-claude-code-v21152-powershell-security-fix-usefu.jpg" alt="" /></p>
<p>Shipped May 27. The critical update: a PowerShell permission bypass is patched (v2.1.149+) — built-in <code>cd..</code>, <code>cd\</code>, <code>cd~</code> functions could change working directory outside your workspace without triggering permission checks. Windows users must update immediately (<code>claude update</code> or <code>winget upgrade Anthropic.ClaudeCode</code>). The quality-of-life win: <code>/usage</code> now shows per-category breakdowns of what's consuming your limits (skills, subagents, plugins, MCP servers). Also: keyboard-navigable diffs (arrows, j/k, PgUp/PgDn) and GFM checkbox rendering.</p>
<p>---
<em>Sources: <a href="https://claudefa.st/blog/guide/changelog">Claude Code Changelog</a> · <a href="https://www.buildfastwithai.com/blogs/ai-news-today-may-28-2026">Build Fast with AI</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-04-claude-code-v21152-powershell-security-fix-usefu.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-04-claude-code-v21152-powershell-security-fix-usefu.jpg" />
  </item>
  <item>
    <title><![CDATA[Messages API Now Supports Mid-Task Instruction Updates]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-05-messages-api-now-supports-mid-task-instruction-u/</link>
    <guid isPermaLink="false">2026-05-29-05-messages-api-now-supports-mid-task-instruction-u</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Alongside Opus 4.8, Anthropic updated the Messages API to accept system entries inside the messages array. Developers can now update Claude's instructions mid-task without breaking the prompt cache…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-05-messages-api-now-supports-mid-task-instruction-u.jpg" alt="" /></p>
<p>Alongside Opus 4.8, Anthropic updated the Messages API to accept <code>system</code> entries inside the <code>messages</code> array. Developers can now update Claude's instructions mid-task without breaking the prompt cache or routing the update through a user turn. This is particularly valuable for long agentic runs where task context or constraints evolve.</p>
<p>---
<em>Sources: <a href="https://www.digitalapplied.com/blog/claude-opus-4-8-release-dynamic-workflows-2026">Digital Applied</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-05-messages-api-now-supports-mid-task-instruction-u.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-05-messages-api-now-supports-mid-task-instruction-u.jpg" />
  </item>
  <item>
    <title><![CDATA[Context Engineering Has Supplanted Prompt Engineering]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-06-context-engineering-has-supplanted-prompt-engine/</link>
    <guid isPermaLink="false">2026-05-29-06-context-engineering-has-supplanted-prompt-engine</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[The industry consensus in 2026: context architecture is the primary skill for working with LLMs, not prompt wording. The key asymmetry: a well-crafted prompt in a poorly engineered context still…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-06-context-engineering-has-supplanted-prompt-engine.jpg" alt="" /></p>
<p>The industry consensus in 2026: context architecture is the primary skill for working with LLMs, not prompt wording. The key asymmetry: a well-crafted prompt in a poorly engineered context still fails, but a poorly crafted prompt in a well-engineered context often succeeds. 82% of IT and data leaders surveyed agree that prompt engineering alone is insufficient at scale. The practical framework: think about what information the model sees, not just how you phrase the instruction.</p>
<p>---
<em>Sources: <a href="https://neo4j.com/blog/agentic-ai/context-engineering-vs-prompt-engineering/">Neo4j Blog</a> · <a href="https://www.firecrawl.dev/blog/context-engineering">Firecrawl Blog</a> · <a href="https://www.deepset.ai/blog/context-engineering-the-next-frontier-beyond-prompt-engineering">deepset Blog</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-06-context-engineering-has-supplanted-prompt-engine.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-06-context-engineering-has-supplanted-prompt-engine.jpg" />
  </item>
  <item>
    <title><![CDATA[Use Small Language Models for Routine Agentic Tasks (New ArXiv)]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-07-use-small-language-models-for-routine-agentic-ta/</link>
    <guid isPermaLink="false">2026-05-29-07-use-small-language-models-for-routine-agentic-ta</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[A fresh paper from NVIDIA Research ("Small Language Models are the Future of Agentic AI") argues that SLMs can match or surpass LLMs on tool use, function calling, and RAG at 10x–100x lower token…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-07-use-small-language-models-for-routine-agentic-ta.jpg" alt="" /></p>
<p>A fresh paper from NVIDIA Research (&quot;Small Language Models are the Future of Agentic AI&quot;) argues that SLMs can match or surpass LLMs on tool use, function calling, and RAG at 10x–100x lower token cost with better latency. The practical pattern: heterogeneous model routing — SLMs for narrow, predictable sub-tasks; LLMs for complex reasoning steps. Key techniques to close the gap: guided decoding, strict JSON Schema outputs, schema-first prompting, and lightweight LoRA/QLoRA fine-tuning.</p>
<p>---
<em>Sources: <a href="https://arxiv.org/abs/2506.02153">ArXiv</a> · <a href="https://research.nvidia.com/labs/lpr/slm-agents/">NVIDIA Research</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-07-use-small-language-models-for-routine-agentic-ta.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-07-use-small-language-models-for-routine-agentic-ta.jpg" />
  </item>
  <item>
    <title><![CDATA[RAG Optimization: Keep Key Information at the Edges of Context]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-08-rag-optimization-keep-key-information-at-the-edg/</link>
    <guid isPermaLink="false">2026-05-29-08-rag-optimization-keep-key-information-at-the-edg</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Stanford's "lost in the middle" research (now mainstream practice) confirms that LLM attention degrades for information placed in the middle of long contexts. For RAG pipelines: place the most…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-08-rag-optimization-keep-key-information-at-the-edg.jpg" alt="" /></p>
<p>Stanford's &quot;lost in the middle&quot; research (now mainstream practice) confirms that LLM attention degrades for information placed in the middle of long contexts. For RAG pipelines: place the most critical retrieved chunks at the very beginning or end of the prompt. Also: resist the urge to dump everything into context — a 2025 Chroma study found every model tested performed worse as input volume grew. Optimal standalone prompt length is 150–300 words; beyond that, compress with summarization before retrieval.</p>
<p>---
<em>Sources: <a href="https://www.stackai.com/blog/prompt-engineering-for-rag-pipelines-the-complete-guide-to-prompt-engineering-for-retrieval-augmented-generation">Stack AI Blog</a> · <a href="https://www.regal.ai/blog/context-engineering-for-ai-agents">Regal.ai</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-08-rag-optimization-keep-key-information-at-the-edg.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-08-rag-optimization-keep-key-information-at-the-edg.jpg" />
  </item>
  <item>
    <title><![CDATA[Google Antigravity Managed Agents: Provision Remote Sandboxes via API]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-09-google-antigravity-managed-agents-provision-remo/</link>
    <guid isPermaLink="false">2026-05-29-09-google-antigravity-managed-agents-provision-remo</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Announced at Google I/O 2026, Managed Agents (powered by Gemini 3.5 Flash) let a single API call provision a remote Linux environment where an agent can plan, call tools, execute code, manage files,…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-09-google-antigravity-managed-agents-provision-remo.jpg" alt="" /></p>
<p>Announced at Google I/O 2026, Managed Agents (powered by Gemini 3.5 Flash) let a single API call provision a remote Linux environment where an agent can plan, call tools, execute code, manage files, and browse the web — all in an isolated sandbox. Eliminates the infrastructure overhead of self-hosting agent execution environments. Available via Google AI Studio and Vertex AI.</p>
<p>---
<em>Sources: <a href="https://cloud.google.com/blog/products/ai-machine-learning/innovations-from-google-io-26-on-google-cloud">Google Cloud Blog</a> · <a href="https://9to5google.com/2026/05/19/google-io-2026-news/">9to5Google</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-09-google-antigravity-managed-agents-provision-remo.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-09-google-antigravity-managed-agents-provision-remo.jpg" />
  </item>
  <item>
    <title><![CDATA[Facebook SilverTorch: "Index as Model" Retrieval Paradigm]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-10-facebook-silvertorch-index-as-model-retrieval-pa/</link>
    <guid isPermaLink="false">2026-05-29-10-facebook-silvertorch-index-as-model-retrieval-pa</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Meta Engineering published SilverTorch (May 26), a new retrieval architecture for recommendation systems that treats the index itself as a learned model rather than a static lookup structure. While…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-10-facebook-silvertorch-index-as-model-retrieval-pa.jpg" alt="" /></p>
<p>Meta Engineering published SilverTorch (May 26), a new retrieval architecture for recommendation systems that treats the index itself as a learned model rather than a static lookup structure. While aimed at recommendation systems, the underlying pattern — embedding retrieval intelligence into the index rather than the query layer — has direct implications for RAG system design. Worth reading for anyone architecting high-scale retrieval pipelines.</p>
<p>---
<em>Sources: <a href="https://engineering.fb.com/2026/05/26/ml-applications/silvertorch-index-as-model-new-retrieval-paradigm-recommendation-systems/">Meta Engineering Blog</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-10-facebook-silvertorch-index-as-model-retrieval-pa.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-10-facebook-silvertorch-index-as-model-retrieval-pa.jpg" />
  </item>
  <item>
    <title><![CDATA[Anthropic Releases Claude Opus 4.8 with Dynamic Workflows]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-11-anthropic-releases-claude-opus-48-with-dynamic-w/</link>
    <guid isPermaLink="false">2026-05-29-11-anthropic-releases-claude-opus-48-with-dynamic-w</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[AWS]]></category>
    <category><![CDATA[Security]]></category>
    <description><![CDATA[Released May 28, Opus 4.8 is an upgrade to Opus 4.7 at the same price ($5/$25 per million tokens in/out). Benchmarks beat its predecessor, GPT-5.5, and Gemini 3.1 Pro across most measures. Key…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-11-anthropic-releases-claude-opus-48-with-dynamic-w.jpg" alt="" /></p>
<p>Released May 28, Opus 4.8 is an upgrade to Opus 4.7 at the same price ($5/$25 per million tokens in/out). Benchmarks beat its predecessor, GPT-5.5, and Gemini 3.1 Pro across most measures. Key additions for developers: Dynamic Workflows in Claude Code (parallel subagents, checkpointing), Effort Controls (adjust reasoning depth per-request), and the Messages API mid-task instruction update capability. Separately, Anthropic also released Claude Security (public beta for Enterprise), a codebase vulnerability scanning tool that reasons about cross-component interactions — not just static pattern matching. Now available on AWS Bedrock and OpenRouter.</p>
<p>---
<em>Sources: <a href="https://www.anthropic.com/news/claude-opus-4-8">Anthropic</a> · <a href="https://thenewstack.io/claude-opus-48-release/">The New Stack</a> · <a href="https://aws.amazon.com/blogs/machine-learning/claude-opus-4-8-is-now-available-on-aws/">AWS ML Blog</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-11-anthropic-releases-claude-opus-48-with-dynamic-w.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-11-anthropic-releases-claude-opus-48-with-dynamic-w.jpg" />
  </item>
  <item>
    <title><![CDATA[Google I/O 2026: Gemini 3.5 Flash Is Generally Available]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-12-google-io-2026-gemini-35-flash-is-generally-avai/</link>
    <guid isPermaLink="false">2026-05-29-12-google-io-2026-gemini-35-flash-is-generally-avai</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Launched May 19–20, Gemini 3.5 Flash is the headline model from Google I/O: frontier-class intelligence at Flash-tier speed (4x faster output tokens/sec than comparable models), outperforming Gemini…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-12-google-io-2026-gemini-35-flash-is-generally-avai.jpg" alt="" /></p>
<p>Launched May 19–20, Gemini 3.5 Flash is the headline model from Google I/O: frontier-class intelligence at Flash-tier speed (4x faster output tokens/sec than comparable models), outperforming Gemini 3.1 Pro on coding, agentic, and multimodal benchmarks. Available now via the Gemini API in Google AI Studio, Vertex AI, and Android Studio. Gemini 3.5 Pro is in testing and expected next month. Gemini Omni (video-to-anything multimodal generation) also previewed.</p>
<p>---
<em>Sources: <a href="https://blog.google/innovation-and-ai/technology/ai/io-2026-keynote-moment-videos/">Google Blog</a> · <a href="https://9to5google.com/2026/05/19/google-io-2026-news/">9to5Google</a> · <a href="https://hothardware.com/news/google-io-2026-gemini-35-flash-ai-search-and-more">HotHardware</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-12-google-io-2026-gemini-35-flash-is-generally-avai.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-12-google-io-2026-gemini-35-flash-is-generally-avai.jpg" />
  </item>
  <item>
    <title><![CDATA[All Three Big Four Firms Now Standardized on Claude]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-13-all-three-big-four-firms-now-standardized-on-cla/</link>
    <guid isPermaLink="false">2026-05-29-13-all-three-big-four-firms-now-standardized-on-cla</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Deloitte (470K employees), PwC, and KPMG (276K employees in 138 countries) have all committed to enterprise-wide Claude deployment by September 2026 — roughly 1.1 million professionals total. The…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-13-all-three-big-four-firms-now-standardized-on-cla.jpg" alt="" /></p>
<p>Deloitte (470K employees), PwC, and KPMG (276K employees in 138 countries) have all committed to enterprise-wide Claude deployment by September 2026 — roughly 1.1 million professionals total. The KPMG deployment (announced May 19) integrates Claude Cowork and Managed Agents directly into KPMG's client delivery platform, Digital Gateway on Azure. For developers: if your company uses any of these firms, Claude is likely already entering your workflows through the advisory relationship.</p>
<p>---
<em>Sources: <a href="https://kpmg.com/xx/en/media/press-releases/2026/05/kpmg-and-anthropic-sign-global-alliance-and-launch-digital-gateway-powered-by-claude.html">KPMG Press Release</a> · <a href="https://www.buildfastwithai.com/blogs/ai-news-today-may-28-2026">Build Fast with AI</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-13-all-three-big-four-firms-now-standardized-on-cla.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-13-all-three-big-four-firms-now-standardized-on-cla.jpg" />
  </item>
  <item>
    <title><![CDATA[OpenAI Launches $4B Enterprise Consulting Subsidiary (DeployCo)]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-14-openai-launches-4b-enterprise-consulting-subsidi/</link>
    <guid isPermaLink="false">2026-05-29-14-openai-launches-4b-enterprise-consulting-subsidi</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[May 11: OpenAI launched the OpenAI Deployment Company with $4B+ from TPG, Goldman Sachs, McKinsey, Bain Capital, and Capgemini as co-investors. The model copies Palantir's playbook: Forward Deployed…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-14-openai-launches-4b-enterprise-consulting-subsidi.jpg" alt="" /></p>
<p>May 11: OpenAI launched the OpenAI Deployment Company with $4B+ from TPG, Goldman Sachs, McKinsey, Bain Capital, and Capgemini as co-investors. The model copies Palantir's playbook: Forward Deployed Engineers embedded inside client organizations to build AI workflows in production, not pilots. OpenAI simultaneously acquired Tomoro (150 engineers) for initial capacity. This is a direct response to losing enterprise API share (reportedly ~50% in 2023 to ~25% mid-2025) to Anthropic and Google.</p>
<p>---
<em>Sources: <a href="https://techcrunch.com/2026/04/30/after-dissing-anthropic-for-limiting-mythos-openai-restricts-access-to-cyber-too/">TechCrunch</a> · <a href="https://www.pymnts.com/news/artificial-intelligence/2026/openai-launches-4-billion-dollar-company-accelerate-enterprise-ai-adoption/">PYMNTS</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-14-openai-launches-4b-enterprise-consulting-subsidi.jpg" medium="image" type="image/jpeg" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/2026-05-29-14-openai-launches-4b-enterprise-consulting-subsidi.jpg" />
  </item>
  <item>
    <title><![CDATA[Canada Rules ChatGPT Training Data Violated Privacy Law]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-15-canada-rules-chatgpt-training-data-violated-priv/</link>
    <guid isPermaLink="false">2026-05-29-15-canada-rules-chatgpt-training-data-violated-priv</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Canada's Privacy Commissioner plus provincial counterparts in Quebec, BC, and Alberta found (May 6) that OpenAI violated Canadian privacy law in developing ChatGPT: overcollection of personal data…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Canada's Privacy Commissioner plus provincial counterparts in Quebec, BC, and Alberta found (May 6) that OpenAI violated Canadian privacy law in developing ChatGPT: overcollection of personal data without proportionality assessment, no valid consent for scraped data, and inadequate safeguards for children's data. Federal complaint conditionally resolved, but provincial enforcement continues. First national ruling of this kind — the UK ICO, German DPA, and French CNIL have similar investigations underway. Enterprises subject to PIPEDA should seek legal review before ChatGPT deployment.</p>
<p>---
<em>Sources: <a href="https://www.theglobeandmail.com/business/article-canadian-ai-firm-cohere-germanys-aleph-alpha-announce-merger/">Globe and Mail</a> · <a href="https://www.buildfastwithai.com/blogs/ai-news-today-may-28-2026">Build Fast with AI</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[ChatGPT Voice Mode Runs on a 13-Month-Old Model]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-29-16-chatgpt-voice-mode-runs-on-a-13-month-old-model/</link>
    <guid isPermaLink="false">2026-05-29-16-chatgpt-voice-mode-runs-on-a-13-month-old-model</guid>
    <pubDate>Fri, 29 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Developer Simon Willison (citing Andrej Karpathy) revealed that ChatGPT's voice mode runs on a GPT-4o-era model with an April 2024 knowledge cutoff — while the text interface uses GPT-5.5. That's a…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Developer Simon Willison (citing Andrej Karpathy) revealed that ChatGPT's voice mode runs on a GPT-4o-era model with an April 2024 knowledge cutoff — while the text interface uses GPT-5.5. That's a 13+ month capability gap for ChatGPT Pro subscribers paying $200/month, not prominently disclosed. OpenAI hasn't officially responded. The constraint is latency: frontier models can't yet run real-time voice cheaply. The competitive comparison: Google's Gemini Live voice mode uses Gemini 3.5 Flash (its latest model).</p>
<p>---
<em>Sources: <a href="https://simonwillison.net/">Simon Willison's Blog</a> · <a href="https://www.buildfastwithai.com/blogs/ai-news-today-may-28-2026">Build Fast with AI</a></em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Use IDE + Terminal Agent as a two-tool stack]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-01-use-ide-terminal-agent-as-a-two-tool-stack/</link>
    <guid isPermaLink="false">2026-05-28-01-use-ide-terminal-agent-as-a-two-tool-stack</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[The winning formula in 2026 is pairing a fast IDE assistant (Cursor for inline suggestions and rapid autocomplete) with a terminal agent (Claude Code for complex, multi-file refactoring and…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>The winning formula in 2026 is pairing a fast IDE assistant (Cursor for inline suggestions and rapid autocomplete) with a terminal agent (Claude Code for complex, multi-file refactoring and architecture-level tasks). 70% of developers surveyed by The Pragmatic Engineer now use 2–4 AI coding tools simultaneously rather than picking just one.</p>
<p>---
<em>Source: SitePoint / Fungies.io</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Claude Code's new Agent View changes how you manage parallel sessions]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-02-claude-codes-new-agent-view-changes-how-you-mana/</link>
    <guid isPermaLink="false">2026-05-28-02-claude-codes-new-agent-view-changes-how-you-mana</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[A major update (Week 20, May 11–15) introduced Agent View, a single screen showing all active Claude Code sessions — what's running, what's waiting on input, and what's done. You can launch agents to…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>A major update (Week 20, May 11–15) introduced Agent View, a single screen showing all active Claude Code sessions — what's running, what's waiting on input, and what's done. You can launch agents to the background and check back only when needed. Fast mode now defaults to Opus 4.7, and rate limits were doubled.</p>
<p>---
<em>Source: Releasebot / Medium</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Use `/goal` to keep Claude working across multi-turn tasks]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-03-use-goal-to-keep-claude-working-across-multi-tur/</link>
    <guid isPermaLink="false">2026-05-28-03-use-goal-to-keep-claude-working-across-multi-tur</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Claude Code's new /goal command lets you define a completion condition and Claude will keep working across turns until it's met, reducing the need to manually re-prompt. The Rewind menu also now lets…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Claude Code's new <code>/goal</code> command lets you define a completion condition and Claude will keep working across turns until it's met, reducing the need to manually re-prompt. The <code>Rewind</code> menu also now lets you compress earlier context with &quot;Summarize up to here&quot; to manage long sessions.</p>
<p>---
<em>Source: Claude Code Docs</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[AI coding agents work best on clean, modular repos]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-04-ai-coding-agents-work-best-on-clean-modular-repo/</link>
    <guid isPermaLink="false">2026-05-28-04-ai-coding-agents-work-best-on-clean-modular-repo</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[Agents are strongest when work is clear, contained, and testable. Messy codebases create messy agents. Invest in good engineering hygiene first — the AI amplifies what's already there, for better or…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Agents are strongest when work is clear, contained, and testable. Messy codebases create messy agents. Invest in good engineering hygiene first — the AI amplifies what's already there, for better or worse.</p>
<p>---
<em>Source: DEV Community / NxCode</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Build modularly so you can deprecate agent harnesses]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-05-build-modularly-so-you-can-deprecate-agent-harne/</link>
    <guid isPermaLink="false">2026-05-28-05-build-modularly-so-you-can-deprecate-agent-harne</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[The complex orchestration logic you write today might be made redundant by model improvements in months. Design agent workflows modularly so you can rip out old harnesses when native model…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>The complex orchestration logic you write today might be made redundant by model improvements in months. Design agent workflows modularly so you can rip out old harnesses when native model capabilities catch up, without a full rewrite.</p>
<p>---
<em>Source: MachineLearningMastery</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Run 10–15 Claude sessions in parallel with Git worktrees]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-06-run-1015-claude-sessions-in-parallel-with-git-wo/</link>
    <guid isPermaLink="false">2026-05-28-06-run-1015-claude-sessions-in-parallel-with-git-wo</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Assign each Claude Code session its own git worktree to prevent branch collisions. Developers running this setup report it as their single biggest throughput multiplier — great for tackling…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Assign each Claude Code session its own git worktree to prevent branch collisions. Developers running this setup report it as their single biggest throughput multiplier — great for tackling independent features, tests, and refactors concurrently.</p>
<p>---
<em>Source: f22labs.com</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Context Engineering" replaces "Prompt Engineering" as the dominant discipline]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-07-context-engineering-replaces-prompt-engineering-/</link>
    <guid isPermaLink="false">2026-05-28-07-context-engineering-replaces-prompt-engineering-</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[Prompts are now treated as production code: versioned, tested, and systematically optimized. Tools like DSPy let you define what a system should do via declarative "Signatures" rather than how to…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Prompts are now treated as production code: versioned, tested, and systematically optimized. Tools like <strong>DSPy</strong> let you define <em>what</em> a system should do via declarative &quot;Signatures&quot; rather than <em>how</em> to prompt it; <strong>PromptFoo</strong> provides open-source test harnesses to benchmark prompts across models. Research-backed techniques yield 20–60% quality gains vs. ad-hoc prompting.</p>
<p>---
<em>Source: lushbinary.com / k2view.com</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Agentic prompts need four core components: system prompt, tools, examples, and context state]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-08-agentic-prompts-need-four-core-components-system/</link>
    <guid isPermaLink="false">2026-05-28-08-agentic-prompts-need-four-core-components-system</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Unlike one-shot prompts, agentic prompts are distributed across time and steps. An ambiguous instruction at step one doesn't fail immediately — it drifts, and by step seven, the agent is doing…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Unlike one-shot prompts, agentic prompts are distributed across time and steps. An ambiguous instruction at step one doesn't fail immediately — it drifts, and by step seven, the agent is doing something you never intended. Structure your agent prompts around all four components to prevent drift.</p>
<p>---
<em>Source: MachineLearningMastery</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Five agent design patterns every developer should know in 2026]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-09-five-agent-design-patterns-every-developer-shoul/</link>
    <guid isPermaLink="false">2026-05-28-09-five-agent-design-patterns-every-developer-shoul</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <category><![CDATA[React]]></category>
    <description><![CDATA[ReAct, Plan-and-Execute, Multi-Agent Collaboration, Reflection, and Tool Use have emerged as the canonical patterns for building reliable agents. Reflection (the agent critiques its own output before…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>ReAct, Plan-and-Execute, Multi-Agent Collaboration, Reflection, and Tool Use have emerged as the canonical patterns for building reliable agents. Reflection (the agent critiques its own output before finalizing) and Orchestrator/Sub-agent architectures (specialized sub-agents coordinated by a manager agent) are seeing the most production adoption.</p>
<p>---
<em>Source: n1n.ai / Medium</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Agentic RAG: retrieval as a repeated tool call, not a preprocessing step]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-10-agentic-rag-retrieval-as-a-repeated-tool-call-no/</link>
    <guid isPermaLink="false">2026-05-28-10-agentic-rag-retrieval-as-a-repeated-tool-call-no</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Modern RAG best practice treats retrieval as something the agent can invoke multiple times during a task rather than once before generation. Combining dense vector search with sparse BM25 retrieval…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Modern RAG best practice treats retrieval as something the agent can invoke multiple times during a task rather than once before generation. Combining dense vector search with sparse BM25 retrieval and re-ranking improves precision significantly. Warning: multi-step reflection loops consume 3–10x more tokens than classic RAG — only worth it for complex reasoning workloads.</p>
<p>---
<em>Source: DigitalApplied</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Fix agent failure modes systematically, not through prompt tweaks]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-11-fix-agent-failure-modes-systematically-not-throu/</link>
    <guid isPermaLink="false">2026-05-28-11-fix-agent-failure-modes-systematically-not-throu</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[When an agent makes a mistake, change the surrounding system (rules, tools, constraints, feedback loops) so that mistake structurally cannot recur — not just the prompt. Prompt patching compounds;…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>When an agent makes a mistake, change the surrounding system (rules, tools, constraints, feedback loops) so that mistake structurally cannot recur — not just the prompt. Prompt patching compounds; system-level fixes scale.</p>
<p>---
<em>Source: Sourcegraph / NxCode</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Design tool interfaces with agents in mind]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-12-design-tool-interfaces-with-agents-in-mind/</link>
    <guid isPermaLink="false">2026-05-28-12-design-tool-interfaces-with-agents-in-mind</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[Best Practices]]></category>
    <description><![CDATA[Agents perform better when tools expose clear filters, structured results, and easily parseable formats. If your team is building internal tools that agents will call, treat agent-readability as a…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Agents perform better when tools expose clear filters, structured results, and easily parseable formats. If your team is building internal tools that agents will call, treat agent-readability as a first-class design requirement alongside human usability.</p>
<p>---
<em>Source: Redis / Monday.com</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[KPMG deploys Claude to 276,000 employees across 138 countries]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-13-kpmg-deploys-claude-to-276000-employees-across-1/</link>
    <guid isPermaLink="false">2026-05-28-13-kpmg-deploys-claude-to-276000-employees-across-1</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[One of the largest enterprise AI rollouts to date, KPMG is using Claude at scale across its global workforce for advisory and consulting work. Signals accelerating mainstream enterprise adoption of…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>One of the largest enterprise AI rollouts to date, KPMG is using Claude at scale across its global workforce for advisory and consulting work. Signals accelerating mainstream enterprise adoption of frontier AI models.</p>
<p>---
<em>Source: BuildFastWithAI</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[OpenAI launches $4B consulting subsidiary "DeployCo]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-14-openai-launches-4b-consulting-subsidiary-deployc/</link>
    <guid isPermaLink="false">2026-05-28-14-openai-launches-4b-consulting-subsidiary-deployc</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[OpenAI officially launched a majority-owned standalone consulting entity backed by $4B from 19 investment firms and consultancies. They simultaneously acquired applied AI firm Tomoro (150…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>OpenAI officially launched a majority-owned standalone consulting entity backed by $4B from 19 investment firms and consultancies. They simultaneously acquired applied AI firm Tomoro (150 forward-deployed engineers). A significant strategic shift as OpenAI moves from model provider to full implementation partner.</p>
<p>---
<em>Source: BuildFastWithAI</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Cohere acquires Aleph Alpha, creating a $20B transatlantic sovereign AI challenger]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-15-cohere-acquires-aleph-alpha-creating-a-20b-trans/</link>
    <guid isPermaLink="false">2026-05-28-15-cohere-acquires-aleph-alpha-creating-a-20b-trans</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[The deal merges two of the most prominent "non-US" AI companies into a single entity, positioning them as the go-to option for European and Canadian sovereign AI deployments. Major implications for…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>The deal merges two of the most prominent &quot;non-US&quot; AI companies into a single entity, positioning them as the go-to option for European and Canadian sovereign AI deployments. Major implications for regulated industries and government contracts globally.</p>
<p>---
<em>Source: AI Tools Recap</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[NVIDIA releases Nemotron 3 Nano Omni — open omni-modal model at 30B parameters]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-16-nvidia-releases-nemotron-3-nano-omni-open-omni-m/</link>
    <guid isPermaLink="false">2026-05-28-16-nvidia-releases-nemotron-3-nano-omni-open-omni-m</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[NVIDIA's new model unifies vision, audio, and language in a single 30B-parameter mixture-of-experts architecture. Open weights and omni-modal capability in a relatively compact model could be…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>NVIDIA's new model unifies vision, audio, and language in a single 30B-parameter mixture-of-experts architecture. Open weights and omni-modal capability in a relatively compact model could be significant for edge and on-device use cases.</p>
<p>---
<em>Source: LLM Stats</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Google ships Gemini 3.5 and Gemini 3.5 Flash]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-17-google-ships-gemini-35-and-gemini-35-flash/</link>
    <guid isPermaLink="false">2026-05-28-17-google-ships-gemini-35-and-gemini-35-flash</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Major Gemini model updates announced at Google I/O (May 19) are rolling out, improving performance, speed, and accessibility across Google AI services. Flash variant targets cost-sensitive,…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Major Gemini model updates announced at Google I/O (May 19) are rolling out, improving performance, speed, and accessibility across Google AI services. Flash variant targets cost-sensitive, high-throughput API workloads.</p>
<p>---
<em>Source: TechTimes</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[Anthropic launches Project Glasswing — AI-powered zero-day vulnerability research]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-18-anthropic-launches-project-glasswing-ai-powered-/</link>
    <guid isPermaLink="false">2026-05-28-18-anthropic-launches-project-glasswing-ai-powered-</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[Security]]></category>
    <category><![CDATA[LLM]]></category>
    <description><![CDATA[Anthropic gave select organizations access to Claude Mythos Preview, a specialized security model that reportedly identified thousands of zero-day vulnerabilities across major OSes and browsers in…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>Anthropic gave select organizations access to <em>Claude Mythos Preview</em>, a specialized security model that reportedly identified thousands of zero-day vulnerabilities across major OSes and browsers in weeks of internal testing. A significant signal of frontier AI moving into offensive security research.</p>
<p>---
<em>Source: crescendo.ai</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  <item>
    <title><![CDATA[AMD Venice enters production on TSMC 2nm]]></title>
    <link>https://cloudcodetree.com/ai-news/2026-05-28-19-amd-venice-enters-production-on-tsmc-2nm/</link>
    <guid isPermaLink="false">2026-05-28-19-amd-venice-enters-production-on-tsmc-2nm</guid>
    <pubDate>Thu, 28 May 2026 12:00:00 GMT</pubDate>
    <dc:creator><![CDATA[Chris Harper]]></dc:creator>
    <category><![CDATA[AI]]></category>
    <category><![CDATA[AI News]]></category>
    <category><![CDATA[Developer Tools]]></category>
    <description><![CDATA[AMD kicked off manufacturing of its 6th-gen EPYC "Venice" server CPUs on TSMC's 2nm node — the first high-performance computing product at this process generation. Positions AMD as a credible…]]></description>
    <content:encoded><![CDATA[<p><img src="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" alt="" /></p>
<p>AMD kicked off manufacturing of its 6th-gen EPYC &quot;Venice&quot; server CPUs on TSMC's 2nm node — the first high-performance computing product at this process generation. Positions AMD as a credible challenger to NVIDIA's AI compute dominance as the node war intensifies.</p>
<p>---
<em>Source: crescendo.ai</em></p>]]></content:encoded>
    <media:content url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" medium="image" type="image/png" />
    <media:thumbnail url="https://github.com/cloudcodetree/cloudcodetree.github.io/releases/download/blog-images/_default.png" />
  </item>
  </channel>
</rss>
