Thursday, April 16, 2026
Daily picks
20
articles scored
#1 GOLDReleaseClaude Code Releases
v2.1.110
- Run `/tui fullscreen` to switch to flicker-free rendering in the same conversation — finally fixes the flickering that made fullscreen hard to use in long sessions
- Claude can now send mobile push notifications when Remote Control is enabled — your phone pings you when a long-running task finishes
- The Write tool now tells Claude when you edit its proposed content in the IDE diff before accepting — Claude sees your manual edits and can reason about why you changed them
- `/autocompact`, `/context`, `/exit`, and `/reload-plugins` now work from Remote Control (mobile/web) — full session control from your phone
- `--resume`/`--continue` now resurrects unexpired scheduled tasks that were interrupted
- Session recap is now enabled for Bedrock, Vertex, and Foundry users (previously only opt-in); opt out via `/config` or `CLAUDE_CODE_ENABLE_AWAY_SUMMARY=0`
- Bash tool now enforces its documented maximum timeout instead of accepting arbitrarily large values
#2 SILVERTutorialDev.to Claude
What's eating your Claude Code context window? I wrote a 500-line Python script to find out
- `cc-healthcheck` is a single Python file, zero dependencies, that reads `~/.claude/` locally and tells you three things: what auto-loads into every session (CLAUDE.md chain, rules, skill frontmatter), whether your hooks are broken, and where last session's tokens actually went
- Shows per-model token totals, cache hit ratio, and system-reminder injection counts — so you can see if your prompt cache is actually working
- Catches common hook bugs: unquoted `|` operators, missing timeouts, and case-sensitivity traps that silently fail
#3 BRONZETutorialDev.to Claude
Architectural drift with Agentic coding. Here's what I built to fix it.
- `unkode` is a Claude Code skill that generates a `unkode.yaml` architecture map from your codebase — commit it to main as a versioned baseline
- On each PR, it diffs the current module graph against that baseline and flags new cross-layer dependencies ("Auth now imports from Billing — is that intended?")
- Solves a real agentic coding problem: Claude Code can add 14 imports across 8 files in one PR, and the diff is too big to catch the architectural implication by eyeballing it
