<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: tiezhu</title>
    <description>The latest articles on DEV Community by tiezhu (@xiaolangtizi).</description>
    <link>https://dev.to/xiaolangtizi</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3989065%2Ff33502e8-8c43-453e-9719-742a553432f3.png</url>
      <title>DEV Community: tiezhu</title>
      <link>https://dev.to/xiaolangtizi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/xiaolangtizi"/>
    <language>en</language>
    <item>
      <title>Grounded iOS-to-Web Harness: Evidence-Driven App Migration with Behavioral and Visual Verification</title>
      <dc:creator>tiezhu</dc:creator>
      <pubDate>Thu, 27 Aug 2026 12:38:43 +0000</pubDate>
      <link>https://dev.to/xiaolangtizi/grounded-ios-to-web-harness-evidence-driven-app-migration-with-behavioral-and-visual-verification-517m</link>
      <guid>https://dev.to/xiaolangtizi/grounded-ios-to-web-harness-evidence-driven-app-migration-with-behavioral-and-visual-verification-517m</guid>
      <description>&lt;p&gt;Turning an iOS app into a React web app is no longer the hard part. Modern coding agents can generate a convincing first version quickly.&lt;/p&gt;

&lt;p&gt;The hard part is answering three less glamorous questions:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Did we discover every important screen and state?&lt;/li&gt;
&lt;li&gt;Did the generated app preserve the source behavior and data?&lt;/li&gt;
&lt;li&gt;Is the result actually close to the native UI, or does it merely look plausible?&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I built &lt;strong&gt;Grounded iOS-to-Web Harness&lt;/strong&gt; to make those questions auditable.&lt;/p&gt;

&lt;p&gt;🔗 &lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/tiezhu0415/grounded-ios-to-web-harness" rel="noopener noreferrer"&gt;https://github.com/tiezhu0415/grounded-ios-to-web-harness&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What it is
&lt;/h2&gt;

&lt;p&gt;Grounded iOS-to-Web Harness is an experimental, lightweight &lt;strong&gt;grounding + verification layer&lt;/strong&gt; for migrating iOS apps into complete, interactive, mobile-sized WebApps.&lt;/p&gt;

&lt;p&gt;Claude Code remains the primary implementer. The Harness does not prescribe the React component tree, choose a state-management library, or replace the coding agent. Instead, it establishes source facts and verifies the result against evidence from the original app.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;iOS source + Assets + code graph + runtime states
                         ↓
                  locked source facts
                         ↓
             per-screen implementation context
                         ↓
              agent builds the React WebApp
                         ↓
       coverage + truth + behavior + critical VRT
                         ↓
                 bounded repair, then human review
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Why prompt-only migration is not enough
&lt;/h2&gt;

&lt;p&gt;A prompt such as “convert this iOS app to React” can produce a good demo. But on longer tasks, an agent may miss screens, implement only one state, invent data or assets, choose navigation that differs from iOS, forget earlier facts, or optimize a screenshot while breaking real interaction.&lt;/p&gt;

&lt;p&gt;This project treats the iOS source and Assets as the truth for content and behavior, while runtime screenshots provide evidence for what the result should look like.&lt;/p&gt;

&lt;h2&gt;
  
  
  The pipeline
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Discover and reconcile source facts
&lt;/h3&gt;

&lt;p&gt;Static source inspection, codebase-memory, and necessary iOS runtime exploration are combined into machine-readable facts for screens, UI states, actions, navigation outcomes, cross-screen flows, real data and asset origins, and source confidence.&lt;/p&gt;

&lt;p&gt;Facts are locked before implementation. Important actions record preconditions, data effects, navigation effects, and visible feedback.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Give the agent small, relevant context
&lt;/h3&gt;

&lt;p&gt;Instead of injecting the entire repository and every tool description into every prompt, the Harness creates a compact context for each screen. This reduces context drift without restricting how the agent writes React, CSS, routing, or state management.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Verify truth and coverage
&lt;/h3&gt;

&lt;p&gt;The WebApp is checked for missing states, blank routes, broken images, fabricated data, screenshot-background cheating, desktop layouts escaping the mobile shell, and implementation evidence that does not match the locked facts.&lt;/p&gt;

&lt;p&gt;Coverage is measured as &lt;strong&gt;Screen + State&lt;/strong&gt;, not merely as a list of routes.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Verify behavior with Playwright
&lt;/h3&gt;

&lt;p&gt;Playwright executes real clicks, input, state changes, and cross-page journeys. Expected behavior must refer back to locked action facts, preventing code and tests from agreeing on the same invented behavior.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Run critical-state visual regression
&lt;/h3&gt;

&lt;p&gt;The Harness compares iOS and Web screenshots for the same state on the same canvas using:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pixelmatch for changed-pixel ratio;&lt;/li&gt;
&lt;li&gt;SSIM for structural similarity;&lt;/li&gt;
&lt;li&gt;regional diff to expose severe local defects;&lt;/li&gt;
&lt;li&gt;saved comparison and diff images for human review.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Visual metrics are used for triage, not marketed as a “fidelity percentage.” Thresholds remain experimental.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9jqg440eott4ee4dti7l.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9jqg440eott4ee4dti7l.jpg" alt="Product detail visual comparison" width="800" height="580"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Reference evaluation
&lt;/h2&gt;

&lt;p&gt;The repository contains a sanitized reference migration of an e-commerce app. The source iOS project is intentionally not included.&lt;/p&gt;

&lt;p&gt;The checked-in evaluation records:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;19 screens&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;28 states&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;19 navigation contracts&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;34 actions&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;3 cross-page Playwright journeys&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;31 screen/state behavior checks&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;10 critical visual states&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;41/41 Web checks passing&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;40/40 Harness regression tests passing&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The final result was accepted after human visual review. Six experimental visual states were still routed to “review recommended,” and the repository reports that honestly rather than turning SSIM into a false product-quality claim.&lt;/p&gt;

&lt;h2&gt;
  
  
  Research inspiration, not paper reproduction
&lt;/h2&gt;

&lt;p&gt;The design was informed by three recent research directions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://arxiv.org/abs/2608.16630" rel="noopener noreferrer"&gt;Coherence Debt&lt;/a&gt;: keeping dependent facts available and consistent during long agentic tasks;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://arxiv.org/abs/2608.12611" rel="noopener noreferrer"&gt;WidgetGen&lt;/a&gt;: giving models selective text, color, layout, and asset evidence before UI generation;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://arxiv.org/abs/2607.10621" rel="noopener noreferrer"&gt;WebDesignIter&lt;/a&gt;: preserving design knowledge and validating local edits across repository-scale iterations.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The repository does &lt;strong&gt;not&lt;/strong&gt; claim to reproduce these research systems. It borrows their highest-ROI ideas and implements a thin orchestration layer around codebase-memory, Playwright, Pixelmatch, SSIM, Tesseract, and iOS runtime evidence.&lt;/p&gt;

&lt;h2&gt;
  
  
  What this project is not
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;not an iOS-to-React compiler;&lt;/li&gt;
&lt;li&gt;not a promise of pixel-perfect equivalence;&lt;/li&gt;
&lt;li&gt;not a general-purpose multi-agent workflow platform;&lt;/li&gt;
&lt;li&gt;not a replacement for human acceptance;&lt;/li&gt;
&lt;li&gt;not a benchmark result across many production apps—yet.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The current release is experimental. The next meaningful step is testing it against additional iOS projects and calibrating which facts, journeys, and visual states deliver the highest verification value.&lt;/p&gt;

&lt;p&gt;If you work on app modernization, UI migration, coding-agent evaluation, or visual regression, I would love feedback.&lt;/p&gt;

&lt;p&gt;⭐ &lt;strong&gt;Repository:&lt;/strong&gt; &lt;a href="https://github.com/tiezhu0415/grounded-ios-to-web-harness" rel="noopener noreferrer"&gt;https://github.com/tiezhu0415/grounded-ios-to-web-harness&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Issues, experiments, and pull requests are welcome.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>ios</category>
      <category>testing</category>
    </item>
    <item>
      <title>Single-page Claude writes beautifully. At 5 pages it drifts. Here's the harness I built.</title>
      <dc:creator>tiezhu</dc:creator>
      <pubDate>Thu, 18 Jun 2026 05:17:55 +0000</pubDate>
      <link>https://dev.to/xiaolangtizi/single-page-claude-writes-beautifully-at-5-pages-it-drifts-heres-the-harness-i-built-4cdn</link>
      <guid>https://dev.to/xiaolangtizi/single-page-claude-writes-beautifully-at-5-pages-it-drifts-heres-the-harness-i-built-4cdn</guid>
      <description>&lt;h2&gt;
  
  
  TL;DR
&lt;/h2&gt;

&lt;p&gt;I gave Claude / Codex a Figma file + a PRD and asked for 5-10 React pages of a working app. &lt;strong&gt;Single-page output is great. Multi-page output drifts in 4 specific ways.&lt;/strong&gt; I spent ~3 months building a harness with 14 gates × auto-retry × handoff JSON to stop the drift. 10 demos, 54 screens, 4 unrelated business domains, build-green rate 100%.&lt;/p&gt;

&lt;p&gt;Code: &lt;a href="https://github.com/JiuwenDragon/harness-mini" rel="noopener noreferrer"&gt;https://github.com/JiuwenDragon/harness-mini&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  The honest opening
&lt;/h2&gt;

&lt;p&gt;Every "Figma to code with AI" demo on Twitter shows one screen. That's a real result — Claude vision is genuinely good at single-page UI. I verified this many times during my research: &lt;strong&gt;giving Claude a screenshot + a paragraph of PRD produces a 70-80 point page in 30 seconds&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The promise breaks at 5+ screens. Here are the 4 drift modes I measured.&lt;/p&gt;

&lt;h2&gt;
  
  
  Drift mode 1: Inconsistent copy
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Screen 1&lt;/th&gt;
&lt;th&gt;Screen 2&lt;/th&gt;
&lt;th&gt;Screen 3&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Username: Zhang San&lt;/td&gt;
&lt;td&gt;Username: Li Si&lt;/td&gt;
&lt;td&gt;Username: Test User&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;LLM doesn't carry a "world state" across page generations. Without explicit injection, it re-invents.&lt;/p&gt;

&lt;h2&gt;
  
  
  Drift mode 2: Dead-link routing
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="c1"&gt;// Screen "transfer" generated:&lt;/span&gt;
&lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;button&lt;/span&gt; &lt;span class="na"&gt;onClick&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nx"&gt;router&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;push&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;/banking/home&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;  // ← /banking
// Screen "home" actually at:
app/bank/home/page.tsx                                  // ← /bank
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Single-page review never catches this. Click-through breaks.&lt;/p&gt;

&lt;h2&gt;
  
  
  Drift mode 3: Shared state drift
&lt;/h2&gt;

&lt;p&gt;A zustand store with 5 keys (user, balance, lastTx, recent[], selected). LLM forgets 2-3 keys on screen 4, makes new ones up. Same business concept, three different variable names.&lt;/p&gt;

&lt;h2&gt;
  
  
  Drift mode 4: "Claimed done" hallucination
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;gt; Codex: All 10 pages generated, ready to preview.
&amp;gt; me: npm run build
&amp;gt; 3 pages: red. 2 pages: empty &amp;lt;div /&amp;gt; stubs. 1 page: import path wrong.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This one is the most painful. Without an external check, "claimed done" ≠ done.&lt;/p&gt;




&lt;h2&gt;
  
  
  What the harness does (architecture)
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Figma + PRD
    ↓ intake (fixture split)
    ↓ contract (frozen spec)
    ↓ generate (codex / claude / gemini)
    ↓ 14 gates (semantic / PRD / spec / UI hygiene / build / cross-canvas)
    ↓ visual review (human)
    ↓ web-preview (clickable)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Each gate is &lt;strong&gt;scoped to one constraint&lt;/strong&gt;. Why? See Constraint Decay paper (arXiv 2605.06445): stuffing 10+ constraints into one prompt drops LLM performance by 30 percentage points.&lt;/p&gt;

&lt;p&gt;The retry loop: when a gate fails, the gate's structured error report (not a vague "try again") is fed back to the LLM. Reflexion-style.&lt;/p&gt;

&lt;p&gt;The handoff: each stage emits &lt;code&gt;*_status.json&lt;/code&gt; so a new operator (or a new LLM session) can pick up without reading the conversation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why 14 gates and not 1 big one
&lt;/h2&gt;

&lt;p&gt;Constraint Decay (arXiv 2605.06445) measured the drop directly.&lt;br&gt;
Lost in the Middle (arXiv 2307.03172) shows the LLM ignores constraints buried in long prompts.&lt;br&gt;
So I push &lt;strong&gt;one check per gate&lt;/strong&gt;, max ~3 constraints per LLM round.&lt;/p&gt;

&lt;h2&gt;
  
  
  Generalization evidence (4-domain ablation)
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Domain&lt;/th&gt;
&lt;th&gt;Color&lt;/th&gt;
&lt;th&gt;Screens&lt;/th&gt;
&lt;th&gt;Build pass&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Banking&lt;/td&gt;
&lt;td&gt;Deep red&lt;/td&gt;
&lt;td&gt;10&lt;/td&gt;
&lt;td&gt;10/10&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Fitness&lt;/td&gt;
&lt;td&gt;Orange&lt;/td&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;3/3&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Travel&lt;/td&gt;
&lt;td&gt;Blue&lt;/td&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;3/3&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Shoes&lt;/td&gt;
&lt;td&gt;Black&lt;/td&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;3/3&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Same 14 gates. Same Codex/Claude/Gemini providers swapped via contract. No per-domain prompt tuning.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why not just use Builder.io / Locofy / v0 / Figma Make
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Tool&lt;/th&gt;
&lt;th&gt;Strength&lt;/th&gt;
&lt;th&gt;Why it's not what I needed&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Builder.io Visual Copilot&lt;/td&gt;
&lt;td&gt;2M+ training data, Mitosis IR&lt;/td&gt;
&lt;td&gt;SaaS, no PRD dim, no audit trail&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Locofy LDM&lt;/td&gt;
&lt;td&gt;Large Design Model&lt;/td&gt;
&lt;td&gt;SaaS, design system requires strict Auto Layout&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Figma Make&lt;/td&gt;
&lt;td&gt;Highest fidelity (EPAM benchmark)&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;No public API&lt;/strong&gt;, browser-only, $16/mo seat&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;v0 (Vercel)&lt;/td&gt;
&lt;td&gt;Tight shadcn/Next.js&lt;/td&gt;
&lt;td&gt;Figma link silently downgrades to screenshot (loses metadata)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;These are all great for "single dev makes a pretty page." None give me &lt;strong&gt;multi-page consistency + PRD enforcement + audit log + on-prem + provider swap&lt;/strong&gt;, which is the actual enterprise need.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'd do differently if starting over
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Don't fight LLMs on single-page output&lt;/strong&gt;. Claude with vision is already 80% there. Build the harness around what they're bad at: cross-page consistency and "claimed done."&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Build a deterministic IR earlier&lt;/strong&gt;. I attempted this (Builder.io's Mitosis-style) and abandoned at the first rendering bug. That was the wrong call — the IR is what Builder.io's whole architecture pivots on.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Get visual diff automated&lt;/strong&gt;. I still rely on human visual review. Design2Code (arXiv 2403.03163) shows CLIP-score / CW-SSIM / TreeBLEU as auto metrics — should have wired one in.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Stuff that's open source
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/JiuwenDragon/harness-mini" rel="noopener noreferrer"&gt;https://github.com/JiuwenDragon/harness-mini&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;14 gates as discrete Python scripts under &lt;code&gt;scripts/&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;10 demo fixtures with full codex/claude/gemini traces&lt;/li&gt;
&lt;li&gt;HE evolution log: every iteration with root cause + fix + prediction (87 entries)&lt;/li&gt;
&lt;li&gt;Docs: design rationale + maturity map + workflow&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;MIT license (I should add the file — open to PR).&lt;/p&gt;

&lt;h2&gt;
  
  
  Papers cited
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Constraint Decay (arXiv 2605.06445)&lt;/li&gt;
&lt;li&gt;Lost in the Middle (arXiv 2307.03172)&lt;/li&gt;
&lt;li&gt;Design2Code (arXiv 2403.03163)&lt;/li&gt;
&lt;li&gt;Reflexion (arXiv 2303.11366)&lt;/li&gt;
&lt;li&gt;Handoff Debt (arXiv 2606.02875)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Happy to answer questions in comments. The most useful feedback would be: "what other drift modes have you seen at &amp;gt;5 pages."&lt;/p&gt;

</description>
      <category>claude</category>
      <category>react</category>
      <category>showdev</category>
      <category>tooling</category>
    </item>
  </channel>
</rss>
