Claude Code Daily Briefing - 2026-05-30

Release Summary

VersionDateKey Changes
v2.1.1575/29.claude/skills plugin auto-loading, claude plugin init scaffolding, --agent override, Workflow keyword trigger control, many bug fixes
v2.1.1565/29Opus 4.8 thinking-block fix (prevents API errors)
v2.1.1545/28Opus 4.8 integration, Dynamic Workflows, ! <command> background shell

Full release notes


New Features & Practical Usage

v2.1.157 — Local plugins without a marketplace, claude plugin init scaffolding (5/29)

v2.1.157 is the stabilization follow-up to yesterday’s Opus 4.8 and Dynamic Workflows launch, and it sharply improves the plugin development experience.

.claude/skills auto-loading: Plugins placed in a .claude/skills directory now load automatically, with no marketplace required. Building a project-local plugin or sharing one within a team no longer needs any marketplace setup.

claude plugin init — plugin scaffolding: Instantly generates the basic structure of a new plugin in .claude/skills.

# Scaffold a new plugin in .claude/skills (no marketplace needed)
claude plugin init my-plugin

# /plugin now autocompletes: subcommands, installed plugin names, known marketplace plugins
/plugin

--agent override: In claude agents, the agent field in settings.json is now honored for dispatched sessions, with --agent <name> to override it per session.

# Pin a specific agent for a dispatched session
claude agents --agent reviewer

Switch worktrees mid-session with EnterWorktree: You can now switch between Claude-managed worktrees during a session. Worktrees are also left unlocked when the agent finishes, so git worktree remove/prune can clean them up.

GitHub v2.1.157


Developer Workflow Tips

A local plugin dev loop — claude plugin init + auto-loading

Combining the two v2.1.157 features lets you build and test plugins fast, with no marketplace round-trip.

The pattern:

  1. claude plugin init my-plugin to generate the structure in .claude/skills
  2. Edit your skills, hooks, and commands
  3. /reload-skills (v2.1.152) to apply changes without restarting the session
  4. Once it works, distribute via a marketplace or git source

Because .claude/skills auto-loads, committing a plugin to your project repo means a teammate gets the same tool set just by cloning. Pair it with the disallowed-tools frontmatter (v2.1.152) to separate research-only from implementation-only skills.

GitHub v2.1.157

Taming accidental Dynamic Workflows — turn off the “workflow” keyword trigger

Yesterday’s Dynamic Workflows auto-trigger whenever the word “workflow” appears in a prompt. v2.1.157 adds a control to stop that from firing unexpectedly in ordinary contexts.

# Turn off the "Workflow keyword trigger" setting in /config so the word
# 'workflow' in a prompt no longer triggers a dynamic workflow
/config

If the keyword just fired, pressing backspace (or alt+w) dismisses the workflow request instead of deleting a character. Handy in docs or review sessions where you type “workflow” often.

GitHub v2.1.157


Security & Limitations

v2.1.157 — Sandbox permission prompts in auto/bypass mode and managed-settings dialog fixed (5/29)

v2.1.157 includes two fixes tied to security behavior.

Sandbox network permission prompt fix: A bug where sandbox network permission prompts appeared in auto mode and bypass-permissions mode when using the desktop app, IDE extensions, or the SDK has been fixed — eliminating unexpected stalls during unattended runs.

Managed-settings dialog freeze fix: The terminal could freeze after approving the managed-settings security dialog at startup. This is now fixed, improving startup stability in enterprise managed-settings environments.

GitHub v2.1.157


Ecosystem & Plugins

Lower distribution barrier — local .claude/skills auto-loading (5/29)

v2.1.157’s .claude/skills auto-loading is more than a convenience — it signals a shift in the plugin distribution model. Previously, sharing a plugin meant going through a marketplace (GitHub/git source); now, simply placing .claude/skills in a repo distributes it.

The “plugins as code” pattern — committing internal tools and onboarding skills straight into your team repo — just got a lot more natural.

GitHub v2.1.157


Community News


Minor Changes



Interesting Projects & Tools