← Home

AI Briefing — 2026-07-22

🔬 Research

TimeLens2: Generalist Video Temporal Grounding with Multimodal LLMs

148 upvotes · Yuhan Zhu et al. · Paper

Video MLLMs are good at describing what happens, but struggle to pinpoint when. TimeLens2 tackles this with a novel interval-set supervision pipeline (93K samples) and a temporal Wasserstein reward that provides dense, matching-free training signal for variable-cardinality predictions. The 2B model beats all size-matched baselines across 7 benchmarks, and the 8B variant outperforms open-source models up to 397B parameters — improving its Qwen3-VL backbone by 18.1 mIoU points. A strong result that makes video temporal grounding practically viable at small model scales.


DeepSearch-World: Self-Distillation for Deep Search Agents in a Verifiable Environment

79 upvotes · Xinyu Geng et al. · Paper

Training web agents without distilling from stronger models is notoriously hard; this paper introduces a deterministic, reproducible environment (420K multi-hop QA tasks) that enables iterative self-improvement via trajectory filtering and fine-tuning. DeepSearch-World-9B reaches 31.2% on BrowseComp, 61.5% on GAIA, and 93.4% on HotpotQA — competitive with larger, teacher-distilled agents. The environment, data, and model will be fully released, making it a useful testbed for long-horizon agent research.


EvolvingWorld: An Open-Schema Framework for Co-Evolving Role-Play Agents and World Model in Interactive Literary Worlds

78 upvotes · Qing Zong et al. · Paper

Most interactive fiction systems treat characters as static personas; EvolvingWorld instead models long-horizon co-evolution of characters and world state. It uses a dual-module architecture (Character Agent + LLM World Model) with open schemas, trained on 57 books yielding 138K supervised samples and 7 formalized tasks. The evaluation protocol spans 10 dimensions / 20 metrics with trajectory-level LLM-as-Judge scoring — a rigorous benchmark for anyone building narrative or simulation agents.


🛠 Tools

bojieli/ai-agent-book — Open-source AI Agent engineering book

4,624 stars/day · Repo

"深入理解 AI Agent" ("AI Agents in Depth") by Li Bojie is a fully open-source 10-chapter book on AI agent design and engineering practice, complete with 88 hands-on experiments (70+ runnable standalone) and freely downloadable PDFs/EPUBs in 5 languages (Chinese, Traditional Chinese, English, Tamil, Vietnamese). With 16.6K total stars and still pushing updates today, it's a comprehensive, free reference for engineers getting up to speed on agent architecture — from LLM context management to production deployment.


diegosouzapw/OmniRoute — Free AI gateway with 268+ providers and auto-fallback

2,034 stars/day · Repo

OmniRoute exposes a single OpenAI-compatible endpoint routing to 268+ providers (50+ free tiers) covering 500+ models including Claude, GPT, Gemini, DeepSeek, and more. Key features include quota-aware auto-fallback, RTK+Caveman prompt compression (15–95% token savings), and compatibility with Claude Code, Cursor, Cline, and Copilot out of the box. Practically useful for developers wanting resilient, cost-optimized LLM access without managing multiple API keys.


tirth8205/code-review-graph — Local code intelligence graph for AI coding tools

1,925 stars/day · Repo

code-review-graph builds a persistent dependency/call graph of your codebase (Python 3.10+) and exposes it via MCP or CLI, so AI coding assistants only receive the relevant context instead of entire files. This directly addresses the context-window waste problem in large-repo workflows, with benchmarked reductions in tokens consumed during code review. At 25K total stars and MIT-licensed, it's gaining rapid traction as a practical complement to tools like Claude Code and Cursor.


📡 Analysis

Nativ: Run AI models locally on your Mac

2026-07-21 · Post · tags: macos, mlx, local-llms, python

Nativ is a new macOS desktop app by Prince Canuma (author of MLX-VLM) that wraps Apple's MLX framework into a full chat interface + localhost API server, similar in scope to LM Studio. Notably it auto-discovers models already present in your Hugging Face cache. For Mac-based engineers who want a no-friction local LLM setup without the CLI overhead, this is worth watching.


A Fireside Chat with Cat and Thariq from the Claude Code team

2026-07-21 · Post · tags: claude-code, coding-agents, prompt-engineering, anthropic

Simon Willison's annotated transcript of a fireside chat with Anthropic's Cat Wu and Thariq Shihipar is packed with operational insights: Claude Tag now lands 65% of PRs for the Claude Code team, the Claude Code system prompt recently shrank by 80%, and adding few-shot examples to prompts is no longer best practice for Fable 5 / Opus 4.8. A must-read for anyone building or tuning coding agents — the shift from "supervise every step" to "delegate and review" is well documented here.


Reverse-engineering is cheap now

2026-07-20 · Post · tags: reverse-engineering, coding-agents, ai-assisted-programming

Simon argues that coding agents have fundamentally changed the ROI calculus of reverse-engineering: the cost of writing, failing, and rewriting throwaway automation code is now low enough that projects previously not worth attempting (e.g., scripting undocumented home-device APIs) become viable. The implication for engineers is broader — technical debt anxiety decreases when code is cheap to regenerate, unlocking a new class of "disposable automation" workflows.


Sources: HuggingFace Papers API, GitHub Trending, simonwillison.net