@elliotchen100: Thariq from Anthropic’s viral HTML post hit 1.5M reads. On the surface, it’s about formatting aesthetics, but he’s actually outlining a brand-new workflow. Picking out the most technical points. First, HTML isn’t a document; it’s a throwaway editor. Take his example…

X AI KOLs Timeline News

Summary

Analyzes a new AI development workflow shared by Anthropic employee Thariq, highlighting how replacing Markdown with HTML and SVG can dramatically improve multi-agent collaboration and interaction efficiency, offering a model better suited to human-AI synergy in the AI era.

Thariq from Anthropic blew up his article on HTML yesterday, racking up 1.5 million reads. At first glance, it appears to be about formatting aesthetics, but he’s actually outlining a completely new workflow. Here are the most technically insightful points. First, HTML isn’t meant to be a document; it’s a throwaway editor. He gave a classic example: rearranging priorities across 30 Linear tickets. You ask Claude to generate an HTML page where each ticket becomes a draggable card sorted into four columns: Now, Next, Later, and Cut. At the bottom, you add a “Copy as Markdown” button to export the final order and paste it back into Claude Code. This pattern applies to any scenario where “describing things in text is difficult.” Adjusting animation easing curves, colors, cron jobs, or regex patterns—all are an order of magnitude more efficient visually than expressing them in plain text. Second, use an HTML network for specs instead of a single Markdown plan. His workflow goes like this: first, have Claude generate six proposals across different directions, laid out side-by-side in one HTML file for comparison. Pick one to dive deeper into for mockups and data flow diagrams. Finally, write the implementation plan. When starting a new session, feed the entire HTML network as context. The verification agent also reads through this HTML. This means the spec is no longer just a transitional artifact for humans; it serves as shared memory for multi-agent collaboration. Third, SVG is a severely underrated output format. Ask Claude to diagram the token bucket rate-limiting logic as an SVG flowchart, annotate key code snippets inline, and include a “Gotchas” section. One diagram explains a concept an order of magnitude more clearly than 200 lines of Markdown. Fourth, he honestly acknowledges the trade-offs. HTML generation takes two to four times longer than Markdown, and diffs are harder to review. However, given Opus 4.7’s 1M context window, those extra tokens become virtually negligible within the overall context. That’s the crux of his compromise. In a nutshell: Markdown operates on the implicit assumption that “a person will read it from start to finish.” HTML operates on the assumption that “people just want to scan the highlights and jump in to modify things.” The latter perfectly aligns with the reality of human-machine collaboration in the AI era.
Original Article

Similar Articles

@trq212: https://x.com/trq212/status/2052809885763747935

X AI KOLs Following

The article argues that HTML is a superior output format for AI agents compared to Markdown due to richer information density, visual clarity, ease of sharing, and two-way interaction, and shares why the author and others at Claude Code prefer HTML.

@AYi_AInotes: Claude's engineers have completely abandoned Markdown. It's not that Markdown doesn't work well—it's that AI has evolved too fast for it to keep up. Back when AI wrote 10 lines of notes, Markdown was perfect. Now AI can output 1000 lines of plans, complex flowcharts, and complete code reviews all at once—who has the patience to read through a wall of plain text?

X AI KOLs Timeline

Claude's engineers are ditching Markdown for HTML because AI output has grown from 10 lines to 1000 lines, making plain text formats impractical. HTML enables colored tables, SVG flowcharts, and interactive prototypes—significantly improving human-AI collaboration, albeit with 2-4x longer generation times.

@AYi_AInotes: Say a hot take: In the AI era, the most valuable skill is no longer writing code. Being able to explain code clearly will become increasingly important! Becoming increasingly important! @trq212, a senior engineer on the Anthropic Claude Code team, took less than two years to make his technical articles reach stable...

X AI KOLs Timeline

This article explores the importance of technical writing in the AI era, citing the case of Anthropic employee @trq212 who achieved millions of page views through his 'plant first, harvest later' writing methodology, emphasizing the value of sharing real experiences and maintaining a personal voice.

Using Claude Code: The Unreasonable Effectiveness of HTML

Simon Willison's Blog

Simon Willison discusses the effectiveness of using HTML instead of Markdown as AI output format, highlighting benefits like SVG diagrams, interactive widgets, and rich explanations. Includes examples from Thariq Shihipar on Anthropic's Claude Code team and practical prompts for GPT-5.5.