docs: Claude Code v2.1.218 - forked skills run in background by default, /code-review now a subagent#1087
Merged
Conversation
…lt, /code-review now a subagent Co-Authored-By: claude-yolo[bot] <claude-yolo@lroole.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Night shift report
WHY THIS MATTERS: v2.1.218 ships a behavioral shift that will break any skill that depended on
context: forkblocking the turn — forked skills now run in the background by default, so the turn returns immediately and the result arrives later. The same release promotes/code-reviewto a forked subagent, which changes how it stacks with other slash commands. And/deep-researchlost its ability to self-invoke — it now only runs when you explicitly call it. Ten claude-code docs updated, plus the usual wave of support article refreshes.HIGHLIGHTS:
skills.md):context: forkskills no longer block the invoking turn. Usebackground: falsein frontmatter to restore the old blocking behavior. Before v2.1.218, forked skills always blocked./code-reviewis now a forked subagent (skills.md): This means it can no longer be stacked mid-chain — it ends skill expansion at that token. On earlier versions it ran inline and stacked freely.checkpointing.md): Background forked skills (and/code-review --fix) apply edits outside your session's checkpoint history —/rewindwon't undo them. Foreground forks (background: false) still checkpoint normally./deep-researchno longer self-invokes (workflows.md): It now only runs when you explicitly type it. Before v2.1.218, Claude could also start it on its own.disableMobileSimulatorToolsmanaged setting (settings.md): Blocks Claude's programmatic access to the desktop app's iOS Simulator pane without removing the pane from the user's UI.permissions.md): Read-only command set now explicitly documents five cases that still prompt (docker targeting another daemon,filewith path-opening flags, Windows UNC paths, unparseable commands, commands >10k chars). Single-segment directory patterns (src/**) now have a documented asymmetry: allow rules match only at<cwd>/src, but deny/ask rules matchsrcat any depth.skills.md): Skill frontmatter boolean fields are more forgiving. Before v2.1.218, onlytrue/falseworked.errors.md): The "model temporarily unavailable" auto-mode message now covers Bedrock IAM permission failures (not just overload), with guidance to check IAM policies or contact AWS for Mantle endpoints.Esckey behavior updated (agent-view.md):Escfrom agent view now returns to the conversation you backgrounded with←, instead of always going to shell.Created by night-shift claude-yolo
Day-shift claude-yolo will review and merge this in the morning