Claude-Code v2.1.63 adds HTTP hooks, slash commands, and fixes memory leaks

Claude-Code v2.1.63 is a maintenance and feature release focused on stability improvements and new integration capabilities. The update addresses several memory leaks in long-running sessions while adding practical features for developers using AI coding assistants.
New Features
Added bundled slash commands: /simplify and /batch for streamlined workflows. The /model command now shows the currently active model directly in the slash command menu.
HTTP hooks enable external system integration by allowing JSON POST requests to URLs instead of shell commands. This provides a cleaner API-style interface for external tooling.
Project configurations and auto memory are now shared across git worktrees of the same repository, improving consistency in multi-branch development environments.
Memory and Performance Fixes
- Fixed listener leaks in bridge polling loop, MCP OAuth flow cleanup, and WebSocket transport reconnection
- Fixed memory leaks in git root detection cache, JSON parsing cache, bash command prefix cache, and MCP tool/resource cache
- Fixed memory leak where long-running teammates retained all messages in AppState even after conversation compaction
- Fixed MCP server fetch caches not clearing on disconnect, causing growing memory usage with frequently reconnecting servers
- Improved memory usage in long sessions with subagents by stripping heavy progress message payloads during context compaction
UI and Workflow Improvements
Fixed local slash command output like /cost appearing as user-sent messages instead of system messages in the UI. Added "Always copy full response" option to the /copy picker - when selected, future /copy commands skip the code block picker and copy the full response directly.
VSCode: Added session rename and remove actions to the sessions list. Fixed remote sessions not appearing in conversation history.
MCP Server Enhancements
Added ENABLE_CLAUDEAI_MCP_SERVERS=false environment variable to opt out from making claude.ai MCP servers available. Added manual URL paste fallback during MCP OAuth authentication - if the automatic localhost redirect doesn't work, users can paste the callback URL to complete authentication.
Bug Fixes
- Fixed file count cache ignoring glob ignore patterns
- Fixed IDE host IP detection cache incorrectly sharing results across ports
- Fixed a race condition in the REPL bridge where new messages could arrive interleaved with historical messages during initial connection flush
- Fixed
/clearnot resetting cached skills, which could cause stale skill content to persist in new conversations
📖 Read the full source: GitHub Claude-Code
👀 See Also

srclight: Fully Local Code Indexing MCP Server with Ollama Embeddings
srclight is an MCP server for deep code indexing that runs 100% locally with no API keys or cloud calls. It uses tree-sitter AST parsing for 11 languages, SQLite FTS5 for keyword search, Ollama for embeddings, and GPU-accelerated cosine similarity via cupy.

CONTACT: 3D Naval Combat Game Built Entirely with Claude Code
CONTACT is a 3D naval combat game built entirely with Claude Code + Opus, featuring a 7×7×7 volumetric cube, credit economy with tactical perks, and three game modes including Human vs Claude and Sonnet vs Sonnet with persistent strategic memory.

Data Analyst Builds Prompt Calibrator Tool with Claude, No Prior Frontend Experience
A data analyst with no HTML, CSS, or JavaScript experience built Prompt Calibrator, a client-side web tool that structures AI prompts through a form with four fields and four modes. The tool was developed using Claude as a code review partner and is hosted on GitHub Pages.

Claude-File-Recovery: CLI tool extracts files from Claude Code session history
claude-file-recovery is a Python CLI tool and TUI that parses JSONL session transcripts from ~/.claude/projects/ to recover files created, modified, or read by Claude Code, including point-in-time recovery of earlier file versions.