The Radar
Sunday, 21 June 2026
Today's picks
Perplexity Brain
AI AgentsA self-improving memory system that builds a context graph from an agent's work and learns overnight.
Most agent memory systems remember the user. Brain remembers the agent's own work, what succeeded, what failed, and what corrections were applied. It reviews that graph overnight and feeds the improvements forward. That feedback loop is a genuinely different approach to agent reliability.
AWS Continuum and Context
AI InfrastructureTwo new AWS services that patch the security and business-context gaps in AI agents.
Continuum finds and fixes code vulnerabilities automatically. Context builds a knowledge graph from corporate data so agents actually understand the business they are operating in. Both ship as managed services, which means adoption friction is low.
Cloudflare Temporary Accounts for AI Agents
AI SecurityEphemeral Cloudflare accounts that AI agents can spin up and use without shared credentials.
Giving agents persistent credentials is a known risk. Cloudflare's approach is to hand out short-lived accounts scoped to a task, then discard them. It is a clean infrastructure primitive for anyone building agents that touch the web.
Also on the radar
VibeThinker-3B
AI ResearchA 3B model trading punches with much larger ones is always worth a look. MIT licence keeps it genuinely open. The Spectrum-to-Signal post-training pipeline is the interesting methodological detail here.
LFM2.5 Retrievers
AI InfrastructureLiquid AI is shipping search models that run on edge hardware and cover 11 languages. The ColBERT late-interaction variant is the interesting one for retrieval quality. Worth testing if you are building multilingual RAG pipelines outside of cloud-only setups.
Hermes Agent Blank Slate Mode
AI AgentsStarting an agent with everything disabled except the bare essentials is a sensible default. Opt-in toolsets mean less surface area for things to go wrong. Small update, but the right instinct for production agent design.
Persona.js
Developer ToolsNo framework dependencies, MIT licence, and native WebMCP support out of the box. If you want agent UI without pulling in a large dependency tree, this is worth a look. Early days but the approach is clean.
Lelu
AI SecurityPrompt injection and agent manipulation are real production problems. Lelu sits as an authorisation layer that catches agents acting outside their intended scope. Open source and early, but the category is increasingly important.
Callimachus
AI CodingAgent sessions accumulate a lot of useful context that disappears the moment the chat closes. Callimachus indexes that history locally so you can search across it. Practical and immediately useful for anyone running coding agents daily.
Hacker News
Temporary Cloudflare accounts for AI agents
209 pts 110 commentsCloudflare has shipped ephemeral accounts scoped to individual agent tasks. Agents get short-lived credentials rather than shared persistent ones, which cuts the blast radius when something goes wrong. A clean primitive for anyone building web-facing agents.
Building reliable agentic AI systems
104 pts 20 commentsMartin Fowler's site hosts a detailed write-up on what actually makes agentic systems reliable in production. Covers failure modes, retry logic, and human-in-the-loop design. Practical rather than theoretical.
Show HN: Persona.js – a vanilla-JS agent UI library with native WebMCP (MIT)
10 pts 13 commentsA lightweight, dependency-free JavaScript library for building agent chat interfaces with native WebMCP support. MIT licensed and runs without a framework. Early but worth watching for anyone building lean agent UIs.
AutoJack: A single page can RCE the host running your AI agent
6 pts 0 commentsMicrosoft's security blog details how a single malicious web page can trigger remote code execution on the machine running an AI agent. Demonstrates the real-world risk of agents browsing untrusted content. Sobering reading for anyone shipping web-enabled agents.
Show HN: Callimachus – Local search across your AI coding-agent history
4 pts 2 commentsCallimachus indexes your local coding agent session history and makes it searchable. Solves the real problem of losing context between agent sessions. Simple idea, genuinely useful for heavy agent users.