Claude Code Daily Briefing - 2026-07-13

Release Summary

VersionDateKey Changes
v2.1.2077/10auto mode available on Bedrock/Vertex/Foundry without opt-in (disable via disableAutoMode), default model on Bedrock/Vertex/AWS now Opus 4.8, silent-consent fix for remote managed settings, plugin ${user_config.*} shell-injection fix (detailed in the 7/11 briefing)

No new release as of 7/13 — the latest version is v2.1.207 (7/10). Today the calendar itself is the news: (1) the +50% weekly limit promotion ends today and included Fable 5 access ended yesterday, two limit changes landing at once (Security & Limitations), (2) the Microsoft 365 connector gained write tools (announced 7/7, not previously covered here), moving connectors from reading to acting (Features), and (3) Anthropic’s J-space interpretability research spread widely over the weekend (Community).

Full release notes


New Features & Practical Usage

Microsoft 365 connector gets write tools — Claude sends email and creates SharePoint files (7/7)

Anthropic added write tools to the Microsoft 365 connector (announced 7/7 — the same day as the Cowork web/mobile expansion, which is why it slipped past earlier briefings). Beyond reading (search, summarize), Claude can now act.

# Prerequisite: org admin grants admin consent in Microsoft Entra
Settings → Connectors → Microsoft 365
→ beyond search/summarize (read): send email, manage calendar, create files (write)

The takeaway: a connector just got promoted from a read channel to an output channel — “summarize this meeting” extends one step into “summarize it and email the team.” But the moment an output channel exists, the GitLost lesson from 7/9 applies verbatim: organizations need to explicitly design the boundary between what the agent can read and what it can send out. Requiring Entra admin consent effectively forces that boundary to be an administrator’s decision — decide which groups get write access before you roll it out. Claude release notes · Releasebot


Developer Workflow Tips

Use plan mode as a step gate — implement step one, then stop

Using plan mode (Shift+Tab) to draft a plan is common practice by now; the next step that this week’s updated field guides converge on is gating the plan’s execution itself.

Shift+Tab   # plan mode — read-only, plan without touching disk
Ctrl+G      # open the proposed plan in your editor and edit it directly
"Implement step 1 only, then stop and show me the diff"   # step gate
"Looks good, continue"                                     # next step after review

This sits in the same place as 7/12’s pick models per task type — but for execution sizing: model choice decides who does the work, step gating decides how much to hand over at once. Planting human review points at plan boundaries is the cheapest way to cap the cost of unattended failure. Iwo Szapar — 8 Rules · Builder.io — 50 Tips

Secret hygiene — seal credential files off from the agent with deny rules

As agents gain write powers (sending email, creating files — see the M365 item above), managing files that must not be read stops being etiquette and becomes a defense line.

// .claude/settings.json — seal off credential files
{
  "permissions": {
    "deny": [
      "Read(./.env)",
      "Read(./.env.*)",
      "Read(./secrets/**)"
    ]
  }
}

Same principle as 7/10’s rules that must always hold belong in hooks, not prose: a “don’t read secrets” sentence in CLAUDE.md is advice; a deny rule is enforcement. If your repo runs third-party skills or plugins (see SkillCloak, 7/8), this seal is worth double. Official best practices · Iwo Szapar


Security & Limitations

The +50% weekly limit promotion ends today — what reverts, what stays (7/13)

The Claude Code +50% weekly limit promotion, live since 5/13 for all Pro, Max, Team, and seat-based Enterprise users, ends today (7/13) at 6PM PDT. No extension has been announced.

The takeaway: if two months of bonus capacity started feeling like the default, what you’ll feel from today is a reversion, not an outage — if tomorrow’s session hits its limit earlier than usual, check this date before suspecting an incident. ClaudeDevs · ChatForest · Hacker News

Included Fable 5 access ended yesterday — credits-only from today (plus a correction)

Included Fable 5 access on paid plans (up to 50% of weekly limits) ended 7/12 at 11:59:59 PM PT. From today it is usage-credits only.

The real story is the announcement pattern itself — a quiet extension hours before a deadline. When policy changes flow through X and support articles rather than the newsroom, unattended pipelines should validate their model configuration by measurement, not documentation. Stacked with the weekly limit reversion above, today is the day to re-check every model and limit assumption in your pipelines at once. Digital Applied · Android Authority

Three incident-free days — the most recent were two on 7/10 (7/11–7/13)

Per the status page, 7/11 through 7/13 passed with no new incidents. The most recent were two on 7/10 — elevated errors on Claude Opus 4.8, plus a separate incident affecting Opus 4.5 and Sonnet 4.5 — both resolved around midday UTC. (Our 7/12 briefing cited the 7/9 event as the most recent; the status history shows these two 7/10 events after it.) With today’s limit reversion landing in the same window, if you see slowdowns or blocks, check your limits before suspecting an incident. Claude Status


Ecosystem & Plugins

Sonnet 5 intro pricing ends 8/31 — $3/$15 from 9/1, and effective costs may rise more

Announced alongside the 6/30 launch, Sonnet 5’s introductory pricing ($2 input / $10 output per million tokens) ends 8/31; from 9/1 the standard rate is $3/$15 (+50%). Cost analyses targeting that date started appearing this week.

This is the cost-side version of 7/10’s test on your own work, not benchmarks — model performance and model cost both only become real on top of your own workload. Anthropic · qcode · Finout


Community News


Minor Changes



Interesting Projects & Tools