What's New in AI — April 19, 2026
Three stories from this week: Opus 4.7 reliability, Claude Code stability fixes, and the rise of Mastra
Claude Opus 4.7 Is a Reliability Release, Not a Leaderboard Release
Anthropic shipped Opus 4.7 on April 16. Headline numbers: 92% honesty rate, 87.6% on SWE-bench Verified, and 77.3% on MCP-Atlas for multi-step tool orchestration. Pricing held flat at $5 in, $25 out per million tokens. [1]
My Take
The practical read: this is a model tuned for the failure modes that actually bite agentic systems. Honesty rate is the one I care about most. A model that refuses to fabricate a tool result, or admits it does not know a file path, is worth more than a model that scores two points higher on MMLU. MCP-Atlas at 77.3% says Opus 4.7 is getting better at chained tool orchestration — which is exactly where most real skills live. If you are running anything agentic in production, the upgrade from 4.6 to 4.7 is low risk and high value.
Claude Code 2.1.113 and 2.1.114 Quietly Fixed the Things That Were Breaking Your Skills
Two Claude Code releases dropped on April 17 and 18. [2] The changelog is long, but two fixes matter if you are running real skills:
First, the MCP concurrent-call timeout bug. If you had a skill making parallel tool calls and one of them silently hung, the watchdog for a sibling call could get disarmed by an unrelated message, and the whole chain would stall with no error. That is fixed.
Second, subagents that stall mid-stream now fail with a clear error after 10 minutes instead of hanging forever. If you orchestrate background work with subagents, this is the difference between "I got a clean failure I can retry" and "I don't know what happened to my morning brief."
There is also a ToolSearch ranking fix so pasted MCP tool names surface the actual tool instead of a description-matching sibling, and a plugin install conflict detector. Both small, both the kind of thing you don't notice until you do.
My Take
Reliability work rarely gets a press release. The only reason I flagged these two is that my own morning briefing stalled twice last week on exactly the subagent-stall pattern the 2.1.114 notes describe. Update Claude Code. Rerun whatever broke last week. It will probably just work now.
Mastra Hit v1.0 and Is Moving Serious Volume for a TypeScript Agent Framework
Mastra, the TypeScript-first agent framework from the team behind Gatsby, hit v1.0 in January and is now pulling 1.77 million monthly npm downloads. [3] Y Combinator, Paul Graham, and Guillermo Rauch are on the cap table.
Why it matters to anyone building an agentic OS: Mastra ships a four-tier memory system (message history, working memory, semantic recall, RAG), graph-based workflows with .then(), .branch(), and .parallel() primitives, and a .network() method that lets any agent become a router. It is the first production-ready agent framework that does not require leaving the JavaScript ecosystem.
My Take
I am not switching off Python for Chento-OS, but the signal here is bigger than the framework itself. Agent tooling is converging on the pattern Chento already runs: layered memory, graph workflows, subagent delegation. When a framework clears a million downloads a month validating those primitives, the path you are on gets wider.
If you are shipping anything agentic, update Claude Code, audit your longest subagent chain for where it could silently hang, and watch what the TS ecosystem does with Mastra. Reliability and orchestration are where the next 12 months of differentiation live.
Sources
${sourcesHtml}
Originally published on chento.io