CLAUDE CODE 2.1.14 SHIPS NON‑PERSISTENT BASH, PLUGIN PINNING, AND MAJOR STABILITY FIXES
Anthropic’s Claude Code CLI 2.1.14 adds history-based autocomplete in bash mode, search in installed plugins, and pinning plugins to specific git commit SHAs. I...
Anthropic’s Claude Code CLI 2.1.14 adds history-based autocomplete in bash mode, search in installed plugins, and pinning plugins to specific git commit SHAs. It fixes an overly aggressive context window block (~65% now corrected to ~98%), memory issues with parallel subagents and long sessions, and multiple UX bugs; bash calls are now non-persistent between commands and GitHub fetches are steered to gh CLI.
Deterministic plugin pinning and corrected context limits reduce flaky runs and unexpected blocks.
Non-persistent bash changes break workflows relying on shell state, and gh CLI reliance impacts CI/container images.
-
terminal
Validate multi-step agent plans without shell persistence (env vars, aliases, exports) and confirm gh CLI works with least-privilege tokens in CI.
-
terminal
Pin plugins by commit SHA and verify reproducible installs across dev/CI while stress-testing parallel subagents for memory stability.
Legacy codebase integration strategies...
- 01.
Refactor agent scripts to reinitialize needed env on each bash call and add gh CLI to devcontainers/CI images.
- 02.
After upgrade, monitor memory usage during parallel runs and confirm context usage reporting aligns with the ~98% limit.
Fresh architecture paradigms...
- 01.
Design agent workflows as stateless shell calls, using gh CLI for GitHub operations from the start.
- 02.
Adopt plugin pinning by commit SHA to lock environments and ensure reproducible pipelines.