Channel

AI Engineer

Digests from AI Engineer

Designing Agents (The Floor Is the Frontier) — Ben Hylak, Raindrop thumbnail

· 19:46

Designing Agents (The Floor Is the Frontier) — Ben Hylak, Raindrop

The talk argues that traditional evaluation methods designed for simple chatbots are inadequate for modern AI agents. The focus must shift from merely finding issues to 'raising the floor'—mitigating catastrophic worst-case failures that break user trust (e.g., recommending a competitor or deleting data). Practically, this requires treating agent evaluations as robust code tests rather than relying on prompt playgrounds, and focusing analysis on issue start dates and affected user percentages.

Key takeaways

  1. Focus on Raising the Floor (Safety) 17:33

    The most critical concern for agents is not their maximum capability (the ceiling), but their worst-case behavior (the floor). The floor represents failures that break user trust, such as accidental data deletion or sending inappropriate communications.

  2. Evals Must Be Code, Not Prompts 12:00

    Evaluation suites should be implemented as code (like unit or end-to-end tests) rather than relying on managed prompt playgrounds. This approach is necessary because the underlying structure of agents and their tools has fundamentally changed.

  3. Prioritize Issue Context 14:00

    When tracking issues, knowing only that an issue exists is insufficient. It is critical to track two metrics: when the issue started (to identify recent changes) and what percentage of users are affected.

  4. Tactical Analysis Tips 17:05

    1. **Clusters are not issues:** Clustering traces is useful for one-off analysis but does not scale well or reliably track changes over time. 2. **Code Mode Scaling:** Apply code mode concepts to traces by writing classifiers and running them in a sandbox at production volume. 3. **Anomaly Investigation:** Agents are poor at detecting anomalies, so instead, surface deterministic signals (like keyword spikes) for the agent to investigate.

Watch on YouTube Full article

Bringing Continual Learning into Enterprises — Samuel Denton, Applied Compute thumbnail

· 19:03

Bringing Continual Learning into Enterprises — Samuel Denton, Applied Compute

Applied Compute presents a framework for implementing continual learning in enterprise AI agents by mapping out a 'distillation spectrum.' This model uses a two-axis grid: the type of production trace (Offline vs. Online) and the source of hints (Static/Offline vs. Dynamic/Online). The goal is to improve agent behavior without relying on a 'golden answer.' Key findings demonstrate that online hinting paired with online traces offers the highest ceiling for continuous improvement, while offline methods provide immediate value using historical data dumps.

Key takeaways

  1. The Continual Learning Spectrum

    Continual learning can be approached across four quadrants defined by trace type (Offline/Online) and hint source (Static/Dynamic). The most scalable method is Quadrant 4: Online hints paired with online production traces, enabling continuous improvement as the model serves live traffic.

  2. Improving Agents Without Golden Answers 5:20

    The framework emphasizes improving agents without requiring a 'golden answer' or perfect rubric. This approach allows for targeted behavior changes (e.g., encouraging tool calls) by conditioning the rollout on existing production traces and injecting hints, rather than forcing specific tokens.

  3. Online Hinting Achieves High Performance Gains 12:00

    In a fully online setting, dynamic hints based on the model's own recent rollout can dramatically improve highly specialized behaviors (e.g., correct hyperlink formatting), raising performance from 15% to 80%, significantly outperforming static offline hinting methods.

Watch on YouTube Full article

LLM Knowledge Bases: a practical guide — Ben Holmes, Warp thumbnail

· 21:17

LLM Knowledge Bases: a practical guide — Ben Holmes, Warp

The talk outlines a comprehensive pipeline for transforming disorganized raw notes into structured, navigable LLM knowledge bases. The process begins with maximizing raw data capture via voice dictation (suggested over typing) and progresses through automated enrichment steps using AI agents. Key stages include enriching notes by adding timestamps, fixed-list tags, web research backlinks, generating wikis of People/Concepts/Sources, and finally visualizing the entire network structure using graph views. The entire system is designed to run on an automated schedule in a cloud sandbox environment.

Key takeaways

  1. Raw Data Capture Priority 5:25

    The most critical step for building a knowledge base is generating high volume of raw material. Voice dictation (approx. 200 words per minute) is presented as the fastest method for capturing thoughts, even if they are 'scrappy' or rambling.

  2. The Enrichment Pipeline 9:53

    Notes can be enriched using an agent skill (e.g., 'enrich note') to add structure: timestamps, tags from a fixed reference list (to prevent agents from inventing new categories), web-researched sources, and backlinks found via key term search.

  3. Automated Knowledge Generation 13:40

    The system can generate a wiki structure (People, Concepts, Organizations) from raw notes. This process is highly automated and can be scheduled to run in the background (e.g., daily), ensuring the knowledge base remains fresh.

  4. Automation and Scheduling 17:45

    To maintain the knowledge base, the entire flow must run on a schedule using cloud sandboxes (e.g., Oz.dev). The process involves syncing markdown files down, running the agent skill, and syncing the updated notes back up.

Watch on YouTube Full article

Adaption Labs: Gradient-Free Continual Learning — Sara Hooker, Adaption thumbnail

· 20:51

Adaption Labs: Gradient-Free Continual Learning — Sara Hooker, Adaption

The talk argues that the frontier of AI development is shifting away from relying solely on massive, co-located pre-training compute (the 'Death of Scaling'). Instead, democratization and innovation are being driven by automating model training loops and optimizing for distributed, post-training customization. The speaker introduces AutoScientist, a system designed to co-optimize the entire model lifecycle—from data quality through alignment—allowing builders to achieve frontier capabilities with greater efficiency and accessibility.

Key takeaways

  1. The Narrow Path of AI Research 2:36

    Historically, contributing to AI breakthroughs required following a narrow path (right PhD, right lab), which was compounded by the need for enormous compute resources. This has created significant barriers to entry globally.

  2. AutoScientist Automates Model Training 10:45

    The system automates model training by co-optimizing the entire loop (data $ ightarrow$ alignment). It is designed to self-evolve based on domain and data type, outperforming research staff because it searches across a broader space of architectures (dense vs. Mixture of Experts) than human researchers typically consider.

  3. Shifting Compute Paradigms 17:12

    Pre-training size is no longer the most rewarding axis for scale; instead, distributed inference compute and post-training customization are becoming more lucrative. This shift means that algorithms and recipes matter more than simply hoarding GPUs.

Watch on YouTube Full article

Intelligence + Continual Learning = Expertise — Yu Su, NeoCognition thumbnail

· 19:43

Intelligence + Continual Learning = Expertise — Yu Su, NeoCognition

The talk distinguishes between 'Intelligence' (the capacity to reason through unfamiliar problems from available context) and 'Expertise' (accumulated, situated competence). While modern LLM agents excel at symbolic tasks like coding because code is a structured language-native world, they struggle in heterogeneous real-world digital environments. The speaker posits that this difficulty represents a modern Moravec's paradox. To scale AI beyond basic capability, systems must implement continual learning to acquire specialized expertise for each 'microworld,' leading toward 'unbounded expertise from bounded intelligence.'

Key takeaways

  1. Intelligence vs. Expertise Distinction 3:50

    Intelligence is the ability to reason through novel problems given context, while expertise is accumulated competence that allows for efficient action and judgment in a specific domain (e.g., recognizing constraints beyond just finding a shared calendar slot).

  2. The Coding Agent Advantage 5:26

    Coding is an ideal first market for LLM agents because code is already symbolic and structured, providing clear tests and rewards. Leaving this 'privileged world of code' introduces significant brittleness.

  3. The Role of Continual Learning 10:44

    Continual learning is defined as the adaptive compression of experience into reusable structures for future behavior. It is presented as the critical bridge needed to transition from raw intelligence (brute-forcing solutions) to specialized expertise (compressing the search space).

Watch on YouTube Full article

Scaling Compute on Context — Jack Morris, Engram thumbnail

· 19:42

Scaling Compute on Context — Jack Morris, Engram

This talk introduces the concept of 'Scaling Compute on Context,' addressing the fundamental limitation that current Large Language Models (LLMs) are trained exclusively on public data. While traditional deep learning progress relies on scaling three axes—more data, more compute, and bigger models—the inability to scale with private corporate or personal data limits model depth. The speaker reviews several advanced techniques (e.g., KV compaction, on-policy distillation, continued pretraining) aimed at transferring domain expertise from a fixed, unstructured corpus ($D$) into the model's weights, ultimately seeking a self-improving training mechanism analogous to AlphaGo.

Key takeaways

  1. The Knowledge Gap: Public vs. Private Data 5:59

    Current LLMs are superb on public data (Wikipedia, GitHub) but lack deep knowledge of private corporate or personal contexts (emails, internal meetings). This is the core problem that limits model depth and expertise acquisition.

  2. Scaling Compute on Context 8:40

    Since scaling with new public data is limited, the focus shifts to maximizing compute power given a fixed, private dataset ($D$). This approach aims to imbue the pre-trained model ($ heta$) with deep domain knowledge from $D$.

  3. The Goal: Self-Improvement and Depth Scaling 11:45

    Most current methods eventually saturate (hitting a 'data wall'). The desired property is self-improvement, where getting better makes the training questions harder, allowing compute to continuously buy depth rather than flattening out.

Watch on YouTube Full article

Memory Harnesses for Long-Running Research Agents — Stefania Druga, Sakana.ai thumbnail

· 13:04

Memory Harnesses for Long-Running Research Agents — Stefania Druga, Sakana.ai

The presentation details the design and efficacy of 'memory harnesses' for managing state in long-running research agents. The core finding is that while memory harnesses offer no benefit when task context fits within the model's window (adding only cost), they are critical for solving long-horizon tasks where relevant information sits far outside the current context. The speaker emphasizes treating memory as a write-manage-read control loop, not merely an attached database.

Key takeaways

  1. Memory is a Control Loop, Not a Database 5:44

    The memory harness must be viewed as a 'write-manage-read' control loop wrapped around the model, rather than simply a retrieval database. This architectural focus allows for precise state management.

  2. Local Models Enable Sovereignty and Cost Control 2:36

    Running evaluations on local hardware (e.g., M3 Ultra) enables better control over the entire pipeline, which is crucial for maintaining 'sovereign AI' capabilities and reducing operational costs.

  3. Ranked Recall Outperforms Other Policies 7:16

    Across the X-Bench benchmark (over 68 questions), the 'ranked recall' policy consistently achieved the best performance, outperforming even approaches that simply gate memory usage or use an ideal 'oracle' ground truth.

Watch on YouTube Full article

Evolution of agentic surfaces — Gagan Bhat & Isabella Kai He, Anthropic thumbnail

· 31:24

Evolution of agentic surfaces — Gagan Bhat & Isabella Kai He, Anthropic

The evolution of agentic surfaces (from the Messages API to Claude Managed Agents) addresses the challenge that static harnesses become limiting factors as underlying LLMs improve. The core architectural shift is decoupling the agent's 'brain' (the reasoning loop) from its 'hands' (the tool execution environment/sandbox). This separation significantly improves reliability, allows for parallel setup, and boosts performance by achieving up to 60% faster time-to-first-token at P50. Managed Agents provide production-grade infrastructure—including session logging, credential vaults, and self-hosted sandboxes—enabling developers to focus on defining the agent's task and context rather than managing complex operational overhead.

Key takeaways

  1. Harnesses Encode Stale Assumptions 11:42

    As models improve (e.g., Opus 4.5 eliminating 'context anxiety'), fixes built into older harnesses become pure overhead, adding latency or discarding cache incorrectly. Managed Agents are designed to be agile and adapt to model evolution.

  2. Decoupling Brain from Hands 20:00

    Separating the agent loop (brain) from the tool execution environment (hands/sandbox) improves reliability, allowing the brain to resume from a durable session log even if the hands fail. It also allows model reasoning to start immediately while container setup runs in parallel.

  3. Self-Improving Agents via Dreaming 27:30

    The system utilizes durable session logs and memory state, which can be fed into a periodic batch process called 'dreaming.' This process extracts new insights to automatically update the agent's memory, making subsequent sessions smarter.

Watch on YouTube Full article

Agents, codebases, and teams — Aditya Khandelwal, Amazon AGI Lab thumbnail

· 16:57

Agents, codebases, and teams — Aditya Khandelwal, Amazon AGI Lab

The adoption of AI agents in software development is presented as primarily a leadership and organizational challenge, not merely an individual contributor (IC) problem. Successful implementation requires systemic changes—specifically 'harness engineering'—to manage codebase complexity and ensure reliable agent performance across teams. Key strategies include implementing progressive disclosure, establishing high-value skills like 'ship it,' and creating self-healing CI/CD pipelines to mitigate inevitable AI 'slop.'

Key takeaways

  1. Agent Adoption is a Leadership Problem 9:52

    The speaker argues that making engineers work well with agents requires organizational buy-in (leadership action) rather than individual effort. Relying on ICs to restructure the codebase alone will fail, leading to uneven productivity and increased review burden for those who are not early adopters.

  2. Symptoms of a Poor Setup 7:18

    Warning signs that an agent setup is failing include: engineers 'babysitting' agents, the system silently burning context (e.g., blowing through 500k context units), or requiring constant manual intervention for simple tasks.

  3. Harness Engineering Principles 11:49

    Effective agent integration requires three principles: Smart prompt injection (treating the codebase as a single unit to inject context), closing the loop (creating self-healing pipelines to detect and remove 'slop'), and continuous iteration, treating the process like an ongoing organizational improvement effort.

  4. Progressive Disclosure Best Practices 16:57

    To manage context overload, implement strict boundaries. For example, a hard limit of approximately 100 lines is suggested for files like `skill.md` to ensure the agent receives only necessary context in its initial prompt.

Watch on YouTube Full article

Taking Reinforcement Learning Cross Datacenter — Nan Jiang, Modal thumbnail

· 19:50

Taking Reinforcement Learning Cross Datacenter — Nan Jiang, Modal

This talk addresses scaling Reinforcement Learning (RL) post-training across geographically distributed compute resources by fundamentally changing the synchronization unit. Instead of shipping massive full checkpoints (up to 500 GB), the proposed method uses a small 'lossless patch' representing only the changes in visible weights, shrinking the transfer size from hundreds of gigabytes to potentially hundreds of megabytes. This enables the rollout fleet to operate elastically across different regions and providers, decoupling it from the central training cluster.

Key takeaways

  1. Decoupling RL Training from Compute Location 5:22

    The standard RL loop couples the trainer and rollout worker in a single fast-fabric cluster. The solution proposes that the 'rollout serving island'—a coherent endpoint or local group of endpoints—is the movable unit, allowing it to operate across scattered, autoscaled capacity (the 'bazaar') rather than being restricted to one perfect cluster (the 'cathedral').

  2. Sparse Weight Updates via Adam Absorption 8:05

    The core mechanism relies on the fact that while gradients are dense, the actual change in the served weight view is extremely small. This 'Adam absorption' phenomenon occurs because a typical Adam step (around 3 millionths) is far smaller than the BF16 rounding boundary (around 0.0039), meaning the visible value does not change significantly.

  3. Lossless Patch Synchronization 9:50

    The synchronization unit is redefined as a 'lossless patch' (a diff) rather than a full checkpoint. This patch, which includes the change index and replacement bits, allows the rollout engine to bitwise reconstruct the exact served version from a much smaller object.

Watch on YouTube Full article

Codex, Behind the Harness — Dominik Kundel, OpenAI thumbnail

· 20:55

Codex, Behind the Harness — Dominik Kundel, OpenAI

The Codex harness provides a comprehensive framework for building advanced, agentic AI systems. The system relies on two open protocols—the App Server (for UI-to-harness communication) and the Responses API (for harness-to-inference)—allowing developers to build custom agents regardless of their interface. Key features include sophisticated context management (using deferred tools and capping available skills), robust action capabilities (async tasks, code execution for computer use, and file system interaction via an 'apply patch tool'), and mandatory sandboxing layers (e.g., Seatbelt on macOS, Bubblewrap on Linux). Furthermore, the architecture addresses real-world enterprise concerns like security (Auto Review subagents) and performance (WebSocket mode and Auto Compaction), making it suitable for complex, long-running build processes.

Key takeaways

  1. Open Ecosystem Protocols 4:00

    The Codex harness is built on open standards: the App Server protocol (UI to harness) and the Responses API (harness to inference). These protocols allow developers to build custom UIs or integrate with different model providers, ensuring flexibility.

  2. Advanced Context Management 6:45

    To manage context size and maintain cacheability, the system uses 'deferred tools,' which are not added directly to the context window but are surfaced via tool search. The available skills list is capped at 2% of the total context window.

  3. Secure and Robust Actions 10:20

    Actions are handled through specialized tools: file edits use an 'apply patch tool,' while general navigation uses a shell tool (often defaulting to `ripgrep`). All interactions occur within mandatory sandboxes (e.g., Seatbelt on macOS, Bubblewrap on Linux).

  4. Mitigating Approval Fatigue 15:20

    An 'auto review subagent' is implemented to automatically judge high-risk actions against user authorization and the transcript context, reducing reliance on manual full-access approvals.

  5. Optimized Communication 17:15

    The system transitioned from Server-Sent Events (SSE) over HTTP to WebSocket mode. This persistent connection saves network overhead and provides stateful context, ensuring only changed data is transmitted.

Watch on YouTube Full article

Multiplayer agentic engineering — Arjun Singh, Superconductor thumbnail

· 18:44

Multiplayer agentic engineering — Arjun Singh, Superconductor

The talk outlines 'multiplayer agentic engineering,' focusing on how human teams and AI agents can collaborate effectively across diverse systems. Key recommendations include making workflows model-agnostic, integrating agents into every human interface (Slack, GitHub), ensuring work visibility via artifacts, and treating all external signals (emails, meetings) as code inputs. Crucially, the speaker emphasizes that these advanced agentic workflows must operate within isolated cloud environments to enforce least privilege and prevent data exfiltration.

Key takeaways

  1. Model Agnosticism is Critical 5:01

    Do not rely on a single LLM or harness, as the best model changes frequently. Utilizing open-weight models (like GLM 5.2) allows teams to stay in control of costs and maintain workflow continuity.

  2. Agent Interfaces Must Be Universal 6:48

    Agents should not be trapped on a single laptop or platform (e.g., Slack). The agent session must maintain context when moving between relevant interfaces like Slack, the desktop app, and GitHub.

  3. External Signals Must Become Code 10:10

    Treat all external signals—customer calls, meetings (e.g., a Google Meet bot), bug reports from Sentry, or emails—as inputs that can automatically trigger and prioritize work for the coding agent.

  4. Work Must Be Visible Everywhere 9:09

    To improve collaboration, agents should make their work visible across all platforms using standardized artifacts (screenshots or videos), eliminating context switching.

  5. Use Isolated Cloud Environments 12:22

    Running agents in a cloud sandbox is essential for security, enabling non-technical staff to trigger real work without having development environments on their local machines. This enforces the principle of least privilege.

Watch on YouTube Full article

Guide, Verify, Solve — Anirban Chatterjee, Sonar thumbnail

· 22:31

Guide, Verify, Solve — Anirban Chatterjee, Sonar

As AI-driven development moves from experimentation to engineering, the primary challenge is 'verification debt'—the gap between the quality provided by LLMs and the high reliability required for critical production systems. The speaker argues that relying solely on human review (which can be compromised, as shown by a Wharton study) or the generating model itself is insufficient. A robust solution requires implementing a zero-trust, multi-layered verification regime within agentic development loops to ensure code quality across syntax, data flow, architecture, and control flow.

Key takeaways

  1. Implement Zero Trust Verification 15:32

    Assume all code (human or AI) could come from anywhere. Verification must use a different methodology than the one that wrote the code to prevent inheriting blind spots.

  2. Adopt Multi-Layered Review 15:57

    No single technique is sufficient; verification must combine computational review, LLM-driven reasoning, and other approaches to catch all types of issues (quality, security, compliance).

  3. Use ACDC for Agentic Loops 17:12

    The proposed framework is the Agent-Centric Development Cycle (ACDC), which includes three phases: Guidance (providing constraints/guardrails), Verification (running independent checks in real time), and Solve (allowing the agent to remediate issues).

  4. Standardize Verification Across Projects 20:46

    Organizations should establish a single, consistent verification platform that applies uniformly across all teams, projects, and AI coding tools to eliminate blind spots.

Watch on YouTube Full article

Velocity Sickness: What Happens When Your Whole Team Gets 10x Faster — Matt Dailey, Ref. thumbnail

· 20:37

Velocity Sickness: What Happens When Your Whole Team Gets 10x Faster — Matt Dailey, Ref.

The video addresses 'velocity sickness'—the stress of sudden, unimpactful increases in AI-driven output that do not translate into meaningful product progress. The speaker argues that current engineering workflows are flawed because they treat all work as implementation (code) and fail to properly manage the critical decision layer. To solve this, engineers must separate the durable state/decisions from the ephemeral actions/implementations. This is achieved by shifting focus from using chat interfaces for planning to utilizing dedicated, shared document structures that capture system state.

Key takeaways

  1. Understanding Velocity Sickness 2:00

    Velocity sickness is defined as the stress caused by sudden output increases due to AI, resulting in high output without corresponding impact. This manifests as too many PRs to merge, working across too many directions simultaneously, or 'declaring agent bankruptcy' (doing work that isn't retained).

  2. The Critical Failure Point: Decision Ownership 5:45

    The most critical risk is allowing agents to make key decisions. If an engineer delegates decision-making, they lose ownership of the code and, by extension, the product.

  3. Shifting Focus from Code Velocity to Idea Velocity 10:30

    To combat velocity sickness, teams must shift focus from merely shipping code (code velocity) to prioritizing and exploring ideas (idea velocity). This means focusing on planning and understanding the system's contours before implementation.

  4. The Solution: Docs for Decisions, Not Chats 13:25

    The core fix is separating the decision layer from the implementation layer. While chats are isolated, ephemeral, and built for action, durable shared documents (docs) should be used to hold the state and key decisions, keeping agents effectively stateless.

Watch on YouTube Full article

Always-on agents run production without the on-call tax — Justin Smith, Resolve AI thumbnail

· 24:56

Always-on agents run production without the on-call tax — Justin Smith, Resolve AI

The talk introduces the concept of 'always-on agents' designed to automate operational tasks in complex production environments, thereby reducing the burden of manual on-call work. While CI/CD handles baseline checks well, the biggest gap is monitoring non-alerted changes—such as feature flag rollouts or infrastructure updates—that require continuous context understanding. Background agents can run autonomously (on schedules, events, or messages) to perform deep analysis, root cause investigations, and proactive health checks across systems like Kafka pipelines.

Key takeaways

  1. The Operational Bottleneck 2:05

    A significant portion of an engineer's time (estimated at 70%) is spent running code in production—maintaining platforms, debugging incidents, and handling alerts—rather than writing it. This complexity increases with the velocity of change driven by AI.

  2. Background Agents vs. Incident Response 10:40

    While on-call agents handle immediate alerts and incidents, background agents address the 'long tail' of operational work—such as routine health checks, summarizing handoffs, or watching for subtle performance drifts (e.g., P99 drift) that don't trigger an alert.

  3. The Importance of Context 12:00

    Execution is easy; production context is hard. The value lies in building knowledge systems that can determine if a metric 'smells wrong' or understand the causal chain impact of a change, rather than just loading a dashboard.

Watch on YouTube Full article

Realtime multiplayer, automation, and you! — Idan Gazit, GitHub thumbnail

· 21:41

Realtime multiplayer, automation, and you! — Idan Gazit, GitHub

The talk introduces two prototypes for future software development: Agentic Workflows and ACE. Agentic Workflows automates complex tasks like dependency upgrades (e.g., Astro 5 to Astro 7) by interpreting plain English instructions into a structured playbook, which is then executed as an action workflow. Crucially, it emphasizes that robust guardrails are defined deterministically in YAML front matter, not merely through prompting. ACE explores real-time multiplayer development in cloud microVMs, treating the shared surface (like Slack) as the primary interface for surfacing non-code facts and collaborative planning.

Key takeaways

  1. Automation via Plain English Playbooks 5:08

    Agentic workflows translate simple natural language instructions (e.g., a message to a junior developer) into comprehensive playbooks that handle tasks like checking for new releases, reviewing changelogs, applying code changes, and creating pull requests.

  2. Guardrails Must Be Deterministic 6:46

    Effective security requires defining guardrails (permissions, allowed tools, network destinations, safe outputs) deterministically in front matter (YAML), rather than relying on prompt instructions, which are susceptible to injection.

  3. Shifting Development Interface 12:40

    The future of development involves iterating on direction and planning within a shared surface (like Slack/ACE), making the document itself—the 'truth'—a primary artifact, rather than solely relying on code.

  4. AI Augmentation is Not Typing 20:40

    A longitudinal study found that hands-on keyboard typing accounts for only about 5% of a developer's time; AI must therefore help scale up the remaining 95% of work (e.g., system design, planning, and collaboration).

Watch on YouTube Full article

Benchmarking Coding Agents on New vs Legacy Codebases — Denys Linkov, Wisedocs thumbnail

· 18:08

Benchmarking Coding Agents on New vs Legacy Codebases — Denys Linkov, Wisedocs

The talk analyzes the necessity of undertaking a major codebase refactor—specifically collapsing over ten legacy repositories into a monorepo—despite rapid advancements in AI coding agents. The speaker argues that while modern LLMs (like Opus 4.8) significantly accelerate tasks compared to older models (o3), the business value gained from proactively addressing technical debt and establishing robust development patterns outweighs waiting for perfect AI tooling. Key findings include benchmarking model performance on refactoring tasks, noting that Sonnet 4.6 required one iteration while Opus 4.8 achieved near single-pass completion. The speaker also cautions against relying solely on LLMs to complete complex tasks without proper guardrails and validation.

Key takeaways

  1. Refactoring is necessary despite AI progress

    The refactor was worthwhile because it improved business metrics (commit velocity, time-to-market) by establishing clean patterns, even if models continue to improve.

  2. LLM performance benchmarks show rapid improvement 9:30

    Refactoring tasks that took three hours of back and forth with o3 could be accomplished in roughly one-fifth the time using modern models like Sonnet 4.6 (one iteration) or Opus 4.8 (near single pass).

  3. Monorepos simplify development flow

    Consolidating ten separate repositories into a monorepo allowed almost every developer to contribute, even outside their area of expertise, significantly boosting commit velocity and collaboration.

Watch on YouTube Full article

Anthropic's CCA Exam as a Field-Guide for Agentic Engineering — Frank Coyle, UC Berkeley thumbnail

· 20:08

Anthropic's CCA Exam as a Field-Guide for Agentic Engineering — Frank Coyle, UC Berkeley

The presentation uses Anthropic's Claude Certified Architect (CCA) exam structure to guide engineers through agentic AI best practices by focusing on anti-patterns. Key principles include mastering 'agentic loops' over simple sequences, ensuring specialized subagents only have limited tools, and rigorously managing context via techniques like forking and compaction to prevent groupthink and token overflow.

Key takeaways

  1. Prioritize Looping Mechanisms 12:30

    Agentic workflows should leverage loops (e.g., `while true`) rather than simple sequences, as looping provides the necessary power for complex computation, paralleling the foundational concepts of Turing completeness.

  2. Use Stop Reasons for Control 7:40

    Instead of blindly using an agent's response, robust workflows must branch logic based on the model's `stop reason`. This is crucial because the LLM cannot execute tools; it only provides parameters that external code must run.

  3. Specialize Agents and Tools 15:30

    Avoid 'overloading' a single agent with all available tools. Specialized subagents, each equipped with one or two specific tools, are significantly more effective and maintain focus.

  4. Manage Context Isolation

    To prevent context pollution and 'groupthink,' isolate subtask outputs (e.g., using a 'context fork') so that only necessary summaries return to the main thread, preventing unbounded context growth.

Watch on YouTube Full article

The New Primitives: Building AI Native Software — Kwindla Kramer, Daily thumbnail

· 21:14

The New Primitives: Building AI Native Software — Kwindla Kramer, Daily

The talk traces the 80-year history of digital computing—from Vannevar Bush's predictions in 1945 to modern AI agents—to argue that current 'agents' are merely a primitive. The speaker posits that just as web pages were superseded by full web and mobile applications, agents will eventually give way to a new fully AI native software layer. This next generation requires advanced primitives like asynchronous non-blocking context compression and dynamic interface generation.

Key takeaways

  1. The Evolution of Primitives 6:52

    History shows that every major computing leap (e.g., web pages to mobile apps) renders the previous primitive insufficient for the next era. Agents are viewed as the 'web page' of the current AI age.

  2. The Next Frontier: AI Native Software 20:05

    Building beyond agents requires mastering primitives such as asynchronous non-blocking context compression, long running subagents that share context, progressive skills loading, dynamic interface generation, and conversational voice.

  3. The Role of Abstraction 17:15

    Historical examples like VisiCalc demonstrate how new abstractions (e.g., the spreadsheet) make vastly more complex work possible, creating entirely new categories of work rather than eliminating jobs.

Watch on YouTube Full article

Open Source Is Dead. Long Live Open Source. — Saoud Rizwan, Cline thumbnail

· 17:30

Open Source Is Dead. Long Live Open Source. — Saoud Rizwan, Cline

The speaker argues that while traditional open source community models are struggling due to AI-driven skepticism and supply chain risks, the future of software development lies in 'open weights' models. The economic imperative is shifting away from raw intelligence toward cost efficiency and standardization. Examples like the compromise of the Litellm package and the comparison between GLM and Opus demonstrate that open weights models can achieve production-grade results at a significantly lower cost, mirroring historical commoditization events like Open Compute.

Key takeaways

  1. Open Source Trust Crisis 2:05

    The community trust model is eroding. Examples include Zig banning AI use in PRs/issues to protect contributors, curl considering ending its bug bounty program due to AI-generated reports, and tldraw automatically closing pull requests. GitHub even shipped a feature to disable third-party PRs altogether. (0:38)

  2. Supply Chain Risk Highlighted by Litellm Attack 7:00

    The Python package litellm (3.5 million daily downloads) was compromised for three hours, installing a credential harvester to steal API keys, SSH keys, and crypto keys, along with a remote command execution backdoor. The attack was only caught due to a bug in the malware that crashed Cursor. (4:20)

  3. Open Weights Models Drive Cost Efficiency

    Testing showed GLM outperformed Opus on a real client bug by cleaning up dead code and confirming compilation, even though it used twice the tokens, because its cost was half that of Opus. This demonstrates that cost efficiency is becoming more critical than raw speed or intelligence. (13:05)

  4. The Open Compute Precedent

    Facebook's decision to open source its data center designs led the entire supply chain to standardize on those schematics, commoditizing components and driving down costs for all participants, including Facebook itself. (16:20)

Watch on YouTube Full article