Claude Code Daily Briefing - 2026-05-18
Release Summary
| Version | Date | Key Changes |
|---|---|---|
| v2.1.143 | 5/15 | Plugin dependency management, marketplace token cost display, worktree.bgIsolation: "none", PowerShell Bypass |
(No new release as of 5/18 — latest version is v2.1.143 from 5/15.)
New Features & Practical Usage
Claude Code Weekly Limits Up 50% — Through July 13 (announced 5/13)
Anthropic has increased Claude Code weekly usage limits by 50%. The boost applies to all Pro, Max, Team, and seat-based Enterprise users immediately, running through July 13, 2026 at 6PM PDT.
Key details:
- No opt-in required — already live
- Applies everywhere Claude Code is used: CLI, IDE extensions, Desktop, and Web
- Stacks with the previously announced 5-hour limit doubling (enabled by SpaceX compute deal)
- Free plan excluded
The SpaceX Colossus 1 partnership (300MW+, 220,000+ NVIDIA GPUs) underpins this capacity expansion. Post-July 13 limits have not been announced.
ClaudeDevs announcement | Apidog analysis
Claude for Legal — 12 Practice-Area Plugins, 20+ Connectors (5/12)
Anthropic significantly expanded Claude for Legal. Claude Cowork now integrates with 12 practice-area specific plugins and 20+ legal platform connectors for specialized legal AI workflows.
12 plugin areas: Corporate, employment, regulatory, privacy, product liability, AI governance, intellectual property, litigation, and more.
20+ connectors: Thomson Reuters/CoCounsel, LexisNexis, iManage, NetDocuments, DocuSign, Ironclad, Box, Everlaw, Relativity, Consilio, and others.
Adoption: Freshfields, Quinn Emanuel, Holland & Knight are using Claude on live matters. Over 20,000 legal professionals signed up for Anthropic’s most recent legal webinar. Legal professionals have become the most engaged user group on Claude Cowork.
Developer Workflow Tips
The 60% Context Threshold Rule — More Effective Than /compact
Multiple practitioners have independently arrived at the same rule: reset your session when context exceeds 60%. It’s more effective than /compact because you control exactly what survives.
Method:
- Dump current plan and progress to a markdown file
- Run
/clearto reset the session - Start fresh with Claude reading that file
# Save progress then reset
# Ask Claude: "Write current plan and progress to progress.md"
# Then /clear
# New session: "Read progress.md and continue from where we left off"
/compact lets Claude auto-summarize, which can lose critical context. Manual reset ensures exactly the right information carries over.
The lessons.md Pattern — Let Claude Improve Itself
Every time Claude makes a mistake, after correcting it, have it add a rule to lessons.md. Over time, Claude literally teaches itself to be better at your specific project. Keep it separate from CLAUDE.md to avoid cluttering core configuration.
# lessons.md (example)
- Import paths in this project always use the @/ alias
- Test files use *.test.ts not *.spec.ts
- API responses always follow the { data, error } structure
Reference @lessons.md from CLAUDE.md so it auto-loads each session.
Ecosystem & Plugins
Code with Claude London (5/19) D-1 + Extended (5/20) D-2
The London event is tomorrow. In-person registration is closed; livestream registration is open and recordings will be available afterward. The May 20 Extended session targets indie developers and early-stage founders with hands-on workshops and 1:1 office hours. Tokyo (6/10) and Tokyo Extended (6/11) registration is also open.
Code with Claude London | London Extended
/ultrareview — Cloud Code Review from CI/Scripts (Research Preview)
The claude ultrareview subcommand lets you trigger ultrareview from CI or scripts without an interactive session. Multiple reviewer agents analyze changes in parallel in a cloud sandbox, independently reproduce and verify each finding, and return results focused on real bugs rather than style suggestions.
# Run ultrareview from CI
claude ultrareview
Pro/Max get 3 free runs, then ~$5–$20 per run. Requires v2.1.86+.
Community News
-
“After 3 months with Claude, Codex feels like a vibe coder’s dream”: A developer shared their experience switching from Claude to GPT-5.5 + Codex after reliability issues in large repos. Claude exhibited overconfidence (“40% implementation but claimed completion”), while Codex’s lint/test feedback loops proved more effective. Migration required only renaming CLAUDE.md to AGENTS.md. 14 points, 6 comments. GeekNews
-
Erlang/OTP 29.0 released: SSH daemon now disables shell and exec services by default for improved security. Post-quantum cryptography (mlkem768x25519-sha256) adopted as default, native records (EEP-79) as experimental feature, 32-bit Windows builds discontinued. GeekNews
-
Malta-OpenAI partnership — ChatGPT Plus for all citizens: OpenAI and Malta’s government launched the world’s first initiative providing ChatGPT Plus access to all citizens, presenting a new model for AI access democratization. GeekNews
Minor Changes Worth Knowing
- Weekly + 5-hour limits stack: The 50% weekly increase and 2x 5-hour increase are both active simultaneously — effectively maximum capacity through 7/13
claude ultrareviewCLI subcommand: Trigger ultrareview from scripts/CI without interactive sessionclaude project purge: New command to clean up local project state (cache, session data)- PR URL
/resumematching: Paste a PR URL into/resumeto auto-find and resume the session that created it
Recommended Reads
-
“SQL Patterns for Detecting Transaction Fraud”: Foundational fraud detection methods using SQL pattern matching before ML implementation. Covers velocity (sliding windows), impossible travel (LAG + distance calc), amount anomalies ($1.00 test charges, threshold-adjacent values), merchant concentration, and off-hours detection — reducing analysis cycles from weeks to hours. 7 points, 2 comments. Original
-
“After months with Claude, switching to Codex”: A practical comparison of Claude’s strengths (architecture understanding, context handling) and limitations (reliability degradation on large projects, overconfidence) based on real experience. Useful for understanding each tool’s appropriate scope. 14 points, 6 comments. Reddit
Interesting Projects & Tools
-
SpecGuard — Validate specs before AI coding begins: Built on the premise that “incomplete specs cause more problems than AI coding failures,” this CLI tool checks specifications for gaps before submitting to Codex or Claude Code. Detects unclear auth boundaries, missing ownership ranges, absent idempotency handling, vague state transitions, and unspecified retry policies. Returns READY/READY_WITH_WARNINGS/NOT_READY. v0.4.0 adds Codex plugin and GitHub Actions PR review workflows. GitHub
-
Forgotten Saga Classic — Porting a 30-year-old Korean DOS RPG: A developer reverse-engineered a 1997 Korean DOS RPG without source code access using Ghidra, reconstructing 937 functions and cracking 48 data formats. The result: 157,277 lines of Lua code deployed across 5 platforms (Web, iOS, Android, Windows, macOS). 18 points, 5 comments. Project