INTELLIGENCE INDEX872 articles · page 9 of 37

PAYLOADS
// INTELLIGENCE

Technical guides, research notes, and operator dispatches on AI agents, model infrastructure, and secure deployment.

Category
Ecosystem
AI MODELS

Microsoft Just Dropped Seven In-House AI Models. The OpenAI Divorce Is Real.

At Build 2026 on June 2, Microsoft launched seven homegrown MAI models — including a 1T-parameter reasoning model trained from scratch on Maia 200 silicon with zero distillation. The 10x efficiency win over GPT-5.4 on a tuned Excel model and the McKinsey numbers are the real story. The OpenAI partnership just became a footnote.

#microsoft#mai#build-2026#ai-models+5
AI MODELS

Stop Reading the Claude Opus 4.8 Benchmarks. Read the Invoice.

Anthropic shipped Claude Opus 4.8 on May 28, 2026, and the AI press is missing the real story. The 3x cheaper fast mode, the new Dynamic Workflows feature, the 61% Databricks cost reduction, and the effort-control dial collectively reshape the unit economics of running frontier AI agents in production. This is not a model upgrade. It is a price war.

#anthropic#claude#claude-opus-4.8#ai-models+4
OPEN SOURCE

Letta: The Open-Source Agent Framework That Finally Treats the LLM Like an Operating System

Most agent memory is retrieval-augmented guessing. Letta, the open-source descendant of the MemGPT paper, takes a different bet: give the LLM explicit memory-management tool calls and let it page its own context window like a kernel pages RAM. That architectural choice is the most interesting thing happening in open-source agent infrastructure right now.

#letta#memgpt#ai-agents#open-source+3
OPINION

Context Windows Are a Dead End, and You're All Counting the Wrong Number

Every frontier lab is racing to announce the biggest context window they can. 200K, 500K, 1M, 2M tokens. The number on the marketing slide is the metric that matters least. Here is why the long-context arms race is a distraction from the engineering work that actually moves production AI forward.

#opinion#hot-take#llm#context-windows+2
TUTORIAL

Setting Up LiteLLM as a Unified API Proxy: One Endpoint, Every LLM

Stop writing provider-specific code for OpenAI, Anthropic, and Google. LiteLLM is the open-source proxy that gives you one OpenAI-compatible endpoint for every LLM, with virtual keys and spend tracking built in. Twenty minutes from zero to a unified API.

#tutorial#litellm#llm-proxy#api-integration+2
AI SECURITY

The First Real LLM Agent Cyberattack Just Happened and Defenders Are Not Ready

On May 10, 2026, the Sysdig Threat Research Team documented the first publicly confirmed LLM agent-driven cyberattack: from a Marimo RCE to a full PostgreSQL exfiltration in under an hour, with the SSH bastion phase finishing in two minutes. Here is the forensic timeline, the four markers that prove it was an agent, and the detection patterns defenders need to ship this week.

#llm-agents#cybersecurity#ai-security#sysdig+4
OPEN SOURCE

Distilabel: The Open Source Synthetic Data Factory That Changes Everything About Fine-Tuning

Most teams fine-tuning models are leaving performance on the table because they're treating training data as an afterthought. Distilabel — the open-source synthetic data pipeline framework — is how serious teams generate high-quality training data at scale without relying on naive LLM generation or expensive human annotation.

#distilabel#synthetic-data#fine-tuning#open-source+3
AI INFRASTRUCTURE

The Model Context Protocol Is the USB-C Moment AI Was Waiting For

For two years, every AI team I've worked with has faced the same problem: integrating AI models with real tools, real data, real services is a custom engineering project every single time. MCP changes that. Here's why the protocol that nobody talked about six months ago is about to become the most important standard in AI.

#mcp#model-context-protocol#ai-interoperability#ai-infrastructure+3
AI AGENTS

MOSS and the Self-Evolving Agent Era: The Technical Breakthrough Nobody Is Covering Correctly

A new paper from arXiv describes an AI agent that rewrites its own source code when it fails — not its prompts, not its memory schema, its actual code. Combined with Fujitsu's production self-evolution data, this changes everything about how we think about agent maintenance.

#moss#self-evolving-agents#agentic-ai#source-level-rewriting+3
AI MODELS

Google I/O 2026: Gemini 3.5 Flash Is the LLM the Industry Needed

Google I/O 2026 delivered the most practically significant LLM announcement in months: Gemini 3.5 Flash ships at half the cost of comparable models with competitive reasoning benchmarks. This isn't about benchmarks — it's about economics.

#google#gemini#gemini-3.5-flash#i/o-2026+2
OPEN SOURCE

Airflow for AI Pipelines: The Open Source Tool Nobody Talks About

Every AI team eventually discovers that their models are the easy part. The hard part is everything around them: data validation, model serving, monitoring, retraining triggers. Apache Airflow has been solving this problem for years, and it's still the best option for complex AI pipeline orchestration.

#airflow#open-source#pipeline#orchestration+2
OPINION

AI Coding Assistants Are Making Engineers Worse and I Don't Care Who Disagrees

Every study published in the last two years showing AI coding tools improve productivity is measuring the wrong thing. Productivity metrics don't capture what happens to engineers who stop thinking for themselves. I'm watching this happen in real time and it's exactly as bad as you think.

#opinion#ai-coding#developer-tools#productivity+2
TUTORIAL

The One Pattern That Actually Works for Structured Outputs Every Time

After two years of watching teams struggle with getting LLMs to output consistent structured data, I've found the combination that works. It's not a fancy prompt technique. It's just being explicit about what you want in a way the model can't misunderstand.

#tutorial#structured-outputs#prompt-engineering#json-schema+2
AI AGENTS

Fujitsu Just Solved the Problem That Was Going to Kill Enterprise AI Agents

Yesterday Fujitsu announced self-evolving multi-agent technology that learns from its own failures — and achieves 28-point accuracy gains without human intervention. This is the missing piece that enterprise AI has been waiting for.

#fujitsu#self-evolving-agents#multi-agent#enterprise-ai+3
AI INFRASTRUCTURE

llama.cpp Finally Got Multi-Token Prediction — Here's Why It Matters

llama.cpp merged Multi-Token Prediction support — and if you're running local LLMs, this is the upgrade you've been waiting for. Here's what it does and why it matters.

#llama.cpp#local LLMs#inference#open source+1
TUTORIAL

How to Set Up a Local LLM in 20 Minutes with Ollama

Stop paying per-token fees for development work. Here's how to get a production-quality LLM running on your own machine in under 20 minutes, with the exact setup I use every day.

#ollama#local-llm#AI#productivity+2
TUTORIAL

The Multi-Agent Architecture Switch Nobody Is Talking About (But Should Be)

The biggest infrastructure decision your AI team will make this year isn't which model to use. It's whether your agents work together through orchestration or through auction. Only one of those scales.

#multi-agent#agentic-ai#orchestration#auction+3
NEWS

Google Gemini 3.5 Flash Is the First AI Model That Actually Chose Speed Over Everything

Google I/O 2026 just shipped something the industry has been pretending to want for two years: a frontier-quality model that's genuinely cheap and genuinely fast. Gemini 3.5 Flash isn't a lighter model. It's a redefinition of what a production LLM should be.

#google#gemini#gemini-35-flash#google-io+4
TUTORIAL

Tool Use Patterns for AI Agents: What Actually Works

Every AI agent framework eventually runs into the same wall: the model knows the tools exist, but it doesn't know how to use them reliably. Here's the engineering discipline that actually makes tool calling work.

#tutorial#ai-agents#tool-use#agentic-ai+2
OPINION

AI Coding Assistants Are Making Developers Worse

Every team is racing to adopt AI pair programmers. The data from places that have used them longest tells a darker story: the tools that were supposed to make us sharper are making us duller.

#hot-take#ai-coding#developer-tools#opinion+2
TUTORIAL

Running Local LLMs for Development: My Ollama Setup That Actually Works

Stop paying for API calls when you are iterating on prompts. Here is how I run Llama 3 and friends locally in under 10 minutes.

#tutorial#llm#ollama#local-development+1
OPINION

The Context Window Arms Race Is a Waste of Everyone's Time

Bigger context windows won't save you from bad architecture. They'll just let you delay the reckoning longer.

#hot-take#ai#context-windows#architecture+1
TUTORIAL

The .cursorrules File Patterns That Actually Work

Cursor's .cursorrules file is the most powerful config you're probably ignoring. Most teams write one paragraph. Here's how to write one that actually changes how the AI behaves on your codebase.

#tutorial#cursor#cursorrules#AI coding+2
NEWS

Thinking Machines Lab Just Changed the Conversation About AI

Mira Murati's Thinking Machines Lab shipped its first model on May 11, 2026 — and nobody in the press is writing about the right part. This isn't a faster voice model. It's a fundamentally different architecture for how humans and AI collaborate.

#thinking-machines#mira-murati#interaction-model#real-time-ai+4