2026-04-30

Sources

Tech Videos — 2026-04-30#

Watch First#

Replacing 12K LoC with a 200 LoC Skill — David Gomes, Cursor Cursor deleted roughly 15,000 lines of complex Git worktree management code and replaced the entire feature with a 200-line Markdown skill that spins up sub-agents in parallel. It is a highly practical case study on how plain text prompts are replacing legacy application logic, paired with honest caveats about how LLMs will still occasionally hallucinate and escape their isolated directories.

2026-05-01

Sources

Company@X — 2026-05-01#

Signal of the Day#

The enterprise shift toward managing AI as a digital workforce has accelerated with Microsoft’s general availability of Agent 365. By extending corporate frameworks for identity, security, management, and governance to AI agents, Microsoft is pulling agentic systems out of shadow IT experiments and securing them as fully integrated, auditable enterprise assets.

2026-05-01

Sources

Engineering @ Scale — 2026-05-01#

Signal of the Day#

Netflix completely decoupled its ML model routing logic from its data plane proxy, eliminating a centralized service that was causing 10-20ms of serialization latency. By shifting routing metadata generation to a specialized “Lightbulb” service that injects routing keys into headers, they allowed their existing Envoy proxy to handle massive payloads without costly deserialization, proving that strict control-plane/data-plane separation is critical for low-latency ML serving at scale.

2026-05-02

Sources

Company@X — 2026-05-02#

Signal of the Day#

The most significant strategic move today comes from Cursor, which introduced a new SDK allowing developers to build and embed agents using the exact runtime and models that power the Cursor editor. This shifts Cursor from being strictly an AI-assisted IDE to an automation platform capable of executing agents directly inside CI/CD pipelines and end-to-end enterprise workflows.

2026-05-02

Sources

Tech Videos — 2026-05-02#

Watch First#

Software Engineering Is Becoming Plan and Review — Louis Knight-Webb, Vibe Kanban is an incredibly pragmatic look at the shift from writing boilerplate to asynchronously managing LLMs, capped off by the speaker literally shutting down his startup live on stage using his own agent tooling.

2026-05-02

Sources

Engineering @ Scale — 2026-05-02#

Signal of the Day#

To defend against prompt injection at scale, production systems like Gmail are shifting to a Planner/Executor architectural split, physically isolating tool-calling privileges from untrusted content processing.

2026-05-03

Sources

The AI Reality Check: Agents, Economics, and Egos — 2026-05-03#

Highlights#

Today’s discourse reveals a deepening fracture between the hype of AGI and the grueling reality of deployment and economics. While critics spotlight crumbling ROI and growing public backlash against generative models, builders are waking up to the massive, unglamorous infrastructure work required to force AI agents into enterprise workflows. The industry is shifting from a phase of speculative awe into a period of hard infrastructural reckoning and ideological defectors.

2026-05-03

Sources

AI Reddit — 2026-05-03#

The Buzz#

The community is having a sober awakening about agent architecture and security. Developers are abandoning complex multi-agent orchestrations for simple, linear pipelines after realizing that micromanaging AI with rules drops success rates dramatically. Simultaneously, security engineers are sounding the alarm that system prompts aren’t firewalls, pushing for an “Agent Transport Layer” to deterministically intercept tool calls before they execute.

2026-05-03

Sources

Tech Videos — 2026-05-03#

Watch First#

TLMs: Tiny LLMs and Agents on Edge Devices with LiteRT-LM — Cormac Brick, Google is the standout watch today, offering a highly technical deep dive into running 2-to-4-billion parameter models on mobile devices and edge NPUs using LiteRT-LM. Brick demonstrates how to build modular on-device agents that dynamically load lightweight JavaScript skills instead of relying on massive system prompts, optimizing the limited memory and context windows typical of edge hardware.

2026-05-04

Sources

Tech Videos — 2026-05-04#

Watch First#

732 bytes of Python just borked every Linux machine on earth… If you manage Linux infrastructure updated since 2017, patch your systems yesterday: a 732-byte Python script discovered by an AI agent exploits a logic flaw in the kernel’s AF_ALG and splice() functions, allowing unprivileged local users to write to the page cache of read-only files (like su) and gain root access.