Signal · 3
Articles worth keeping
Things I found useful and never want to lose — each with a note on why it mattered or how I used it. Pinned items stay on top.
Anthropic's field guide to building effective agents
The patterns behind my command center's agent loop — when a simple prompt chain beats an autonomous agent, and why simpler usually wins. Directly shaped how I dispatch headless runs.
Anthropic's prompt caching: automatic breakpoints, lookback quirks, pre-warming
Worth keeping as a reference for actually tuning cache hit rates instead of guessing. Key things I'd forget otherwise: the lookback window is only 20 blocks, cache writes happen ONLY at the breakpoint (not retroactively on stable content behind it), and there's now a max_tokens:0 pre-warm trick to kill first-token latency before real user traffic arrives. Also useful: exact pricing multipliers (5m writes 1.25x, 1h writes 2x, reads 0.1x base) and the table of what invalidates cache (tool defs invalidate everything; images/tool_choice only invalidate messages).
Why typed content collections make a site you can grow for years
The typed-markdown backbone this whole site runs on — one file per entry, a schema catching mistakes at build time. It's the reason adding a post or a pinned link is a 30-second edit, not a code change.