<?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>Forem: Alex Morgan</title>
    <description>The latest articles on Forem by Alex Morgan (@alexmorgan_finwriter).</description>
    <link>https://forem.com/alexmorgan_finwriter</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3904316%2F0d4ee72a-dfb8-4647-ac78-57b2b3607cde.png</url>
      <title>Forem: Alex Morgan</title>
      <link>https://forem.com/alexmorgan_finwriter</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/alexmorgan_finwriter"/>
    <language>en</language>
    <item>
      <title>DeepSeek-TUI v0.8.7: A Rust Terminal Coding Agent With 1M-Token Context</title>
      <dc:creator>Alex Morgan</dc:creator>
      <pubDate>Sun, 03 May 2026 21:57:03 +0000</pubDate>
      <link>https://forem.com/alexmorgan_finwriter/deepseek-tui-v087-a-rust-terminal-coding-agent-with-1m-token-context-189c</link>
      <guid>https://forem.com/alexmorgan_finwriter/deepseek-tui-v087-a-rust-terminal-coding-agent-with-1m-token-context-189c</guid>
      <description>&lt;p&gt;DeepSeek-TUI just shipped v0.8.7 and it is worth knowing about if you run LLMs locally.&lt;/p&gt;

&lt;p&gt;It is a native, single-binary terminal coding agent built specifically around DeepSeek V4's 1M-token context window and prefix caching. Written in Rust. No Python runtime. No Docker. One binary, runs in your terminal.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What makes this different from other terminal AI tools&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Most CLI AI tools are thin wrappers around API calls. DeepSeek-TUI is designed from the ground up to exploit the specific capabilities of DeepSeek V4 Pro:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;1M-token context means it can hold your entire codebase in context during a session&lt;/li&gt;
&lt;li&gt;Prefix caching reduces the cost of repeated calls on large codebases significantly&lt;/li&gt;
&lt;li&gt;Single binary means zero dependency hell&lt;/li&gt;
&lt;li&gt;Rust means it is fast and has predictable memory usage&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Who this is for&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you are running DeepSeek V4 Pro locally (or via API) and doing software development work in the terminal, this is probably the most purpose-built tool available right now.&lt;/p&gt;

&lt;p&gt;It is not trying to be a general-purpose AI assistant. It is specifically designed to be a coding agent that takes full advantage of what DeepSeek V4's architecture can do.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The open-source context&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;DeepSeek-TUI has 2K stars, 80K forks, and 118 contributors. It is actively developed and the codebase is clean. If you want to extend it or build on top of it, the Rust codebase is readable.&lt;/p&gt;

&lt;p&gt;Worth bookmarking if you are in the agentic coding tools space.&lt;/p&gt;




&lt;p&gt;Source: &lt;a href="https://ai-tldr.dev" rel="noopener noreferrer"&gt;ai-tldr.dev&lt;/a&gt; - weekly digest of AI models, tools, and papers.&lt;/p&gt;

&lt;h1&gt;
  
  
  ai #rust #devtools #llm #opensource
&lt;/h1&gt;

</description>
      <category>ai</category>
    </item>
    <item>
      <title>VS Code Quietly Reversed Its Copilot Co-Author Default — and the Dev Community Noticed</title>
      <dc:creator>Alex Morgan</dc:creator>
      <pubDate>Sun, 03 May 2026 21:43:17 +0000</pubDate>
      <link>https://forem.com/alexmorgan_finwriter/vs-code-quietly-reversed-its-copilot-co-author-default-and-the-dev-community-noticed-mol</link>
      <guid>https://forem.com/alexmorgan_finwriter/vs-code-quietly-reversed-its-copilot-co-author-default-and-the-dev-community-noticed-mol</guid>
      <description>&lt;p&gt;Microsoft just reverted the VS Code default that automatically tagged commits with a Copilot co-author trailer — and it took a 1,200-point Hacker News thread to make it happen.&lt;/p&gt;

&lt;p&gt;Here is what went down:&lt;/p&gt;

&lt;p&gt;VS Code shipped a default that added a &lt;code&gt;Co-authored-by: GitHub Copilot&lt;/code&gt; trailer to every commit made with Copilot's help. Developers noticed, did not love it, and the HN thread blew up.&lt;/p&gt;

&lt;p&gt;Microsoft quietly reverted the default to &lt;code&gt;off&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why this matters for developers&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is not really about a commit trailer. It is about consent and transparency in tooling. The AI tools we use are increasingly opinionated about how they want to be credited, logged, and attributed — and most of that happens silently in the background.&lt;/p&gt;

&lt;p&gt;A few things worth thinking about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Attribution vs. liability&lt;/strong&gt; — if your commit says a model co-authored it, who owns that code?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Default-on vs. opt-in&lt;/strong&gt; — the industry trend is to bake AI attribution into tooling by default. This reversal is a rare pushback.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tooling transparency&lt;/strong&gt; — as AI gets deeper into dev workflows, the metadata it attaches to your work matters more than most people realize.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The 1.2K HN score on that thread tells you this touched a nerve. Worth watching how other editors and IDEs handle this going forward.&lt;/p&gt;




&lt;p&gt;Source: &lt;a href="https://ai-tldr.dev" rel="noopener noreferrer"&gt;ai-tldr.dev&lt;/a&gt; — weekly digest of AI models, tools, and papers.&lt;/p&gt;

&lt;h1&gt;
  
  
  ai #webdev #opensource #devtools
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>devtools</category>
    </item>
    <item>
      <title>Where to Find Me Online: Alex Morgan's Complete Profile Directory</title>
      <dc:creator>Alex Morgan</dc:creator>
      <pubDate>Sun, 03 May 2026 19:36:57 +0000</pubDate>
      <link>https://forem.com/alexmorgan_finwriter/where-to-find-me-online-alex-morgans-complete-profile-directory-5027</link>
      <guid>https://forem.com/alexmorgan_finwriter/where-to-find-me-online-alex-morgans-complete-profile-directory-5027</guid>
      <description>&lt;p&gt;Hey DEV community! 👋&lt;/p&gt;

&lt;p&gt;I write and post about AI engineering, LLMs, developer tooling, and everything in between across a &lt;strong&gt;bunch&lt;/strong&gt; of different platforms. Whether you prefer long-form technical deep dives, quick microblog updates, collaborative notes, or curated reading lists — I've got you covered somewhere in this list.&lt;/p&gt;

&lt;p&gt;Here's my &lt;strong&gt;complete profile directory&lt;/strong&gt; so you can follow me wherever you like to hang out online. 🚀&lt;/p&gt;




&lt;h2&gt;
  
  
  📝 Writing &amp;amp; Long-Form Content
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Platform&lt;/th&gt;
&lt;th&gt;Link&lt;/th&gt;
&lt;th&gt;What I post&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;DEV.to&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://dev.to/alexmorgan_finwriter"&gt;alexmorgan_finwriter&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Technical articles on AI engineering, LLMs &amp;amp; developer tooling&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Medium&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://medium.com/p/ff9e843cbfb7" rel="noopener noreferrer"&gt;medium.com/p/ff9e843cbfb7&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;In-depth AI analysis &amp;amp; practical guides&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Blogger (FinVibe)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://fin-vibe.blogspot.com/2026/05/best-ai-dev-tools-roundup-may-2026.html" rel="noopener noreferrer"&gt;fin-vibe.blogspot.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;AI dev tools roundups &amp;amp; curated stacks&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Write.as&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://write.as/makro/the-signal-vs-noise-problem-in-ai-news-and-how-to-solve-it" rel="noopener noreferrer"&gt;write.as/makro&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Minimalist essays on AI signal vs. noise&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Vocal Media&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://vocal.media/stories/launching-ai-tldr-dev-your-weekly-ai-digest-curated-signal-over-noise-ai-models-papers-and-dev-tools" rel="noopener noreferrer"&gt;vocal.media&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Longform AI launch stories &amp;amp; narratives&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Mataroa Blog&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://alexmorganai.mataroa.blog" rel="noopener noreferrer"&gt;alexmorganai.mataroa.blog&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Clean, no-tracking AI writing&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  🧵 Microblogging &amp;amp; Social
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Platform&lt;/th&gt;
&lt;th&gt;Link&lt;/th&gt;
&lt;th&gt;What I post&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Mastodon&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://mastodon.social/@alexmorgannn" rel="noopener noreferrer"&gt;@alexmorgannn@mastodon.social&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Short AI updates, links, hot takes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Tumblr&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.tumblr.com/alexmorgan2026" rel="noopener noreferrer"&gt;alexmorgan2026.tumblr.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Casual AI/dev musings &amp;amp; reblogs&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  📓 Notes &amp;amp; Collaborative Docs
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Platform&lt;/th&gt;
&lt;th&gt;Link&lt;/th&gt;
&lt;th&gt;What I post&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;HackMD&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://hackmd.io/-pNLOXh5T1ylvyXU5y5LwA" rel="noopener noreferrer"&gt;AI Developer Tools Resource Index&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Collaborative Markdown notes &amp;amp; resource indexes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Telegraph&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://telegra.ph/AI-Tools-Reshaping-Developer-Workflows-in-2026-05-03" rel="noopener noreferrer"&gt;AI Tools Reshaping Developer Workflows&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Quick-publish articles &amp;amp; essays&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;JustPaste.it&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://justpaste.it/gz29u" rel="noopener noreferrer"&gt;justpaste.it/gz29u&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Pasted notes &amp;amp; quick references&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Penzu&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://penzu.com/p/a23695733ae1d192" rel="noopener noreferrer"&gt;penzu.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Private-ish journal-style AI notes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Notion&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://titanium-myrtle-fd2.notion.site" rel="noopener noreferrer"&gt;notion.site&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Structured knowledge base &amp;amp; project docs&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  🔖 Curation &amp;amp; Discovery
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Platform&lt;/th&gt;
&lt;th&gt;Link&lt;/th&gt;
&lt;th&gt;What I curate&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Flipboard&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://flipboard.com/@alexmorgan7nng/ai-tools-dev-news-7093okmgy" rel="noopener noreferrer"&gt;AI Tools &amp;amp; Dev News&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Curated AI/ML news magazine&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Wakelet&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://wakelet.com/wake/Q1R-2C9yGUbsgfuPHmeBj" rel="noopener noreferrer"&gt;wakelet.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Saved collections &amp;amp; reading lists&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Mix&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://mix.com/alexmorgan5f3" rel="noopener noreferrer"&gt;mix.com/alexmorgan5f3&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Discovered content worth sharing&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  🧑‍💼 Professional &amp;amp; Community
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Platform&lt;/th&gt;
&lt;th&gt;Link&lt;/th&gt;
&lt;th&gt;Notes&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Quora&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.quora.com/profile/Alex-Morgan-1-3" rel="noopener noreferrer"&gt;Alex Morgan&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Q&amp;amp;A on AI engineering &amp;amp; architecture&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;LinkedIn&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.linkedin.com/in/alex-morgan-328056408/" rel="noopener noreferrer"&gt;linkedin.com/in/alex-morgan-328056408&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;AI engineering, LLMs &amp;amp; developer tooling&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;About.me&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://about.me/morgan.alex" rel="noopener noreferrer"&gt;about.me/morgan.alex&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Central identity hub&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Product Hunt&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.producthunt.com/products/ai-tldr" rel="noopener noreferrer"&gt;AI TLDR&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;My product page for ai-tldr.dev&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  🔗 Link Hubs
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Platform&lt;/th&gt;
&lt;th&gt;Link&lt;/th&gt;
&lt;th&gt;Purpose&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Linktree&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://linktr.ee/alexmorgan_finwriter" rel="noopener noreferrer"&gt;linktr.ee/whitepc.me&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;All my links in one place&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Zaap.bio&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://zaap.bio/whitepcme" rel="noopener noreferrer"&gt;zaap.bio/whitepcme&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Creator page &amp;amp; digital card&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  ☕ Support &amp;amp; Aitleader
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Platform&lt;/th&gt;
&lt;th&gt;Link&lt;/th&gt;
&lt;th&gt;Purpose&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Ko-fi&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ko-fi.com/alexmorgan7367" rel="noopener noreferrer"&gt;ko-fi.com/alexmorgan7367&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Buy me a coffee if my content helped you!&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Bear Blog&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://aitleader.bearblog.dev" rel="noopener noreferrer"&gt;aitleader.bearblog.dev&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Clean, fast AI leadership blog&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  🚀 My Projects
&lt;/h2&gt;

&lt;p&gt;If you haven't already, check out my main projects:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;a href="https://ai-tldr.dev" rel="noopener noreferrer"&gt;ai-tldr.dev&lt;/a&gt;&lt;/strong&gt; — Self-updating weekly digest of AI models, papers, and dev tools. Cut through the noise.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;a href="https://pomegra.io" rel="noopener noreferrer"&gt;pomegra.io&lt;/a&gt;&lt;/strong&gt; — Free fundamental analysis platform built for engineers.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Thanks for reading! Follow me wherever you spend the most time — I try to cross-post consistently across platforms. If you want the highest signal-to-noise AI content, &lt;strong&gt;&lt;a href="https://ai-tldr.dev" rel="noopener noreferrer"&gt;ai-tldr.dev&lt;/a&gt;&lt;/strong&gt; is the best place to start. 🔥&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Drop a comment below with your own profile directory post — I'd love to connect!&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>devjournal</category>
      <category>community</category>
    </item>
    <item>
      <title>From RAG to Agents: Building AI Systems That Actually Work in Production</title>
      <dc:creator>Alex Morgan</dc:creator>
      <pubDate>Sun, 03 May 2026 19:16:57 +0000</pubDate>
      <link>https://forem.com/alexmorgan_finwriter/from-rag-to-agents-building-ai-systems-that-actually-work-in-production-310d</link>
      <guid>https://forem.com/alexmorgan_finwriter/from-rag-to-agents-building-ai-systems-that-actually-work-in-production-310d</guid>
      <description>&lt;p&gt;The AI development world has split into two camps. On one side: teams experimenting with whatever's trending on HuggingFace that week. On the other: teams shipping reliable AI systems to production users.&lt;/p&gt;

&lt;p&gt;The gap between them isn't intelligence or budget. It's systems thinking.&lt;/p&gt;

&lt;p&gt;After documenting this pattern across &lt;a href="https://fin-vibe.blogspot.com/2026/05/best-ai-dev-tools-roundup-may-2026.html" rel="noopener noreferrer"&gt;a running blog on FinVibe&lt;/a&gt;, multiple &lt;a href="https://write.as/makro/the-signal-vs-noise-problem-in-ai-news-and-how-to-solve-it" rel="noopener noreferrer"&gt;Write.as essays&lt;/a&gt;, and the &lt;a href="https://ai-tldr.dev" rel="noopener noreferrer"&gt;weekly ai-tldr.dev digest&lt;/a&gt;, I want to lay out what I've observed separates working AI systems from perpetual proof-of-concepts.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Architecture Evolution: 2024 → 2026
&lt;/h2&gt;

&lt;p&gt;Two years ago, most production AI systems were essentially:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User Input → LLM API Call → Output
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Simple. Brittle. Often good enough.&lt;/p&gt;

&lt;p&gt;Today, that's the failure pattern. The systems that actually work look more like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User Input → Intent Classification → 
  → Agent Router → 
    → [Agent 1: Retrieval] [Agent 2: Execution] [Agent 3: Validation] →
  → Response Synthesis → 
  → Output + Evaluation Signal
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The key additions: evaluation loops, agent specialization, and retrieval that's actually connected to real data.&lt;/p&gt;

&lt;h2&gt;
  
  
  RAG: What Works, What Doesn't
&lt;/h2&gt;

&lt;p&gt;RAG (Retrieval-Augmented Generation) has matured significantly. Here's the practical state of it:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What works:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Hybrid search (keyword + semantic) outperforms pure vector search in most real-world scenarios&lt;/li&gt;
&lt;li&gt;Reranking as a second stage significantly improves precision&lt;/li&gt;
&lt;li&gt;Chunking strategy matters enormously — most teams underinvest here&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What doesn't:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Naive cosine similarity over a single embedding model&lt;/li&gt;
&lt;li&gt;Assuming your development corpus represents your production query distribution&lt;/li&gt;
&lt;li&gt;Skipping evaluation — this is the #1 reason RAG projects fail silently&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For the tooling side, I've tracked the evolution of RAG stacks in &lt;a href="https://hackmd.io/-pNLOXh5T1ylvyXU5y5LwA" rel="noopener noreferrer"&gt;this HackMD resource index&lt;/a&gt; which gets updated regularly.&lt;/p&gt;

&lt;h2&gt;
  
  
  Agent Frameworks: Picking Your Stack
&lt;/h2&gt;

&lt;p&gt;The agent framework landscape has consolidated since 2024. The three frameworks worth your attention right now:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;LangGraph&lt;/strong&gt; — For teams that need stateful, cyclical agent workflows. The graph-based approach makes complex multi-step reasoning much easier to debug and test. Best for: complex research agents, multi-step workflows with conditional branching.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CrewAI&lt;/strong&gt; — For teams thinking in terms of roles and responsibilities. If you can describe your problem as "I need an agent that does X and another that does Y, working together," CrewAI maps well. Best for: document analysis, data enrichment, content pipelines.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AutoGen v2&lt;/strong&gt; — For enterprise teams needing conversation-based multi-agent systems with strong human-in-the-loop capabilities. The Microsoft backing means solid enterprise integration. Best for: code generation, complex reasoning chains, enterprise workflows.&lt;/p&gt;

&lt;p&gt;I published a longer &lt;a href="https://telegra.ph/AI-Tools-Reshaping-Developer-Workflows-in-2026-05-03" rel="noopener noreferrer"&gt;Telegraph analysis of how these tools are reshaping developer workflows&lt;/a&gt; if you want more depth.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Evaluation Problem Nobody Talks About Enough
&lt;/h2&gt;

&lt;p&gt;Here's the uncomfortable truth: most AI systems in production have essentially no evaluation infrastructure. Teams ship prompts into production and measure success by whether support tickets go up.&lt;/p&gt;

&lt;p&gt;This is fixable, and fixing it is the highest-leverage investment most teams can make.&lt;/p&gt;

&lt;p&gt;The minimum viable eval stack:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Offline evals&lt;/strong&gt;: Run your test suite before every deployment. Use &lt;a href="https://paperswithcode.com" rel="noopener noreferrer"&gt;Papers With Code&lt;/a&gt; to understand what benchmarks actually measure.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Online monitoring&lt;/strong&gt;: Track output distributions in production. Catch drift before users do.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Human feedback loops&lt;/strong&gt;: Even 10 labeled examples per week compound into a meaningful dataset.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;EleutherAI's lm-evaluation-harness gives you the open-source offline eval infrastructure. Braintrust gives you a production-grade version with better UX.&lt;/p&gt;

&lt;h2&gt;
  
  
  Following the Signal
&lt;/h2&gt;

&lt;p&gt;If you want to stay current without spending half your week on AI Twitter, a few resources I've found actually useful:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard" rel="noopener noreferrer"&gt;The HuggingFace Open LLM Leaderboard&lt;/a&gt; for standardized model comparisons&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://paperswithcode.com" rel="noopener noreferrer"&gt;Papers With Code&lt;/a&gt; for reproducibility-filtered research&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://thesequence.substack.com" rel="noopener noreferrer"&gt;The Sequence newsletter&lt;/a&gt; for weekly research synthesis&lt;/li&gt;
&lt;li&gt;The &lt;a href="https://wakelet.com/wake/Q1R-2C9yGUbsgfuPHmeBj" rel="noopener noreferrer"&gt;Wakelet archive of curated AI news&lt;/a&gt; from the past few months&lt;/li&gt;
&lt;li&gt;My &lt;a href="https://medium.com/p/ff9e843cbfb7" rel="noopener noreferrer"&gt;Medium piece on the AI noise problem&lt;/a&gt; for the meta-level framework&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And if you want just one thing: &lt;a href="https://ai-tldr.dev" rel="noopener noreferrer"&gt;ai-tldr.dev&lt;/a&gt;. One-paragraph TL;DRs of everything worth knowing that week, with source links and category tags.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Economics of AI Tooling
&lt;/h2&gt;

&lt;p&gt;One dimension that most developer-focused content ignores: the cost modeling. RAG infrastructure, agent API calls, fine-tuning runs — these add up in ways that are hard to predict without a framework.&lt;/p&gt;

&lt;p&gt;I cover the financial modeling side of AI tooling at &lt;a href="https://pomegra.io" rel="noopener noreferrer"&gt;Pomegra.io&lt;/a&gt;, which has a free fundamental analysis resource specifically for engineers trying to understand the numbers.&lt;/p&gt;




&lt;p&gt;If you're working on AI systems and want to compare notes, find me on &lt;a href="https://mastodon.social/@alexmorgannn" rel="noopener noreferrer"&gt;Mastodon (@alexmorgannn)&lt;/a&gt; or via &lt;a href="https://zaap.bio/whitepcme" rel="noopener noreferrer"&gt;the link directory&lt;/a&gt;. Always happy to discuss what's actually working in production vs. what's still experimental.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Also discussed: the launch of ai-tldr.dev on &lt;a href="https://vocal.media/stories/launching-ai-tldr-dev-your-weekly-ai-digest-curated-signal-over-noise-ai-models-papers-and-dev-tools" rel="noopener noreferrer"&gt;Vocal Media&lt;/a&gt;, on &lt;a href="https://www.quora.com/profile/Alex-Morgan-1-3" rel="noopener noreferrer"&gt;Quora&lt;/a&gt;, and in the original &lt;a href="https://titanium-myrtle-fd2.notion.site/Launching-ai-tldr-dev-Weekly-TL-DR-of-New-AI-Models-Papers-Dev-Tools-3549cf89c4c4807aad1dc7c9a0ac2d70" rel="noopener noreferrer"&gt;Notion launch doc&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
    </item>
    <item>
      <title>AI Tool Evaluation Framework for Developers in 2026</title>
      <dc:creator>Alex Morgan</dc:creator>
      <pubDate>Sun, 03 May 2026 19:15:00 +0000</pubDate>
      <link>https://forem.com/alexmorgan_finwriter/ai-tool-evaluation-framework-for-developers-in-2026-1ncl</link>
      <guid>https://forem.com/alexmorgan_finwriter/ai-tool-evaluation-framework-for-developers-in-2026-1ncl</guid>
      <description></description>
    </item>
    <item>
      <title>Launching ai-tldr.dev — A Weekly TL;DR of New AI Models, Papers &amp; Dev Tools</title>
      <dc:creator>Alex Morgan</dc:creator>
      <pubDate>Sat, 02 May 2026 10:35:18 +0000</pubDate>
      <link>https://forem.com/alexmorgan_finwriter/launching-ai-tldrdev-a-weekly-tldr-of-new-ai-models-papers-dev-tools-489i</link>
      <guid>https://forem.com/alexmorgan_finwriter/launching-ai-tldrdev-a-weekly-tldr-of-new-ai-models-papers-dev-tools-489i</guid>
      <description>&lt;h2&gt;
  
  
  Why I built ai-tldr.dev
&lt;/h2&gt;

&lt;p&gt;Keeping up with AI in 2026 is a part-time job. Every week brings a new frontier model, a new agent framework, a new evals paper, a new "this changes everything" demo. Most of it is noise. Some of it is genuinely worth your attention.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://ai-tldr.dev" rel="noopener noreferrer"&gt;ai-tldr.dev&lt;/a&gt; is my attempt to filter the firehose into a single, scannable digest:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;New models&lt;/strong&gt; — open and closed weights, with the actual benchmarks that matter&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Papers&lt;/strong&gt; — the few each week that are likely to influence what you ship&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dev tools&lt;/strong&gt; — SDKs, agent frameworks, eval harnesses, RAG stacks, inference runtimes&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Major launches&lt;/strong&gt; — when something actually moves the field, not just the hype cycle&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each entry is a one-paragraph TL;DR with a link to the source, tagged by category (PAPER / MODEL / TOOL / MAJOR) and dated so you can skim a week in a couple of minutes.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who it's for
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Engineers who ship LLM features and need to know what's new without reading 40 arxiv abstracts a week&lt;/li&gt;
&lt;li&gt;Founders evaluating which models / providers / agent frameworks to bet on&lt;/li&gt;
&lt;li&gt;Researchers who want a quick map of "what shipped this week" outside their sub-field&lt;/li&gt;
&lt;li&gt;Anyone who's tired of doom-scrolling AI Twitter for signal&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What's already in there
&lt;/h2&gt;

&lt;p&gt;Recent picks include DeepMind's Talker/Planner dual-agent clinician, new open-weight reasoning models, agent benchmark releases, and a steady stream of inference-stack and eval-tooling launches. Categories are color-coded so you can jump to just the model releases or just the papers.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it's built
&lt;/h2&gt;

&lt;p&gt;The pipeline ingests a curated set of sources (arxiv, lab blogs, GitHub releases, official launch posts), de-duplicates, and surfaces only items that pass a relevance bar. No press-release rewrites, no LinkedIn-flavored hype.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;👉 &lt;strong&gt;&lt;a href="https://ai-tldr.dev" rel="noopener noreferrer"&gt;ai-tldr.dev&lt;/a&gt;&lt;/strong&gt; — bookmark it, check it once a week, save yourself 5 hours.&lt;/p&gt;

&lt;p&gt;If you also care about markets and finance, I run &lt;a href="https://pomegra.io" rel="noopener noreferrer"&gt;pomegra.io&lt;/a&gt; on the same "signal over noise" principle — including a free book on &lt;a href="https://pomegra.io/learn/library/track-b-stock-market-core/fundamental-analysis/" rel="noopener noreferrer"&gt;fundamental analysis&lt;/a&gt; for engineers who want to learn how to actually read a 10-K.&lt;/p&gt;

&lt;p&gt;Feedback welcome — what would make this more useful for your workflow?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>news</category>
      <category>showdev</category>
    </item>
    <item>
      <title>New Book: Fundamental Analysis for Beginners (Free, on Pomegra)</title>
      <dc:creator>Alex Morgan</dc:creator>
      <pubDate>Sat, 02 May 2026 10:13:51 +0000</pubDate>
      <link>https://forem.com/alexmorgan_finwriter/new-book-fundamental-analysis-for-beginners-free-on-pomegra-5h6j</link>
      <guid>https://forem.com/alexmorgan_finwriter/new-book-fundamental-analysis-for-beginners-free-on-pomegra-5h6j</guid>
      <description>&lt;p&gt;I just published a free book on Pomegra called &lt;strong&gt;Fundamental Analysis for Beginners&lt;/strong&gt;, and I wanted to share it with the dev/finance crowd here.&lt;/p&gt;

&lt;p&gt;👉 Read it: &lt;a href="https://pomegra.io/learn/library/track-b-stock-market-core/fundamental-analysis/" rel="noopener noreferrer"&gt;https://pomegra.io/learn/library/track-b-stock-market-core/fundamental-analysis/&lt;/a&gt;&lt;/p&gt;

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

&lt;p&gt;It takes you from "I can read a 10-K" to "I can defend a price target" — without assuming any prior valuation background. Every framework, ratio, and model is introduced in plain English with a worked numeric example before any abstraction.&lt;/p&gt;

&lt;p&gt;The three pillars: &lt;strong&gt;business → financials → valuation&lt;/strong&gt;, and how they fit together.&lt;/p&gt;

&lt;p&gt;The ratio toolkit:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Profitability: ROE, ROIC, margins&lt;/li&gt;
&lt;li&gt;Liquidity &amp;amp; solvency: current ratio, debt/EBITDA, interest coverage&lt;/li&gt;
&lt;li&gt;Efficiency: turnover, days outstanding&lt;/li&gt;
&lt;li&gt;Valuation: P/E, EV/EBITDA, P/FCF, PEG, dividend yield&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A gentle, end-to-end walkthrough of &lt;strong&gt;discounted cash flow&lt;/strong&gt; — discount rate, projection, terminal value, sensitivity — including when DCF actually adds value and when it does not.&lt;/p&gt;

&lt;p&gt;A disciplined process for &lt;strong&gt;comparables analysis&lt;/strong&gt;: building a peer set, adjusting for size and growth, and using football-field charts.&lt;/p&gt;

&lt;p&gt;A forensic toolkit for &lt;strong&gt;earnings quality&lt;/strong&gt;, governance red flags, and the most common analyst mistakes.&lt;/p&gt;

&lt;h2&gt;
  
  
  20 worked valuations
&lt;/h2&gt;

&lt;p&gt;The last chapter is twenty real-company valuations — Apple, Microsoft, Berkshire, Costco, JPMorgan, Tesla, Disney, Exxon and more — so you see the frameworks in action on businesses you already know.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who it's for
&lt;/h2&gt;

&lt;p&gt;If you've read the basics on financial statements and want to graduate from "the company exists" to "the company is worth $X per share," this is for you.&lt;/p&gt;

&lt;p&gt;Free to read, no signup. Feedback welcome.&lt;/p&gt;

&lt;p&gt;🔗 &lt;a href="https://pomegra.io/learn/library/track-b-stock-market-core/fundamental-analysis/" rel="noopener noreferrer"&gt;https://pomegra.io/learn/library/track-b-stock-market-core/fundamental-analysis/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Also building &lt;a href="https://ai-tldr.dev" rel="noopener noreferrer"&gt;https://ai-tldr.dev&lt;/a&gt; (daily AI release digest) if you're into that side too.&lt;/p&gt;

</description>
      <category>finance</category>
      <category>investing</category>
    </item>
    <item>
      <title>Robinhood Shares Slide After Q1 2026 Double Miss and Trump Account Cost Warning</title>
      <dc:creator>Alex Morgan</dc:creator>
      <pubDate>Wed, 29 Apr 2026 12:13:41 +0000</pubDate>
      <link>https://forem.com/alexmorgan_finwriter/robinhood-shares-slide-after-q1-2026-double-miss-and-trump-account-cost-warning-3o3o</link>
      <guid>https://forem.com/alexmorgan_finwriter/robinhood-shares-slide-after-q1-2026-double-miss-and-trump-account-cost-warning-3o3o</guid>
      <description>&lt;h2&gt;
  
  
  Robinhood Stumbles in Q1 2026: Earnings Miss, Revenue Miss, and a Trump Account Cost Warning
&lt;/h2&gt;

&lt;p&gt;Robinhood (HOOD) is having a rough week. Shares slid sharply after the brokerage reported a double miss for Q1 2026 — falling short on both earnings and revenue — and added a fresh warning about rising costs tied to the rollout of its new "Trump Account" product line. For traders, fintech watchers, and developers building on top of brokerage APIs, the report is worth a careful look.&lt;/p&gt;

&lt;p&gt;You can read the full breakdown here: &lt;a href="https://pomegra.io/news/robinhood-shares-slide-after-q1-2026-double-miss-and-trump-account-cost-warning" rel="noopener noreferrer"&gt;Robinhood Shares Slide After Q1 2026 Double Miss and Trump Account Cost Warning&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  What happened
&lt;/h3&gt;

&lt;p&gt;Robinhood's Q1 2026 results came in below Wall Street consensus on both the top and bottom lines. Management also flagged elevated operating expenses linked to onboarding, compliance tooling, and infrastructure for its newly launched Trump-branded account products. Investors reacted quickly, sending the stock lower in after-hours trading and continuing the slide into the next session.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why it matters for fintech and developers
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Cost structure under pressure:&lt;/strong&gt; Building and maintaining new account types is not just a marketing exercise. It involves identity verification, KYC/AML pipelines, custody arrangements, and ongoing monitoring — all of which add real engineering cost.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Volume vs. monetization:&lt;/strong&gt; Even when retail trading volumes hold up, payment for order flow, options activity, and net interest income can move independently. Q1 highlighted how sensitive Robinhood's model still is to those mix shifts.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Product expansion risk:&lt;/strong&gt; Rapidly launching themed or politically branded products can drive headlines and signups, but it also raises regulatory and reputational questions that ripple back into the cost line.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Key takeaways
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;A double miss plus a forward cost warning is the kind of combination the market rarely forgives in a single quarter.&lt;/li&gt;
&lt;li&gt;Retail-focused brokers are increasingly being judged on operating leverage, not just user growth.&lt;/li&gt;
&lt;li&gt;For anyone building trading tools, dashboards, or analytics on top of broker data, expect more volatility in HOOD-related signals in the coming weeks.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Read the full analysis
&lt;/h3&gt;

&lt;p&gt;For the full numbers, management commentary, and what analysts are saying about guidance, check out the complete article on Pomegra:&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://pomegra.io/news/robinhood-shares-slide-after-q1-2026-double-miss-and-trump-account-cost-warning" rel="noopener noreferrer"&gt;Robinhood Shares Slide After Q1 2026 Double Miss and Trump Account Cost Warning&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Disclaimer: This post is for informational purposes only and is not investment advice.&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
