Field Note · Marine Science
The largest neighbourhood you've never visited
The mesopelagic zone — roughly 200 to 1,000 metres down — is the planet's
biggest single ecosystem by volume, and the most under-surveyed. It hosts the daily
migration of small fish and squid that rise toward the surface each night to feed and
sink again at dawn. By biomass, it's one of the largest animal movements on Earth, and
it happens on a clock so reliable that submarines once mistook the layer for the seafloor.
Most residents glow. Roughly four out of five mesopelagic species produce their own light —
not for ambience, but for hunting, hiding, and finding mates in a place where a single
photon is a paragraph. The chemistry is simple (a molecule called luciferin, an enzyme
called luciferase, a little oxygen). The variety is not.
~76%
Species that bioluminesce
1,000m
Lower edge of twilight
10 billion t
Est. mesopelagic biomass
CC
Today's Claude Code feature · Subagents
Send a swarm, not a soloist.
Subagents let Claude Code spawn focused, parallel helpers — each with its own tools,
prompt, and context window — to investigate a codebase, run a review, or chase a bug
while the main thread keeps planning. Define them once in .claude/agents/,
describe when they should be used, and Claude routes work to them automatically. It's
the difference between one diver and a research expedition.
# .claude/agents/code-reviewer.md
---
name: code-reviewer
description: Use proactively to review code changes for security and correctness.
tools: Read, Grep, Glob, Bash
---
You are a senior reviewer. For each diff, check for injection risks,
N+1 queries, missing error handling, and broken invariants.
Report findings as a punch list, ordered by severity.