AI Digest.

Autonomous Marketing Agents and Model Routers Drive an AI Infrastructure Boom

Developers are shifting from basic AI prompting to building complex autonomous agents, highlighted by new self-improving marketing systems. Meanwhile, attention is turning toward the underlying infrastructure required to manage these agents, including intelligent model routers, harnesses, and decentralized compute networks.

Quick Hits

  • Autonomous marketing agents promise full automation: Tools like the "Helena" agent highlighted by @SeijinJung and a Claude-based setup detailed by @PrajwalTomar_ claim to generate millions of views by writing, grading, and optimizing their own content without human intervention.
  • Harnesses and model routing gain enterprise traction: @sydneyrunkle points out that Stripe built its internal "Kai" platform using Deep Agents, while @MatthewBerman highlights "Not Diamond Code," a router that claims to reduce API costs by up to 65% by directing tasks to the most efficient model.
  • Decentralized and personal AI infrastructure expands: Users are finding creative ways to run models outside centralized clouds. @jack highlights "Buzz," a system for decentralized mesh inference using idle gaming PCs, while @yoheinakajima explores private AI assistants with their own phone numbers.
  • A compelling theory for why reasoning models work: @NaveenGRao surfaces an intuitive explanation for why chain-of-thought prompting succeeds, attributing it to a model's ability to verify possible hidden probabilities through constant backtracking.

Self-Improving Marketing and Enterprise Deployment

The push toward fully autonomous digital workers continues, with marketing and content generation leading the charge. @SeijinJung spotlights "Helena," billed as a self-improving AI marketer that reviews its own ad and content performance, kills failing campaigns, and automatically optimizes successful ones. Echoing this hands-off trend, @PrajwalTomar_ breaks down a system by @Sabrina_Ramonov that allegedly generated 41 million views in 30 days using a Claude agent wired directly to content scheduling APIs. @floriandarroman takes a similar approach, suggesting users can hand off programmatic SEO guides to an AI agent overnight to wake up to new Google customers.

Bridging these autonomous agents to human workflows is also maturing. @olvrgln highlights the "Channels SDK," which allows any agent to natively integrate into platforms like Slack, WhatsApp, and Microsoft Teams with generative UI support. On the enterprise front, @DanielNealAdler observes that nearly every major company is currently building an internal AI knowledge base, pointing to a technical writeup from Cerebras as a prime example.

Architecture Focus: Routing, Sandboxes, and Latency

As agents grow more capable, the software controlling them is becoming a distinct market. @sydneyrunkle emphasizes a bet that future companies will be built on agent harnesses, pointing to a report that Stripe built its "Kai" platform using LangChain's Deep Agents in just one week with a single engineer. To optimize these harnesses, @MatthewBerman discusses "Not Diamond Code," an intelligent model router that selects the best model and reasoning effort for specific coding steps to cut costs significantly without losing quality.

Building robust agents requires strong underlying infrastructure. @larsencc reflects on the viral success of an article detailing secure, scalable agent sandbox infrastructure, noting that foundational architectural concepts are still entirely new to many developers. Outside of machine learning, @BrettHarrison shares a deep dive into latency optimization from his time at Jane Street, detailing how zero-allocation OCaml and kernel bypasses can radically speed up core trading systems.

Developers are also refining how they prompt and understand these models. @NaveenGRao amplifies a compelling theory on chain-of-thought reasoning, suggesting that models succeed not just by thinking longer, but by continuously generating new opportunities to "hit the target" and verifying the best path. On a practical level, @mattpocockuk shares a new addition to his global Claude configuration, instructing the model to read context files and speak exclusively in ASD-STE100 Simplified Technical English to ensure highly standardized outputs.

Sovereign Networks and Distributed Hardware

While cloud providers push enterprise solutions, a robust community is forming around local, decentralized AI. @jack highlights "Buzz," a platform enabling distributed mesh inference that allows users to power AI agents using idle hardware they already own. @Hikari_07_jp showcases this DIY spirit by spotlighting @net_termina, who claims to have built a fully sovereign, multi-GPU AI platform with custom agents in just four months without prior coding knowledge.

Cloud providers are simultaneously working to make open models more accessible. @mylifcc shares an announcement from Cloudflare revealing how they optimized top-tier open models like Kimi and GLM to run faster and cheaper without losing accuracy. For personal productivity, @yoheinakajima discusses "Zinley," an AI voice assistant that operates via its own private phone number and inbox, functioning as a true extension of the user across all their devices.

Governance, Careers, and Tangential Tech

The broader tech ecosystem continues to grapple with the implications of advanced AI. @schisofrenia highlights the launch of "Pax Machina," a new publication dedicated to designing functional institutions for an AGI era rather than just regulating the software itself. Developer careers are also shifting in the current climate; @devagrawal09 notes that following recent layoffs at Redis, community advocate @guyroyse is going independent to offer consulting on AI-assisted development.

Other corners of tech saw notable updates. @jaredwray posted an apologetic update regarding ongoing unresponsiveness from GitHub and NPM. @waitbutwhy shared a highly positive review of a massive 5,000 square foot "Holodek" VR experience in Austin that has attracted the attention of former Oculus executives. Finally, @Andercot pointed to an update from Terraform Industries, where @CJHandmer claims the team successfully produced hydrogen directly from solar power at a cost below $2 per kilogram, pushing toward a goal of making synthetic fuels cheaper than mined hydrocarbons.

Practical Takeaway

With the conversation rapidly shifting toward agent harnesses and sandboxes, developers should prioritize researching intelligent model routers and lightweight infrastructure before investing heavily in single-model workflows. Investigate whether integrating a routing layer can dynamically manage your specific latency and token-limit requirements, allowing you to leverage cheaper models for basic steps and reserving expensive reasoning models only for highly complex tasks.

Sources

L
lifcc @mylifcc ·
绝了!Cloudflare直接把Kimi和GLM这两大顶级开源模型优化到起飞! 又快又便宜,精度还不掉!中国模型出海部署直接降维打击! 技术党速看这篇神文
C CloudflareDev @CloudflareDev

Kimi and GLM are some of the best open models available. They're also some of the hardest to serve efficiently. Check out this writeup to learn how we're making them faster and cheaper without losing accuracy. https://t.co/X1ak2QsGeC

F
Florian Darroman @floriandarroman ·
You can literally: 1. send this to your AI agent 2. go to sleep 3. wake up to customers from Google
B borjafat @borjafat

7 Step Claude Buy-Intent Parasite pSEO Guide (20,3 Million Clicks in 12 Months)

B
Brett Harrison @BrettHarrison ·
In 2015 I formed a small group of engineers at Jane Street to rebuild the firm’s core trading system from the ground up, and we ended up cutting latency by two orders of magnitude. Some of the techniques we used, relevant for algorithmic trading systems and exchanges today: Zero allocation: Whenever a program allocates memory for an object on the heap, the runtime pays a steep penalty in latency. The simplest solution is to avoid memory allocation entirely. Jane Street famously uses OCaml, a strongly typed programming language that by default produces garbage collected by a dynamic collector. Most other firms use languages with manual memory management, but it was a strict part of Jane Street’s tech culture that all risk-sensitive code had to be written in OCaml. It took a collaborative effort across multiple groups within Jane Street’s technology org to create zero-allocation core libraries, combining the type safety of a functional programming language with the memory profile of a language like C. We built the new main trading loop in this hybrid OCaml/C-style, producing zero new allocations in the critical path from tick to trade. In modern languages like Rust, it is substantially easier to achieve precise memory management while still benefiting from type safety and compile-time guarantees. Kernel bypass: A primary goal of a low-latency trading system or exchange is to pull a network packet containing market data or order flow through the network card’s interface and into the program’s memory space as fast as possible. The standard Linux OS kernel uses slow abstractions to support a wide variety of network drivers, at the expense of the entire system’s end-to-end latency. When we started with an empty program that contained no business logic and only forwarded packets through when received, the end-to-end latency was already too slow. To fix this issue, we employed a standard practice in the HFT industry in which we bypassed the OS’s kernel stack entirely by leveraging our network card vendors’ proprietary APIs to DMA packets straight from the NIC into memory. This technique brought our empty-packet-forwarding baseline into the latency regime we needed in order to build out the rest of the trading, risk, and protocol code. Local IPC: Kernel bypass is necessary when reading routed packets off a network from a third party such as another exchange or client connection. When communicating between internal instead of external processes, the fastest transports avoid network stacks entirely. Processes within the same box can transfer messages using shared memory or Unix domain sockets. This allowed us to continue with our familiar process boundaries for separable components without sacrificing significant performance. We had to write custom logic to emulate many of the features of network- and transport-layer protocols, with the result of creating a reusable, zero-overhead IPC mechanism. Working on this problem was one of the most intellectually rewarding experiences of my early career. The above latency optimization techniques are fairly commonplace in the HFT trade but hard to learn outside the industry setting. Half of our team at Architect comes from Jane Street and other trading firms, and we value using our domain knowledge to build exchanges for the public rather than trading software that never leaves an HFT’s walls.
J
jack @jack ·
mesh inference with buzz
T tlongwell_bzz @tlongwell_bzz

Have a gaming PC collecting dust? A homelab sitting at .1, .1, .1? You can power your Buzz agents, and your community's, with the hardware you already own. GPU matchmaking for your agents. Neighborly, distributed inference lives in Buzz. Here's how https://t.co/4oEAaT2Ae1

S
Sydney Runkle @sydneyrunkle ·
we're betting that companies are going to be built on harnesses stripe is doing this w/ deepagents!
L LangChain @LangChain

"My @Stripe career is divided into before and after Kai." Stripe built Kai, their Knowledge AI Platform, with Deep Agents in one week with just one engineer. Here’s the full story: https://t.co/CIFbtJ46fQ

H
Hikari∣LocalLLM⚡ @Hikari_07_jp ·
Killy became one of my most followed accounts in just one day. Like me, he built a home lab in months without knowing how to code. He completes ultra-precise water-cooled GPU builds and shares a lot of information. He's also happy to answer questions. Reaspect🫶
N net_termina @net_termina

4 months ago I had a 2-day-old baby girl and didn’t know what LLM meant I didnt know how to code Today I run a fully sovereign multi-GPU AI platform with custom agents, cryptographic execution rail, and wake word I trained myself. Here’s the honest path(I still don’t how to code) https://t.co/4enDZMahjV

S
Seijin Jung @SeijinJung ·
1.8m views in 24 hours 🤯🤯 here's a detailed research article we published to share more about the massive technical progress we're making we envision a world where everyone will have a self-improving marketing agent running for them to grow their business research paper here: https://t.co/Ff2ThsAxce
S SeijinJung @SeijinJung

introducing Helena, the world's first self-improving AI marketer. $10M in sales driven for 20,000 businesses already. everyone's shipping an AI that just makes more slop: so we went further. Helena grades her own work, and rebuilds the ones that miss - including the ones she built. what she does: ➤ runs loops to optimize Meta/Google ads & social ➤ drafts SEO content that ranks, straight to WordPress/Webflow/Framer ➤ optimizes emails in Klaviyo/Mailchimp/Brevo ➤ sends you a daily brief: what worked, what she's changing real numbers: ➤ grew organic traffic 35%+ for hundreds of brands ➤ 2x-ed a DTC brand's sales in 5 weeks ➤ scaled a dead ad account from $0 to $10k/mo ➤ drove $40k email revenue in 6 weeks 100+ skills. 3,000+ integrations. purpose-built by marketers who actually scaled hundreds of businesses. just your url. all done in less than 3 minutes. try it now 👇 https://t.co/LbKm7d2Fjk

M
Matthew Berman @MatthewBerman ·
Model routing in any harness, including Claude Code. Not Diamond is an incredible team, I'm proud to be an investor.
T tomas_hk @tomas_hk

Today we’re announcing Not Diamond Code, the world’s most powerful intelligent model router for long-horizon coding agents. Not Diamond works with any gateway or harness, including Claude Code, to select the best model and reasoning effort for each step, reducing costs by 20-65% without impacting quality.

J
Jared Wray @jaredwray ·
So far no response from @github or @npmjs. I am really sorry everybody.
Y
Yohei @yoheinakajima ·
this is a really clean and unique ai tool that acts more like an extension of you took me 15 min to set up a custom ai voice assistant w/ it’s own # that also picks up my calls when my phone is off and emails me summaries (it can do more) yes we ended up investing @untappedvc :)
K khoi_danny @khoi_danny

Introducing Zinley — AI with its own phone number and inbox, tied only to you. Not a shared bot. Your private line. Your private email. Your computer. Same agent on call, email, desktop, web, phone, iMessage — reaches the device it needs, not just the chat history. Watch it take a call, chase a thread, and finish work while you’re offline.

P
Prajwal Tomar @PrajwalTomar_ ·
Okay, this is the first AI content setup I've seen that actually closes the loop. Sabrina Ramonov (founder of Blotato) runs all her content solo, and her Claude agent is pulling 41M cross-platform views in 30 days. She went 0 to 3M followers in 2 years on $0 ads. Most AI content tools stop at "here's your draft." You still grade it, schedule it, and publish it by hand. Here's her full setup: → connect Claude to Blotato → install 7 free Claude skills (open sourced, no email gate) → write, grade, and schedule your first post from the same agent The skills do the real work: content-coach, post-writer, post-grader, viral-hooks, repurpose, brand-brief, post-scheduler. What sold me: it's built for agents. Blotato ships an LLM-readable API spec, so Claude Code, Codex, or Hermes can run the whole thing end to end. She breaks down the exact system in the piece. Worth the full read. (clip attached is a Claude Code agent-workflow talk worth watching alongside this.)
S Sabrina_Ramonov @Sabrina_Ramonov

How my Claude agent got 41 million views in 30 days. (Full step-by-step guide)

S
sof 𓋹 @schisofrenia ·
!!! this is the federalist papers for the AGI era
P PaxMachinaMag @PaxMachinaMag

Powerful AI will change our institutions. Yet most of our attention is on aligning or regulating AI, while treating our institutions as fixed. Introducing Pax Machina: a new publication about the institutions we need for powerful AI. It is edited by @MaxKronerDale, @sebkrier, @NoemiDreksler, @LiamPatell, @chelcott9, @synchroaphasia, @ryan_t_lowe, @edelwax, and @klingefjord. The editorial board consists of Peter Railton, @sethlazar, @saffronhuang, @AmmannNora, @xuanalogue, @IasonGabriel, @hamandcheese, and @deanwball. Our goal is to seed rigorous debate about what a world of humans and powerful AI could and should look like. We will publish proposals for new institutions, counterproposals, well-justified design principles, and analyses that change how a class of institutions should be designed.

O
Oliver @olvrgln ·
This is more valuable than most new models and harnesses tbh
A ataiiam @ataiiam

🚀 Introducing the 𝙲𝚑𝚊𝚗𝚗𝚎𝚕𝚜 𝚂𝙳𝙺 Bring any Agent to any Channel. Slack, MS Teams, WhatsApp, and more. A significant jump from the state of the art across every dimension. With support for: → Generative UI → Streaming replies → User-based auth → Per-user learning Try it live: https://t.co/N3nIRDebKf GitHub: https://t.co/3Z185uYzkg

N
Naveen Rao @NaveenGRao ·
That's one of the best explanations I've seen for why CoT works
L lu__jasper @lu__jasper

It took me a long time to build an intuition for why CoT works. My thinking was always.. if the model can predict it downstream of 10k thinking tokens, it should have been able to predict it from the outset too. My intuition now is: - During inference, the correct paths are indeed somewhere in the hidden states, represented purely as probabilities - However, in the process of sampling, we're forced to materialize just one path. This is destructive -- a 30% chance of ending up at the answer can become 0 if we sample the wrong token. - The constant backtracking reasoning models do protect against this. Every "wait" or "but" is another chance for a shot on target. - By the time models exhaust their reasoning budget, they've already seen a bunch of possible answers - And since these models are also generally better at verifying answers than generating them, the chances of choosing the correct path, conditioned on this prefix, are much higher than it was at the start.

M
Matt Pocock @mattpocockuk ·
Experimenting with a rare addition to my global CLAUDE.md: "Always talk in ASD-STE100 Simplified Technical English. Always read CONTEXT.md files, and use their ubiquitous language."
A
Andrew Côté @Andercot ·
The simple fact is that if @TerraformIndies can make hydrogen for <$1 per kilogram, it becomes cheaper to make hydrocarbons from sunlight and air than mine them out of the ground. (This also makes Casey a decabillionaire)
C CJHandmer @CJHandmer

Last week the hydrogen electrolyzer team @terraformindies pulled off yet another first, the sustained production of >99.9% pure H2 from our vertically integrated, California-manufactured electrolyzer stack while it was coupled directly to a solar array at our Muroc desert test site. WTAF? Most commercial electrolyzers need carefully conditioned power from expensive battery-meditated backup systems. Ours runs directly off the sun. Clouds pass, the day turns to night, and we maintain purity from a stack whose Bill of Materials cost is well below $100/kW. Terraform's single-minded focus on capex reduction has allowed us to convert sunlight to hydrogen in an unprecedented demo at a cost below $2/kg. If that wasn't enough, we have a crystal clear plan of steady execution to push that cost below $1/kg in the coming years. Rather than linger on this point in response to experts-with-spreadsheets who said this was not only beyond my team, it was forbidden by known laws of physics, let me tell you a bit about how we actually pulled this off. We started building this test site in March. Once the panels and electrics were in place the CO2 team were the first to demonstrate production on site. Close behind them the electrolyzer team planned the logistics necessary to project substantial operational ability into a hostile test site in the middle of nowhere. It's no good to find you're missing a wrench half way through the day! Much of the test prep was completed before dawn, when the panels go live. The sun came up and the stack immediately started splitting water into hydrogen and oxygen. The team carefully monitored purity and flammability as the sun climbed through the sky. As designed, the stack warmed up and conducted even more power, maintaining solid production until late afternoon when the setting sun shaded the panels. Terraform's synthetic fuel system is uniquely designed to follow the sun and extract the maximum possible value from cheap solar panels. Hydrogen is a pernicious molecule. It leaks through and embrittles metals, burns almost invisibly at a wide range of mixtures in air, burns hot and fast and can easily undergo detonation transition, and has about half a dozen other spookily dangerous properties. My advice is to never work with it unless you absolutely have to. The Terraformer produces and consumes H2 in one compact discrete area with a minimum of complexity and fuss, and as expected this demo was completed in accordance with our rigorous safety standards and no unscheduled excitement! This successful demonstration was also a profound milestone for the team after a testing anomaly last December compelled us to finally rip off the bandaid and move decisively towards the "future design" with half the parts but considerable complexity in assembly. No-one else makes electrolyzers this way and we, more than anyone, know exactly why. And also how to do it anyway, translating directly into a unique cost advantage. A huge congratulation to Ken, Sherman, @ckalitin, Nikhil, Abdullah, and Aaron for their successful test campaign. Terraform's hydrogen and CO2 are the chemical precursors for synthetic methane and methanol, which we make in our own synthetic fuel reactor. Combined, we make oil and gas out of sunlight and air. We are breaking the geological and geographical monopolies on oil production. In the limit, Terraform will deploy these electrolyzers by the millions and they will all be plug-and-play with solar PV arrays. The Muroc smoke test campaign is far from over. We will win!

T
Tim Urban @waitbutwhy ·
I tried this in Austin after hearing it was the most advanced VR experience out there (wasn't interested in the residences myself). It was pretty incredible. Check it out if you're in the Bay Area.
J jcoon1800 @jcoon1800

We built a 5,000 SF Holodeck for our own use at Four Seasons Lake Austin. It's so far ahead of other VR that John Carmack (former CTO at Oculus) and Meta's CTO have flown to Austin to see it. We have it set up in Mountain View this week. 6-min film previews the places we visit in the Holodeck: https://t.co/trbLJidbYh If you’re thinking about moving to Austin and want to visit the Mountain View Holodeck before August 7th: rsvp@lakeaustinresidences.com

D
Dan Adler @DanielNealAdler ·
Every. single. enterprise company I talk to is building (or already has) one of these right now
C cerebras @cerebras

How we built our knowledge base

D
Dev Agrawal @devagrawal09 ·
Snatch this guy up while he's still available Very few people know developer communities better than Guy
G guyroyse @guyroyse

I'm available. Yep. Like so many others, I was a casualty of the "reduction in force" that Redis executed a couple of weeks ago. We just call them "layoffs" where I come from, but language is gonna inflate. George Carlin would be proud. I'm not angry, although I was a bit shell-shocked when it happened. This is the first time in my career that I have been let go for any reason. It's been a new experience for me and has taken some time to process. It shattered an illusion of certainty that I had—that the job would only end when I left it and the paychecks would always come. Of course, I always knew logically this was false, but things aren't really real until they are. I'm glad to have had this illusion shattered. I think this is called "growth". And this shattering has led to an epiphany. I've spent my entire career as an employee. Beholden to companies big and small to help make their lines go up. Coding and speaking and teaching in exchange for a salary to pay for the mortgage and the bills and a retirement. I have been very blessed, and I am very grateful. I have a retirement account and an iPhone and a place to call home. I love the coding and speaking and teaching that have funded these wonderful things. I love to help people in their efforts to make their lines go up. But I've always wanted to work for myself. To help people more directly. So I'm gonna give it a shot. I'm going independent. Perhaps you need some help? I can help you build applications—AI-powered or not. I can reach, teach, and engage developer communities and get your solution in front of them. I can embed with your teams and teach them AI-assisted development and Agile engineering practices like TDD and pair programming. And if you're thinking about using Redis, I can help with that too. I'm available. Connect with me here on X, send a message, or check out my website at https://t.co/eGj7rRNvHp.

L
Larsen Cundric @larsencc ·
Funny thing about this article... I thought this was just another architecture doc. Obvious stuff, everyone runs agents this way. Greg pushed me to write it up anyway, said it might not be obvious to everyone. And 1.1M views later I think he had a point. Sometimes the things that feel obvious to you are usually the things worth writing down.
L larsencc @larsencc

How We Built Secure, Scalable Agent Sandbox Infrastructure