Claude 공식 릴리스 노트의 새 항목을 AI가 분석·정리한 글입니다. 정확한 내용은 하단 원문에서 확인해 주세요.
🤖 AI 분석 (Claude)
Claude Code 2.1.193은 셸 명령어 처리, 자동 모드 분류, 백그라운드 에이전트 관리, 그리고 OpenTelemetry 로깅을 개선했습니다. 모든 Bash/PowerShell 명령을 자동 모드 분류기로 라우팅하는 옵션, 거부 사유 투명성 강화, 메모리 압박 시 자동 정리 기능이 추가되었습니다.
주요 버그 수정으로는 로그인 후 UI 상태 갱신 문제, 백그라운드 처리 중 오류 취소, 핀된 에이전트 재프롬프트, 불필요한 서브에이전트 생성 등이 해결되었습니다. MCP 서버 인증 필요 시 알림과 Bash 모드에서의 파일 경로 자동완성도 추가됩니다.
왜 중요한가
보안 검토 과정을 더 투명하게 볼 수 있고, 명령 실행 정책을 세밀하게 제어할 수 있게 됩니다. 또한 자동 업데이트 후에도 진행 중인 작업이 안정적으로 유지되며, 셸 명령 입력이 더 빨라집니다.
이전과 다른 점
이전에는 자의적 코드 실행 패턴만 분류기를 거쳤으나, 이제 모든 셸 명령을 분류할 수 있습니다. 백그라운드 에이전트가 자동 업데이트 후 불필요하게 재시작되거나 추가 작업을 생성하지 않습니다.
실제로 써보려면
설정에서 autoMode.classifyAllShell을 활성화하거나, OTEL_LOG_ASSISTANT_RESPONSES 환경 변수를 설정하여 로깅 동작을 제어할 수 있습니다. /mcp에서 MCP 서버 인증 상태를 확인하고, Bash 모드(!)에서 파일 경로 입력 시 자동완성을 사용할 수 있습니다.
⚠️ AI가 원문을 바탕으로 생성한 분석입니다. 사실 확인은 아래 원문에서 해 주세요.
변경 내용 (원문)
- Added `autoMode.classifyAllShell` setting to route all Bash/PowerShell commands through the auto-mode classifier instead of only arbitrary-code-execution patterns - Added auto-mode denial reasons to the transcript, the denial toast, and `/permissions` recent denials - Added `claude_code.assistant_response` OpenTelemetry log event containing the model's response text. Redacted unless `OTEL_LOG_ASSISTANT_RESPONSES=1`; when that var is unset it follows `OTEL_LOG_USER_PROMPTS`, so deployments that already log prompt content will start receiving response content on upgrade — set `OTEL_LOG_ASSISTANT_RESPONSES=0` to keep prompts-only. - Added live file path autocomplete to bash mode (`!`) - Added a startup notice when MCP servers need authentication, pointing at `/mcp` - Added automatic memory-pressure reaping for idle background shell commands (disable with `CLAUDE_CODE_DISABLE_BG_SHELL_PRESSURE_REAP=1`) - Fixed `/model` and other client-data-gated UI showing stale/empty state immediately after `/login` - Fixed backgrounding (←←) spuriously cancelling with "N background tasks would be abandoned" when all running tasks carry over to the new session - Fixed pinned background agents being re-prompted to "Continue from where you left off" after every auto-update - Fixed backgrounding the main turn spawning a phantom "general-purpose (resumed)" subagent that re-ran the main conversation - Fixed agent panel hiding sibling agents when viewing a subagent - Improved background agents: the
출처: Claude Code 변경로그 (원문 보기)