CLAUDE LABJP
DEFAULT — Claude Sonnet 5 is now the default model for Free and Pro users worldwide. It's the most agentic Sonnet yet and performs close to Opus 4.8 on many tasksPRICE — Sonnet 5 launch pricing ($2 in / $10 out per million tokens) runs through August 31, then returns to $3 / $15. Worth measuring your real token costs nowFASTEND — Fast mode for Claude Opus 4.7 is removed on July 24 — three days left. If you set speed: 'fast', move those calls to fast mode on Opus 4.8MEMORY — Claude's memory now works as a set of individual, categorized entries that Claude reads and updates mid-conversation, so it's easier to see what's storedHIPAA — Enterprise and API organizations can now configure HIPAA support themselves: BAA review, guide download, and one-step enablementADMIN — The Admin API can list members, change roles, remove people, and manage groups — helpful for organizations with frequent membership changesDEFAULT — Claude Sonnet 5 is now the default model for Free and Pro users worldwide. It's the most agentic Sonnet yet and performs close to Opus 4.8 on many tasksPRICE — Sonnet 5 launch pricing ($2 in / $10 out per million tokens) runs through August 31, then returns to $3 / $15. Worth measuring your real token costs nowFASTEND — Fast mode for Claude Opus 4.7 is removed on July 24 — three days left. If you set speed: 'fast', move those calls to fast mode on Opus 4.8MEMORY — Claude's memory now works as a set of individual, categorized entries that Claude reads and updates mid-conversation, so it's easier to see what's storedHIPAA — Enterprise and API organizations can now configure HIPAA support themselves: BAA review, guide download, and one-step enablementADMIN — The Admin API can list members, change roles, remove people, and manage groups — helpful for organizations with frequent membership changes
TAG

claude-code

129 articles
Back to all tags
Related:
troubleshooting34automation29workflow18mcp13error11git10hooks10production8indie-dev8fix7ios7reliability6
Claude Code/2026-05-02Intermediate

Stop the 'old_string is not unique' Error in Claude Code's Edit Tool — A Practical Rewrite Strategy

When Claude Code's Edit tool throws 'old_string is not unique in the file', the root cause is usually that the prompt didn't guarantee a uniquely identifiable target. Here's how to design rewrites that actually stick.

Claude Code/2026-05-02Intermediate

Recipes for a Useful Claude Code Status Line — Show Model, Remaining Context, and Git Branch in One Line

Concrete recipes for a Claude Code status line that displays the active model, remaining context, and git branch in a single line — written in both Bash and Node.js, with the failure modes you should plan for.

Claude Code/2026-05-01Advanced

Designing a Release Gate Claude Code Can Run — Pre-Deploy Verification You Can Actually Read

A green CI does not mean a safe release. Walk through a seven-checkpoint release gate that asks Claude Code to write a readable, narrative report — with concrete scripts and the operational lessons behind them.

Claude Code/2026-05-01Intermediate

/clear vs /compact in Claude Code: Choosing the Right Reset for Long Sessions

When should you use /clear, and when should you reach for /compact in Claude Code? Three decision criteria from real long-session experience, with the pitfalls that hit me before I figured it out.

Claude Code/2026-05-01Intermediate

Testing Stripe Webhooks Safely with Claude Code: Three Practical Local Workflows

Reproduce Stripe webhook failures locally with confidence. Three practical patterns combining Claude Code with Stripe CLI, signed payload replay, and idempotency checks — with full working code.

Claude Code/2026-04-30Advanced

Composing Claude Code Skills — Building Automation a Single Skill Can't Reach

A practical guide to going beyond one-skill-at-a-time and composing multiple Claude Code Skills into real workflows. Pipeline, branching, and meta-skill patterns with full implementation examples and the failure modes you should design against.

Claude Code/2026-04-30Intermediate

Why Claude Code Skips .gitignore Files in Search — and How to Pull Them in When You Need Them

When .env.example or dist/ won't show up in Claude Code's Glob and Grep, .gitignore is the reason. Here's why it happens, plus three concrete ways through it: the Read tool, --no-ignore flags, and selective gitignore overrides.

Claude Code/2026-04-30Intermediate

Automating Frontend Accessibility Audits with Claude Code — axe-core, Hooks, and PR Comments That Actually Get Read

A practical way to make accessibility audits actually stick in a real codebase. Combine axe-core with Claude Code skills, pre-commit hooks, and a GitHub Actions PR comment, with code you can paste in today.

Claude Code/2026-04-29Advanced

Observability for Claude Code with OpenTelemetry — A Production-Grade Tracing Guide for Agentic Workflows

Trace Claude Code agent runs end to end with OpenTelemetry. Hook integration, per-tool spans, MCP propagation, cost attribution, and sampling patterns that survive thousands of runs per day.

Claude Code/2026-04-29Intermediate

Stopping Claude Code from Quitting Mid-Task — Prompt Patterns and Verification Loops

Claude Code says "Done!" — but the build is broken and only half the files were touched. Here are the prompt patterns and automated verification loops I now use in production to keep agents running until the job is actually finished.

Claude Code/2026-04-28Beginner

From /init Output to a CLAUDE.md That Actually Steers Claude — A 4-Step Refinement

The CLAUDE.md that /init generates is a draft, not a finished file. Here's the 4-step process I run on every new project to turn that draft into a CLAUDE.md that meaningfully changes how Claude behaves.

Claude Code/2026-04-28Intermediate

Pasting Screenshots into Claude Code: A Practical Workflow for Fixing UI Bugs Fast

A field-tested workflow for handing screenshots and design comps to Claude Code from the terminal—covering the three input methods, prompt templates that actually work, and the gotchas that bit me in production.