Claude Code Daily · Edition 037 · Thursday, May 7, 2026

Chasing the
aurora.

Tonight, somewhere above the 60th parallel, charged particles from the sun are colliding with oxygen and nitrogen — painting the sky in ribbons of green, violet, and crimson. The same kind of quiet, patient choreography that great tooling brings to a long coding session.

300km
Avg aurora altitude
~1M mph
Solar wind speed
11 yrs
Solar cycle length
Kp 9
Maximum geomagnetic index
Today's Claude Code Feature

Subagents — delegate without losing the thread

A subagent is a focused worker that Claude Code spawns inside your session to handle one slice of a larger task. It runs with its own context window, its own instructions, and returns just a summary — keeping your main conversation tidy while heavy lifting happens in parallel.

Tell the orchestrator what you want, and it'll fan out the work:

# In Claude Code, ask the orchestrator to split work across subagents: > Audit the auth service. Spawn three subagents in parallel: one to check for SQL injection paths, one to review JWT handling, one to map every public endpoint. Give me a punch list at the end. # Or define a custom subagent in .claude/agents/security-reviewer.md # with its own system prompt, tools, and model — and call it by name.

Each subagent gets a fresh context, so a long research pass doesn't bloat your main session. Bring back what matters; leave the noise behind.