Donna AIWednesday, April 15, 2026 · 6:01 AMNo. 175

Intellēctus

Your Daily Artificial Intelligence Gazette



AI Daily Briefing — April 15, 2026

Today's dispatch is dense with developer signal: Anthropic ships SDK updates marking Claude 3 models as deprecated, Claude Code gets a major desktop redesign, and a community developer turns it into a fleet of always-on personal assistants. Meanwhile, AI chatbots are pushing into hospitals, and the UK government's cybersecurity AI benchmark is producing its first serious results.


🏥 AI in Health & Society

Americans ask AI for health care. Hospitals think the answer is more chatbots. — Patients are already turning to general-purpose AI for medical questions, and hospitals are responding by embedding chatbots directly into patient portals. The tension here is real: clinically-tuned bots in sanctioned systems may be safer than patients self-diagnosing with ChatGPT, but trust, liability, and accuracy at the margins remain open problems.

A New AI Tool Could Transform How We Diagnose Genetic Diseases — Mayo Clinic and Goodfire are collaborating on an AI diagnostic tool aimed at rare genetic diseases, where misdiagnosis rates are notoriously high. The tool leverages mechanistic interpretability techniques to help clinicians understand why the model flags specific variants — a meaningful step toward AI-assisted diagnosis that doctors can actually audit.


🔐 Cybersecurity & AI Risk

UK gov's Mythos AI tests help separate cybersecurity threat from hype — The UK government's Mythos benchmark is designed to rigorously evaluate AI systems on real-world offensive cybersecurity tasks, and a new model has become the first to complete a difficult multistep network infiltration challenge. This is significant: prior evaluations largely showed AI overhyped as a cyberattack enabler, but Mythos is starting to find the frontier where that calculus changes.

LLM Guard vs. Arc Sentry: Multi-Turn Jailbreak Detection — Two Reddit posts highlight a striking gap in jailbreak defense tooling: LLM Guard scored 0 out of 8 detecting a Crescendo multi-turn attack (the USENIX Security 2025 technique that gradually steers models toward harmful output), while Arc Sentry — a pre-generation residual stream guardrail — flagged the same attack at Turn 3. The approach of reading internal model activations rather than output text looks promising for catching attacks that deliberately fly under the radar turn by turn.

The IRS Wants Smarter Audits. Palantir Could Help Decide Who Gets Flagged — Documents obtained by Wired reveal Palantir is in discussions to support IRS fraud detection, specifically targeting clean energy tax credit claims. The use of AI-driven audit targeting raises pointed questions about algorithmic bias and due process when the government uses opaque models to decide who gets scrutinized.


🤖 Agents & Tooling

ClawRun – Deploy and manage AI agents in seconds — A new open-source tool for rapid AI agent deployment and management, ClawRun targets teams that want to spin up and orchestrate agents without deep infrastructure overhead. Early-stage but worth bookmarking if you're building multi-agent pipelines.

Plain – The full-stack Python framework designed for humans and agents — Plain positions itself as a batteries-included Python web framework built with agentic workflows in mind from the ground up, not bolted on after the fact. The "Show HN" framing suggests it's early, but the premise — that frameworks need to be rethought for agent-driven codebases — is the right question to be asking.

You can decompose models into a graph database — The LARQL project enables decomposing LLM model weights and structure into a queryable graph database, opening up new angles for model inspection, interpretability research, and potentially novel fine-tuning workflows. Still research-grade, but a creative framing of the "model as data" idea.


📡 Industry Signals

Anthropic Preps Opus 4.7 Model, could release as soon as this week — The Information reports Anthropic is preparing to ship Opus 4.7, potentially alongside an AI design tool. This aligns with the SDK deprecation notices for Claude 3 Sonnet and Opus hitting today (see Developer Corner below) — the model generation transition appears to be moving fast.

Lumen's CEO warns that AI bots now rule the internet — The CEO of Lumen Technologies, one of the largest backbone network operators, is flagging that automated AI traffic now dominates internet volume. This has real infrastructure implications: bandwidth planning, bot detection, and the economics of content delivery all shift when the majority of requests aren't human.


🛠️ Claude Code Developer Corner

Claude Code v2.1.108 — Caching Controls, Recap, and Slash Command Discovery

The v2.1.108 release ships three meaningful changes:

  • Prompt cache TTL control: Set ENABLE_PROMPT_CACHING_1H to opt into a 1-hour cache TTL across API key, Bedrock, Vertex, and Foundry. FORCE_PROMPT_CACHING_5M pins to the shorter 5-minute TTL. Note: ENABLE_PROMPT_CACHING_1H_BEDROCK is deprecated but still honored — migrate off it. This gives you real cost control levers for long-running sessions.
  • Session recap feature: When you return to a paused session, Claude Code can now provide a context recap. Configurable via /config, manually invocable with /recap, and force-enabled with CLAUDE_CODE_ENABLE_AWAY_SUMMARY if telemetry is disabled. Big quality-of-life win for async/overnight agent runs.
  • Built-in slash command discovery: The model can now discover and invoke built-in slash commands autonomously — meaning agents can self-navigate Claude Code's tooling without you manually wiring up command invocations.

Desktop Redesign: Built for Parallel Agentic Work

The Claude Code desktop app has been significantly redesigned: new sidebar for parallel sessions, drag-and-drop layout, integrated terminal, and the ability to run multiple agents from a single window. If you've been context-switching between terminal tabs to manage concurrent agents, this directly addresses that friction.

SDK Updates: Sonnet and Opus 4 Marked Deprecated

Both the Python SDK v0.95.0 and TypeScript SDK v0.89.0 shipped today, and both mark Claude Sonnet 4 and Opus 4 as deprecated in the API. If you're pinning to those model strings in production, start planning your migration path now — especially given the Opus 4.7 reports above suggesting the next generation is imminent.

Community: Hermit Plugin & Degradation Reports

Developer claude-code-hermit turns Claude Code into a persistent, learning personal assistant — the author runs five instances simultaneously on a single laptop, with each agent accumulating context and tooling over time. Inspired by OpenClaw's autonomous agent approach, it's a compelling demo of what "always-on" looks like at the edge.

Separately, there's a notable community thread documenting Claude Code quality degradation since February. The post attempts to isolate whether this is model-side or tooling-side — worth reading if you've noticed behavioral regressions in your own Claude Code workflows.


👀 Worth Watching

  • AI as ADHD accommodation — A Reddit thread documents the sharp community reaction to framing AI as a legitimate neurodiversity accommodation. The debate is messy, but the underlying question — whether AI assistants reduce or reinforce cognitive load disparities — is genuinely underexplored in accessibility research.

  • AI weather forecast dataset (38 days) — A researcher has been running daily LLM-generated 10-day forecasts for 38 days and is now mining the prospective dataset for surprises. The value here is that the forecasts can't be retrofitted — this is real out-of-sample evaluation of AI prediction at a time horizon that matters.

  • JL-Engine: Sub-millisecond Julia AI agent — A Julia-based agent runtime claiming sub-millisecond latency with self-extending tool creation. Niche, but Julia's performance profile is genuinely interesting for inference-adjacent tasks where Python's overhead compounds.


Sources

  • Americans ask AI for health care. Hospitals think the answer is more chatbots. — https://arstechnica.com/health/2026/04/americans-ask-ai-for-health-care-hospitals-think-the-answer-is-more-chatbots/
  • UK gov's Mythos AI tests help separate cybersecurity threat from hype — https://arstechnica.com/ai/2026/04/uk-govs-mythos-ai-tests-help-separate-cybersecurity-threat-from-hype/
  • A New AI Tool Could Transform How We Diagnose Genetic Diseases — https://time.com/article/2026/04/14/ai-disease-genetic-mayo-clinic-goodfire/
  • LLM Guard scored 0/8 detecting a Crescendo multi-turn attack. Arc Sentry flagged it at Turn 3. — https://reddit.com/r/artificial/comments/1slmjug/llm_guard_scored_08_detecting_a_crescendo/
  • Free LLM security audit — https://reddit.com/r/artificial/comments/1slmx03/free_llm_security_audit/
  • The IRS Wants Smarter Audits. Palantir Could Help Decide Who Gets Flagged — https://www.wired.com/story/documents-reveal-palantir-irs-contract-fraud-clean-energy-credits/
  • ClawRun – Deploy and manage AI agents in seconds — https://github.com/clawrun-sh/clawrun
  • Show HN: Plain – The full-stack Python framework designed for humans and agents — https://github.com/dropseed/plain
  • You can decompose models into a graph database [N] — https://reddit.com/r/MachineLearning/comments/1slmfmw/you_can_decompose_models_into_a_graph_database_n/
  • The Information: Anthropic Preps Opus 4.7 Model, could be released as soon as this week — https://www.theinformation.com/briefings/exclusive-anthropic-preps-opus-4-7-model-ai-design-tool
  • Lumen's CEO warns that AI bots now rule the internet — https://happymag.tv/lumens-ceo-warns-ai-bots-rule-internet/
  • [claude-code] v2.1.108 — https://github.com/anthropics/claude-code/releases/tag/v2.1.108
  • [claude-code] Changelog v2.1.108 — https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md#21108
  • Claude Code on desktop, redesigned for parallel agentic work. — https://v.redd.it/j9kaqnone7vg1
  • [anthropic-sdk-python] v0.95.0 — https://github.com/anthropics/anthropic-sdk-python/releases/tag/v0.95.0
  • [anthropic-sdk-typescript] sdk: v0.89.0 — https://github.com/anthropics/anthropic-sdk-typescript/releases/tag/sdk-v0.89.0
  • I built a plugin that turns Claude Code into an always-on personal assistant that actually learns — https://reddit.com/r/ClaudeAI/comments/1slq1ji/i_built_a_plugin_that_turns_claude_code_into_an/
  • Claude Code Degradation: An interesting and novel find — https://reddit.com/r/artificial/comments/1slhln5/claude_code_degradation_an_interesting_and_novel/
  • thought experiment about how people see AI — https://reddit.com/r/artificial/comments/1slppzq/thought_experiment_about_how_people_see_ai_aka/
  • Digging through 38 days of live AI forecast data to find the unexpected — https://i.redd.it/608jxfajn7vg1.png
  • JL-Engine a sub ms julia based ai agent? — https://reddit.com/r/artificial/comments/1slo319/jlengine_a_sub_ms_julia_based_ai_agent/