TechCrunch AI
·
5 hours ago
The Model Context Protocol, a key standard for connecting AI models to external services, is being updated to change how it handles session identifiers to work better at scale. The new version uses stateless session management instead of requiring servers to track individual session IDs, similar to how most websites operate. This change should make it easier for companies to deploy MCP servers across multiple machines and distributed systems without extra infrastructure complexity.
Simon Willison
·
6 hours ago
Coding agents have lowered the cost of writing automation code, making it economically sensible to reverse-engineer and automate home devices that previously wouldn't justify the effort. The reduced friction means developers can now prototype and maintain custom integrations without significant time investment or concern about future maintenance burden. This shifts the calculus for small personal projects where the human effort required was historically the limiting factor rather than technical difficulty.
Ars Technica
·
14 hours ago
Augment Code's VP of Engineering Vinay Perneti argues for pre-indexing code repositories using semantic retrieval and embeddings, contrasting with Anthropic's Claude Code approach which uses simpler grep-based context discovery. Augment Code achieved 33 percent better token efficiency than Claude Code on the same benchmark while maintaining similar accuracy. The dispute centers on whether building specialized context engines is worth the investment given rapid model improvements, with Perneti contending that context quality remains essential regardless of model intelligence gains.
TLDR Dev
·
14 hours ago
A developer shows how to reduce AI token costs by replacing skills-based agent workflows with swamp workflows, cutting token usage 8x and runtime in half for a code review task. The Garfield code review skill used 4.5 million tokens across 23 sub-agents in 12 minutes, while the swamp version used 500 thousand tokens across 3 agents in 6.5 minutes. By moving coordination logic into deterministic code and using LLMs only where their intelligence adds value, developers can build more efficient agent systems.
TLDR
·
15 hours ago
scroll-world is a GitHub repository containing an agent skill for Claude Code, Codex, and compatible AI agents that generates immersive scroll-driven landing pages where a camera flies continuously through generated isometric scenes without cuts. The skill uses Higgsfield for art generation and Seedance or Kling for camera flight videos, with costs ranging across different render tiers estimated before generation begins. Users can invoke the skill to create branded landing pages for any industry, with optional mobile portrait versions automatically served on phones, using a portable vanilla-JavaScript scrub engine compatible with HTML, Next.js, Vue, or Python-served pages.
TLDR
·
15 hours ago
Anthropic describes a six-step methodology for using Claude Code to automate large-scale code migrations between programming languages, involving creating translation rules, stress-testing with mini-migrations, translating files with multi-agent loops, and validating behavior against test suites. The process was validated on migrations including 1,448 Zig files to Rust and a Python-to-TypeScript port, with adversarial reviewers catching systemic issues and rewritten rules preventing repeated mistakes. Teams can now migrate codebases systematically by establishing judges before starting, using agents for parallel work, and treating compiler output and test failures as mechanical sources of truth rather than requiring manual fixes.