Saturday, April 11, 2026
Daily picks
22
articles scored
#1 GOLDReleaseClaude Code Releases
Claude Code v2.1.101 — /team-onboarding, OS CA cert trust, command injection fix, memory leak, 20+ fixes
- New `/team-onboarding` command: generates a teammate ramp-up guide from your own local Claude Code usage history — useful for async onboarding without writing docs manually
- OS CA certificate store is now trusted by default, so enterprise TLS proxies work without extra setup; opt out with `CLAUDE_CODE_CERT_STORE=bundled` if you need the old behavior
- Security fix: command injection vulnerability in the POSIX `which` fallback used by LSP binary detection — patched
- Memory leak fix: long sessions were retaining dozens of historical copies of the full message list in the virtual scroller — now cleaned up
- `/ultraplan` and remote-session features no longer require web setup first — they auto-create a default cloud environment
- Multiple `--resume` fixes: context loss on large sessions, crash when a persisted Edit/Write result was missing `file_path`, and cross-subagent chain bridging into the wrong conversation
#2 SILVERGuideDev.to Claude
Stop Putting Best Practices in Skills
- Skills in Claude Code only get invoked 6–66% of the time; CLAUDE.md is always in context — so anything you want Claude to *always* do should live in CLAUDE.md, not a skill
- The author ran 51 multi-turn evals across 4 configurations, replicated Vercel's single-shot experiment in realistic sessions, and read Claude Code's source to confirm: skills and CLAUDE.md are both just prompts, but skills depend on a chain of decisions that frequently fails
- Rule of thumb: CLAUDE.md for guidelines, coding standards, and non-negotiable behavior; skills for on-demand recipes ('run this audit', 'generate this template', 'open a PR')
#3 BRONZEGuideDev.to Claude
Most of your Claude Code agents don't need Sonnet
- Haiku costs $0.25/1M input tokens vs Sonnet's $3/1M — a 12x difference — and for mechanical tasks (commit messages, code review, docs, CI config, test running) Haiku is plenty
- The author runs 50 agent calls/day; only 8 hit Sonnet — the remaining 68% run Haiku, with 2 local Ollama models at zero API cost
- Sonnet stays on tasks where wrong answers are expensive: planning, multi-file debugging, security review, complex implementation
