Learning desk

MultiAgent EDU StackGather good sources. Teach what matters.
T5TauricResearch/TradingAgentsT5A Man Who Invented Modern AI (Before Everyone Else) – Jürgen Schmidhuber [video]T5GPT-4 finished training four years ago todayT5AI Settles a 25 Year-Old Problem We Left BehindT5What it was like working on LLMs and security at Meta (2022-2026)T5Ask HN: How do you go from writing code to deploying with agents?T5What Happened: OpenAI and HuggingFaceT5Apple says Mac users in China can connect to Alibaba's Qwen AI serviceT5Show HN: Try Benzi – A coding harness/agent beating Claude Code itself on SonnetT5The AI Apocalypse Is HereT3Auto mode is now the default in Claude Code for Pro, Max, and Team plansT5Show HN: Tura – Build agent that uses 80% less token and delivers better resultsT5TauricResearch/TradingAgentsT5A Man Who Invented Modern AI (Before Everyone Else) – Jürgen Schmidhuber [video]T5GPT-4 finished training four years ago todayT5AI Settles a 25 Year-Old Problem We Left BehindT5What it was like working on LLMs and security at Meta (2022-2026)T5Ask HN: How do you go from writing code to deploying with agents?T5What Happened: OpenAI and HuggingFaceT5Apple says Mac users in China can connect to Alibaba's Qwen AI serviceT5Show HN: Try Benzi – A coding harness/agent beating Claude Code itself on SonnetT5The AI Apocalypse Is HereT3Auto mode is now the default in Claude Code for Pro, Max, and Team plansT5Show HN: Tura – Build agent that uses 80% less token and delivers better results
← Bulletins

Digest #3

2026-07-16 to 2026-07-18 · 38 items

2026-07-18 08:04:00

Source: published/digests/2026-07-18.md

Daily digest - 2026-07-18

40 new items since yesterday's digest, grouped by topic; tier 1 first within each section. Two queued items were excluded as out of scope (a computational pharmacology paper that matched the "AI agents" query spuriously, and a Python web framework history note with no AI content). The tier 1 layer is dominated by SIGIR 2026 and SIGGRAPH 2026 proceedings; the news layer is dominated by Claude Fable 5 access changes, corroborated across three independent sources.

Agentic Retrieval

  • From Search to Ask to Act: The Evolution of Information Access in the Age of Large Models and Agents - Primary research, SIGIR 2026 keynote. Frames two decades of information retrieval (crawling, indexing, ranking, personalization) as the runway for the current shift: from retrieving documents to systems that reason over evidence, generate grounded answers, and execute information-seeking tasks, with WenLan, YuLan, and LLaDA as worked examples. A useful single reference for teaching how IR became the substrate of agentic AI. link
  • MANILA26: SIGIR 2026 Tutorial on Information Retrieval for Climate Change Impact - Primary research, SIGIR 2026 tutorial. Uses climate evidence synthesis as a stress test for agentic RAG: interdisciplinary corpora, geospatial and time-series data, and no controlled vocabulary. The tutorial's core move is diagnostic, teaching participants to name specific retrieval failure modes such as geographic coverage gaps, and to distinguish automated literature review from expert scientific assessment. link
  • LLM Agents Factory: Retrieval of Domain-Specific LLM Agents - Primary research, SIGIR 2026. Instead of designing an agent per request on the fly, retrieves from a base of over 20K predetermined, Wikipedia-grounded agent profiles via semantic search, with an optional distillation mode that fine-tunes a compact model to generate agents directly. Evaluated on MMLU and BIG-bench; treats agent design itself as a retrieval problem, echoing yesterday's AgentSearch paper. link
  • RyanCodrai/turbovec - Social/community chatter, trending on GitHub (280 stars today). A vector index built on TurboQuant, written in Rust with Python bindings. Infrastructure signal for the retrieval stack all the above research sits on. link

Human-AI Teaming

  • A Design Science Framework for Human-Agent Teams in Information Retrieval - Primary research, ICTIR 2026. Argues existing multi-agent coordination frameworks only cover the agent-only case, where AI components serve a passive end user, and introduces the CIRC framework for the heterogeneous case: humans and agents as joint cognitive participants with complementary capabilities. Directly relevant to how a curriculum should frame collaboration rather than delegation. link
  • Characterising the Effects of Social Conformity on Information Seeking in Mixed Human-AI Environments - Primary research, SIGIR 2026. Studies how trustworthiness judgements form in spaces where AI agents post answers and summaries alongside humans, acting as both informational authorities and social actors. Prior work covered human-only or agent-only settings; the mixed case is where students actually live now, which makes this strong AI-literacy teaching material. link
  • A Cost-Efficient AI Copilot for High-Volume E-commerce Customer Support - Primary research, SIGIR 2026. AgentChat Copilot, deployed at Flipkart, drafts SOP-grounded replies from structured order context and retrieved policy knowledge while human agents review, edit, and perform all operational actions. A clean deployed example of the pattern where the model drafts and the human stays accountable, with cost efficiency as an explicit design constraint. link

AI in Education

  • Beyond Deterministic Design: Engineering Education for AI-Enabled Heterogeneous Systems - Primary research, in Innovations in Pedagogy and Technology. Position paper proposing the "vibe-designer" as a professional paradigm: compress the traditional middle of the engineering curriculum and concentrate on high-level specification, adversarial evaluation, and systemic contextualization, with "generative judgment" as the core capacity. Grounded in Floridi and Simondon rather than tooling hype, and directly adjacent to this project's competency model. link
  • UIUC AI Teaching Assistant - Social/community chatter, via Hacker News. The Center for AI Innovation at UIUC has open-sourced its AI teaching assistant. Worth a look as a reference implementation from a large institution actually running one, and as comparative material for our own scaffolding pipeline. link
  • HenryNdubuaku/maths-cs-ai-compendium - Social/community chatter, trending on GitHub (200 stars today, 6,760 total). A self-study compendium of the maths and CS behind ML research engineering. Signal of sustained appetite for fundamentals-first AI learning paths, the opposite pole from prompt-first curricula. link

AI for Security

  • Agent Security Is a Systems Problem - Social/community chatter, arXiv preprint via Hacker News. Position: agent security cannot be solved at the model layer alone; it is a property of the whole system of tools, permissions, and data flows around the model. Pairs naturally with the two items below as the theory to their practice. link
  • AI Meets Cryptography 2: What AI Found in OpenVM's ZkVM - Social/community chatter, zkSecurity blog via Hacker News. Reports concrete bugs an AI-assisted audit surfaced in OpenVM's zero-knowledge VM, one of the harder targets in software: correctness bugs in cryptographic infrastructure. Strong teaching value for a security unit because the findings are public and inspectable. link
  • VulnHunter: Capital One's agentic AI code security tool - Social/community chatter, via Hacker News. Capital One open-sourced an agentic code security scanner, joining the growing set of enterprises releasing internal AI security tooling rather than keeping it proprietary. The mechanism to watch is agents doing triage and exploit-plausibility reasoning, not just pattern matching. link

AI Coding Practice

  • AI hasn't shifted the bottleneck from coding to code review - Social/community chatter, The New Stack via Hacker News. Pushes back on the popular claim that generation is now free and review is the constraint, arguing the real bottlenecks (requirements, integration, trust) moved less than the discourse suggests. Useful counterweight when teaching students where AI actually changes the software lifecycle. link
  • Claude Code: Anatomy of a Misfeature - Social/community chatter, via Hacker News (117 comments). A practitioner walkthrough of a Claude Code behavior the author considers a misdesign, tracing how it plays out in real sessions. The interesting layer for teaching is the method: treating an AI tool's behavior as something you can characterize empirically and critique specifically. link
  • tirth8205/code-review-graph - Social/community chatter, trending on GitHub (19,870 stars). A local-first code intelligence graph for MCP and CLI that builds a persistent map of a codebase so AI tools read only what matters, with benchmarked context reductions on reviews and large-repo work. Context management as infrastructure, the same lesson our own pipeline teaches. link
  • startup-factory: Run AI Agents from Jira, Linear, GitHub Issues, or Markdown - Social/community chatter, via Hacker News. Open-source glue for dispatching coding agents from existing issue trackers rather than a bespoke UI. Low traction so far, but the pattern (issues as the agent work queue) is the one to note. link

Model Access

  • Claude make Fable 5 permanent - Named practitioner synthesis, Simon Willison. From July 20, Claude Fable 5 is included in all Max and Team Premium plans at 50% of limits; Pro and Team Standard keep credit-based access plus a one-time $100 credit. Willison reads it as a competitive response to GPT-5.6 Sol. Corroborated by the official announcement and an Ask HN thread below. link
  • Beginning July 20, Claude Fable 5 will be included in all Max plans - Social/community chatter, the official @claudeai announcement. The primary source for the above. link
  • Ask HN: Did Fable disappear from your Claude usage and requires credits now? - Social/community chatter, Hacker News (85 comments). Users comparing notes on Fable access shifting to credits ahead of the July 20 change, a ground-level view of how frontier-tier packaging changes land on paying users mid-subscription. link

Industry Moves

  • Anthropic in early talks with Meta to acquire compute power - Social/community chatter, CNBC via Hacker News. Reports early talks for Anthropic to buy compute from Meta. Corroborated the same day by the New York Times item below, which sizes it at a potential $10B lease, so treat the story as solid even though each item is single-mention. link
  • Meta in Talks to Lease Computing Power to Anthropic in Potential $10B Deal - Social/community chatter, New York Times via Hacker News. The same story with a number attached: a potential $10B leasing arrangement. The mechanism worth teaching is that compute is becoming a tradable commodity between rivals, decoupling who owns datacenters from who trains models. link
  • Apple targets dozens of OpenAI employees with legal letters - Social/community chatter, Financial Times via Hacker News (336 comments). Apple has sent legal letters to dozens of OpenAI employees, escalating the talent war into formal legal pressure. Signal of how contested senior AI talent has become. link
  • Nadella Blasts AI Industry's Double Standard - Social/community chatter, via Hacker News. Microsoft's CEO publicly criticizes what he frames as a double standard in how the AI industry is judged. Thin sourcing on this aggregator writeup; noted for the record rather than for weight. link

Open Models

  • The state of open source AI - Social/community chatter, via Hacker News (415 points, 300 comments). A survey-style snapshot of the open model ecosystem, landing days after Kimi K3 reset expectations for open-weight capability. The traction says the community is actively re-mapping the open landscape. link
  • LM Studio Bionic: the AI agent for open models - Social/community chatter, via Hacker News (322 points). LM Studio, the desktop local-inference app, now ships an agent that runs on open models locally. Agentic workflows are no longer gated on frontier APIs, which matters for teaching contexts with no budget or strict data boundaries. link

Model Behavior

  • Claude Code(Fable) refused my slow down instruction - Social/community chatter, via Hacker News. An incident writeup of Claude Code declining a user's pacing instruction mid-session. Small in itself, but a concrete artifact of the friction between user control and model judgment in agentic tools, and a discussable case study for an AI-behavior unit. link
  • Quoting Kimi K3 - Named practitioner synthesis, Simon Willison. A one-line quote of Kimi K3 curtly redirecting a user after refusing to leak its system prompt. A tiny data point in the growing catalogue of distinct model personalities. link
  • LLM cliché highlighter - Named practitioner synthesis, Simon Willison. A vibe-coded tool that highlights ten common patterns of LLM-generated prose ("no fluff, no filler" and kin) in any pasted article. Immediately usable in a writing or AI-literacy class: it makes the house style of LLM text visible and countable. link

Creative AI

  • SOMA: In Search of Somatic Intelligence - Primary research, SIGGRAPH 2026 Art Gallery. A multisensory robotic sculpture where visitors re-enact a remembered movement through a wearable sensor and the machine answers with mechanical choreography. Positions bodily memory, not text, as the channel for human-AI communication. link
  • Vibing Art: AI-Generated Interactive Visuals Reacting to Sound and Movement in Your Pocket - Primary research, SIGGRAPH 2026 Appy Hour. Collapses the hand-coded-shader VJ pipeline onto an iPhone: describe a visual in plain language, get a live, sound- and gesture-reactive render in about fifteen seconds, refine conversationally, share as a remixable file. Natural-language programming reaching real-time creative coding. link
  • Struggle of Seeds: Robotic Photography as a Performative Agent - Primary research, SIGGRAPH 2026 Posters. A dual-arm robotic camera system that participates in live choreography rather than passively recording it, modeling photographic capture as temporal and spatial sampling that feeds back into the dancers' decisions. The camera as agent, formalized. link
  • Any Representation, Any Hardware, All Interactions: Accelerating Interactive Prototypes Over Cutting Edge AI & 3D Research - Primary research, SIGGRAPH 2026 Talks. NVIDIA's new Kaolin Library module for rapid web prototyping over emerging 3D and AI representations, shipping publicly with code samples and agent skills. Notable that "agent skills" is now part of a graphics library's release vocabulary. link
  • $100 AI Music Video: Claude Fable 5 vs. GPT-5.6 Sol - Social/community chatter, via Hacker News (387 points, 520 comments). A head-to-head where each frontier model directs a $100-budget AI music video. Methodologically loose, but the discussion volume shows creative-direction tasks becoming a popular informal benchmark for frontier models. link

AI Labor Effects

  • Kaiser nurses say AI, workplace surveillance are making their jobs, care worse - Social/community chatter, via Hacker News (480 points, 307 comments). Kaiser nurses report that AI tools and workplace surveillance are degrading both working conditions and patient care. The highest-traction item of the run, and a reminder that deployment quality, not model quality, is where AI meets most workers. link

Language Access

  • Labadain Chat: A Conversational Agent for the Tetun Language - Primary research, SIGIR 2026. Adapts existing LLMs into a conversational agent for Tetun, spoken by over 932,000 people in Timor-Leste, arguing that general-purpose assistants systematically underserve low-resource languages. A concrete template for language-specific adaptation work. link

Consumer AI Apps

  • Timeline Scan: AI fixes the dates on your scanned photos - Social/community chatter, via Hacker News. A small product that uses AI to infer and correct dates on scanned photos. Minor, but a tidy example of narrow AI products built on a single well-scoped inference task. link

Field Notes

  • [AINews] not much happened today - Named practitioner synthesis, Latent Space. Their daily roundup explicitly calls it a quiet day. Worth recording as a velocity datapoint: the news cycle is exhaling after the Kimi K3 week, even as the proceedings pipeline above runs hot. link

Trends

The agent frame has fully annexed information retrieval. SIGIR 2026's proceedings, arriving in bulk today, treat agents as the organizing concept of the field: the keynote periodizes IR's whole history as leading to "search to ask to act," papers treat agents themselves as a retrieval corpus (LLM Agents Factory, echoing yesterday's AgentSearch), and the climate tutorial teaches diagnosing agentic RAG failure modes as a core skill. When a field's flagship conference reframes its own history around agents, that is a durable shift, not a news cycle.

Human-in-the-loop is converging as the deployed reality from both directions. The research side supplies frameworks (CIRC's joint cognitive teams, the social-conformity study of mixed human-AI spaces) and deployed systems (Flipkart's copilot, where humans keep all operational authority). The labor side supplies the pushback when that authority is not kept: the Kaiser nurses story, today's highest-traction item. The same lesson from four independent sources: autonomy is being bounded deliberately, and deployments that skip that step generate backlash.

AI security auditing is maturing from demo to practice. An AI-assisted audit surfaced real bugs in OpenVM's ZkVM, Capital One open-sourced an agentic scanner, and a position paper argues agent security must be treated as a systems property. Findings, tooling, and theory landing in the same window is what a subfield consolidating looks like.

Frontier access economics are visibly in flux. Fable 5 moves into Max plans (three corroborating sources), Anthropic negotiates to lease Meta compute (two corroborating sources), and open-model pressure keeps building underneath (state of open source AI, LM Studio Bionic bringing agents to local models). Pricing, packaging, and compute sourcing are all moving in the same week, and competition is the stated mechanism in each case.

Predictions

Frontier-tier capability will be repackaged as a subscription inclusion rather than a metered add-on across major labs within the 8-12 week horizon. The signal: Anthropic folding Fable 5 into Max plans days after Willison flagged GPT-5.6 Sol competition, while users publicly compared notes on credit friction. The inference: metered access to the top tier is a competitive liability once a rival includes it. Confirmation: OpenAI or Google matching with top-model inclusion in their premium subscriptions. Kill: Fable access quietly re-restricted, or rivals holding the metered line past September.

Agentic security auditing moves from novelty to expected practice. The signal: real cryptographic-infrastructure bugs found by AI audit, an enterprise open-sourcing its scanner, and systems-level theory arriving together. The inference: within the horizon, expect disclosed vulnerability batches routinely crediting AI-assisted audits and at least one more major enterprise releasing comparable tooling. Confirmation: CVE credits naming agentic tools, or curricula and CTFs adding AI-audit tracks. Kill: a high-profile false-positive or missed-critical incident that stalls adoption. If the Fable-access prediction firms up in the next few digests, it should move to the forecast watchlist rather than recur here.

Top picks

  • From Search to Ask to Act (link): a SIGIR keynote that gives a curriculum its narrative spine for how IR became agentic AI, from a researcher who worked both eras.
  • Characterising the Effects of Social Conformity on Information Seeking in Mixed Human-AI Environments (link): peer-reviewed SIGIR work on exactly the environment students inhabit, with direct AI-literacy teaching value.
  • Claude make Fable 5 permanent (link): the best-sourced item of the run, corroborated three ways, and the clearest read on why frontier access economics are shifting.
  • AI Meets Cryptography 2: What AI Found in OpenVM's ZkVM (link): public, inspectable evidence of AI auditing finding real bugs in hard cryptographic code, ready-made security teaching material.
  • A Cost-Efficient AI Copilot for High-Volume E-commerce Customer Support (link): a deployed, peer-reviewed human-in-the-loop system with cost as a first-class constraint, the pattern most students will actually build.