Wednesday, 24 June 2026

The Deep Feed

Intelligence, Clarity, and the Absurdity of Being

56 min read · 5 pieces
In this issue
01 The End of the Proprietary Moat 12 min
02 The Clarity Advantage 10 min
03 The Agentic Morning 8 min
04 The Geometry of Life 9 min
05 The Unoptimisable Human 7 min
Editor's Letter

Tonight, we examine the shifting boundaries of what it means to work, to lead, and to exist. From the plummeting cost of machine intelligence to the biological necessity of beauty, these pieces explore the friction between the systems we build and the lives we lead.

01 Lenny's Newsletter

The End of the Proprietary Moat

How open-weight models are breaking the monopoly on intelligence

By Claire Vo · 12 min read
Editor's note: The era of paying a premium for 'frontier' models is ending. This is how the economics of agency change overnight.

The economics of intelligence are changing. For the past two years, the industry has operated on a model of high-margin, proprietary gatekeeping. If you wanted the best reasoning, you paid the 'frontier tax' to companies like Anthropic or OpenAI. But a new class of models is making that tax harder to justify. Claire Vo recently put GLM 5.2, an open-weight model from Z.AI, through a series of rigorous tests within a live production codebase. The results suggest that the gap between the closed giants and the open alternatives is closing faster than most predicted.

The $3.36 Experiment

Vo’s testing was not a theoretical benchmark exercise. She deployed GLM 5.2 against four real-world engineering tasks: a codebase architecture audit, a UI redesign, and a 45-minute autonomous session hunting bugs via Sentry and Vercel logs. The cost for roughly 6 million tokens was $3.36. This is a fraction of what a comparable run on Claude Opus would cost. More importantly, the model delivered a prioritized bug-fix dashboard and a landing page redesign that matched an existing design system on the first attempt. It proved that high-level reasoning is no longer the exclusive property of the closed-source elite.

When intelligence becomes a commodity, the value shifts from the model itself to how you orchestrate it.

The shift toward open-weight models offers more than just cost savings; it offers vendor independence. In a proprietary ecosystem, you are at the mercy of a provider's pricing, their latency, and their refusal to allow certain types of data processing. Open weights allow developers to host models locally or on private infrastructure, ensuring that their intellectual property remains within their own walls. For an agency owner, this means the ability to build custom, high-performance tools without the recurring overhead of a subscription-based intelligence layer.

Key findings from the GLM 5.2 test:
  • Architecture audits can be automated with high accuracy in Next.js environments.
  • Autonomous bug-hunting is viable when the model has access to real-time logs.
  • Design system adherence is possible without manual prompting for every component.
  • The cost per million tokens is dropping by orders of magnitude.

There are still friction points. The model struggled in specific edge cases of codebase exploration, and the setup requires more technical heavy lifting than simply hitting an API endpoint. You have to connect it to your environment via tools like Cursor or Claude Code. However, the trade-off is becoming clear. The effort required to manage an open-weight model is being outweighed by the massive reduction in operational costs and the increase in technical autonomy.

Key Takeaway

Open-weight models are turning high-level reasoning into a low-cost commodity, breaking the monopoly of proprietary AI providers.

02 Lenny's Newsletter

The Clarity Advantage

Why emotional intelligence is the only moat left in an automated world

By Joe Hudson · 10 min read
Editor's note: As AI commoditises effort and knowledge, your ability to manage your own psychology becomes your primary competitive edge.

The fear is widespread and rational. Senior executives and researchers at frontier AI labs alike are asking the same questions: Will I be replaced? Can I keep up? The traditional metrics of professional value—effort and knowledge—are being liquidated. Machines can now produce more effort and possess more knowledge than any human. When these two pillars of the modern economy become nearly free, the ground beneath our feet moves. We are entering an era where the most valuable skill is not what you know, but how you function when the known world fails.

The NBA Model of Talent

Joe Hudson, an executive coach to the leaders of OpenAI and Google, observes a shift in how high-performing teams are structured. Organizations are flattening. Headcount is shrinking. Teams are moving away from the factory model of many workers doing repetitive tasks and toward an 'NBA roster' model. In this structure, every person is amplified by AI, and every decision carries more weight. On a basketball team, you do not win simply by knowing the most plays. You win because a player can make the right read with two seconds on the clock, or stay composed when the game becomes physical.

In an AI-forward world, the ability to stay in a difficult conversation without turning on yourself is the ultimate unfair advantage.

This brings us to the concept of emotional clarity. Most people approach change through fear, which is a poor planner. Fear creates binary thinking and forces us to rehearse for scenarios that never happen. Emotional clarity, however, is the ability to feel what you are feeling without being governed by it. It is the capacity to face failure, pivot, and endure friction without the internal collapse that usually follows. When every person on a team is supercharged by AI, any bit of interpersonal friction or emotional instability is magnified. A team that can face hard things together moves exponentially faster than one that is constantly managing internal crises.

Skills for the AI era:
  • Emotional clarity: Perceiving feelings without being controlled by them.
  • Composure: Maintaining decision-making capability during high-stakes shifts.
  • Resilience: The ability to continue moving through failure rather than retreating.
  • Collaboration: Making the people around you better, even as the team flattens.

The transition will be painful for those who define themselves by their utility. If your value is tied to your ability to process information or execute tasks, you are in the path of automation. If your value is tied to your ability to navigate the human complexities that AI cannot touch—uncertainty, conflict, and the management of high-stakes transitions—you are entering your most profitable era. The new inner game is not about learning more; it is about being more present.

Key Takeaway

When knowledge and effort are free, emotional clarity becomes the scarcest and most valuable resource in the economy.

03 Simon Willison

The Agentic Morning

Porting models and the new rhythm of development

By Simon Willison · 8 min read
Editor's note: A case study in how coding agents change the very nature of technical problem-solving.

There is a new kind of developer workflow emerging, one defined by a loop of agentic research and execution. Simon Willison recently demonstrated this by attempting to port the Moebius 0.2B image inpainting model to run in a web browser using WebGPU. The task was non-trivial: the original model required PyTorch and NVIDIA CUDA, environments entirely alien to the browser. Instead of manually researching the conversion layers, Willison used Claude Code to act as a research partner, turning a complex engineering problem into an orchestration task.

The 'Muse' Command

One of the most interesting aspects of this workflow is how the human interacts with the agent. Willison describes a technique he calls 'musing'. Rather than giving a rigid, step-by-step instruction, he asks the model to 'muse on X'. This allows the agent to contemplate the problem, identify the necessary libraries (in this case, ONNX Runtime Web), and propose a feasibility study before a single line of code is written. This is a fundamental shift from 'coding' to 'directing'. The developer provides the intent and the constraints, while the agent handles the heavy lifting of library compatibility and boilerplate implementation.

The harder the problem, the more time you have to get distracted while you wait for the agent to finish.

The process is inherently iterative. Willison set up a directory, initialized a git repository, and gave the agent a research document. He then stepped away to work on other projects, checking in only when the agent reached a milestone. When errors occurred in the browser, he didn't debug them himself; he took screenshots and pasted them back into the terminal, allowing the agent to diagnose the WebGPU failures. This creates a new kind of cognitive load—not the load of syntax and debugging, but the load of managing an autonomous worker.

The Agentic Workflow:
  • Research: Using 'musing' prompts to establish feasibility.
  • Planning: Requiring the agent to maintain a plan.md and notes.md.
  • Execution: Letting the agent commit code incrementally.
  • Feedback: Using visual and error-log feedback to close the loop.

The result was a functional web demo of a model that was never intended for the browser. This is the promise of the agentic era: the ability to bridge technical gaps that would have previously required days of specialized research. The developer's role is becoming one of high-level architecture and rapid feedback, moving through problems at a speed that was previously impossible.

Key Takeaway

The future of engineering is not just writing code, but orchestrating agents to research, plan, and execute complex migrations.

04 The Marginalian

The Geometry of Life

Diatoms and the defiance of aesthetic nihilism

By Maria Popova · 9 min read
Editor's note: A reflection on the mathematical perfection of the microscopic world and what it says about existence.

In 1703, an anonymous scientist looked through a microscope and saw something that defied the understanding of the time: tiny, intricate structures that appeared more like art than matter. These were diatoms—unicellular algae encased in shells of opal. To the early observers, they were mysteries; to Charles Darwin, they were objects of incomparable beauty. Today, we understand their biological necessity: they are the engines of our planet, generating nearly half of the world's oxygen and absorbing vast amounts of carbon dioxide. They are not merely beautiful; they are essential.

The Atlas of the Minute

The work of German naturalist Adolf Schmidt, particularly his 'Diatom Atlas', captures this intersection of biology and geometry. Schmidt spent his life sampling cells from every corner of the globe, from Japan to Chile, to document these miniature masterpieces. His illustrations reveal a world of radial and lateral symmetries so precise they seem designed for admiration. These organisms exist as living embodiments of mathematical theorems, housed in shells that are as much a product of evolution as they are of structural engineering.

Diatoms are a dazzling defiance of aesthetic nihilism, urging us to remember that we are here to live with beauty.

There is a tension in the existence of the diatom. They could have remained simple, efficient producers of chemical energy, no more beautiful than a factory. Instead, evolution has produced organisms of exquisite complexity and symmetry. This fact challenges the idea that beauty is an accidental or secondary trait. When we look at the mathematical perfection of a diatom, we are faced with a question that science cannot answer: Why did the world have to be beautiful? The answer is not a 'why', but a simple 'is'.

What diatoms reveal about our world:
  • The scale of biological importance: Tiny organisms drive global oxygen cycles.
  • The intersection of math and life: Symmetry is a fundamental biological driver.
  • The persistence of beauty: Aesthetic complexity exists even in the most functional systems.

To study the diatom is to reject the notion that the universe is a cold, indifferent machine. The sheer elegance of these microscopic lives suggests that beauty is an elemental part of the structure of reality. They remind us that even in the smallest, most functional corners of existence, there is room for the sublime.

Key Takeaway

The mathematical beauty of the microscopic world suggests that aesthetics are not an accident of evolution, but an inherent part of existence.

05 Experimental History

The Unoptimisable Human

On the absurdity and eccentricity of the lived experience

By Adam Mastroianni · 7 min read
Editor's note: A collection of human oddities that remind us why we cannot be fully modeled by machines.

In an age obsessed with optimization and predictable patterns, there is a profound value in the unoptimisable. We spend our lives trying to build systems that eliminate error, friction, and randomness. Yet, the history of human experience is defined by the very things we try to smooth away. From the man who found art through a stroke to the man who went to prison for his beard, the human story is a collection of beautiful, irrational deviations from the norm.

The Art of the Accident

Consider Tommy McHugh, a construction worker whose life took a radical turn following a stroke. In the aftermath, he was possessed by an intense desire to create art, eventually painting on ceilings and floors when canvases became too expensive. It is a story of sudden, inexplicable transformation—a pivot that no algorithm could have predicted and no productivity framework could have facilitated. It is the kind of human randomness that defies the logic of the machine.

The most meaningful parts of life are often the most irrational.

We see this same defiance in the story of Joseph Palmer, a man in 1830s Massachusetts who was persecuted and imprisoned simply for wearing a beard. His refusal to conform to the social norms of his time resulted in a legendary tombstone that serves as a permanent record of his eccentricity. These stories—along with the miscommunications in Canadian hospitals and the strange legends of the Vegetable Lamb of Tartary—point to a fundamental truth: humans are not data points. We are creatures of miscommunication, stubbornness, and sudden, transformative impulses.

Themes of human eccentricity:
  • Transformation through crisis: Finding new purpose in unexpected moments.
  • The cost of non-conformity: The social friction caused by personal identity.
  • The failure of communication: How language barriers create real-world consequences.
  • The persistence of myth: How humans construct meaning from the unknown.

As we move toward a world of hyper-efficient, AI-driven systems, we must be careful not to optimize away the very things that make us human. The errors, the oddities, and the irrationalities are not bugs in the system; they are the system. To live fully is to embrace the parts of ourselves that cannot be predicted, modeled, or improved.

Key Takeaway

Humanity's value lies in its capacity for irrationality, eccentricity, and sudden, unpredicted transformation.

Endnote
Tonight's collection moves from the hard edges of silicon and code to the soft, unpredictable textures of human life. We have seen how the cost of intelligence is falling, how the value of leadership is shifting toward emotional clarity, and how agents are changing the very rhythm of creation. But we have also looked at the microscopic beauty of the diatom and the irrational brilliance of the human spirit. The thread connecting them is the tension between the systems we build to control our world and the inherent complexity that refuses to be contained. As you move into tomorrow, remember that while intelligence can be commoditised, clarity, beauty, and the capacity for the absurd remain uniquely ours.
In a world where intelligence is becoming a commodity, what is the one thing you possess that no machine could ever replicate?
The Deep Feed · A nightly magazine · Wednesday, 24 June 2026