Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All releases Home olderv0.2.76 v0.2.78newer

Claude Code v0.2.77

9 entries read diff v0.2.76 → v0.2.77 Markdown
Find
Pick an entry · j / k steps through
8 entries

Changesopen

#

# Claude Code v0.2.77 Changelog

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

Enhanced IDE Selection Integration#

The IDE integration now supports a new "Add to Prompt" capability. When working with code selections from your IDE:

  • Automatic prompt insertion: IDE selections can now be automatically added to your prompt input with the new addToPrompt parameter
  • Improved selection handling: The system now distinguishes between viewing selections and actively including them in prompts

Example usage: When you select code in your IDE and trigger the "Add to Prompt" action, the selected code will be automatically inserted at your cursor position in the Claude Code prompt, formatted with file context.

SSE IDE Connection Type#

Added support for Server-Sent Events (SSE) based IDE connections:

{
  type: "sse-ide",
  url: "https://your-ide-endpoint.com/sse"
}

This enables real-time communication with IDEs that support SSE protocols.

File Watching and Change Detection#

Claude Code now actively monitors files you've previously read and notifies you of changes:

  • Automatic change detection: Files you've read are tracked with timestamps
  • Smart diff display: When a watched file changes, Claude shows only the modified portions with context
  • Performance optimization: File change checks are batched and run asynchronously

Example: If you read a file and later it's modified externally, Claude will show:

File edited: /path/to/file.js
[Shows relevant changes with line numbers]

Enhanced File Context Handling#

Improved how file mentions and contexts are processed:

  • Files mentioned in prompts now include a mode field to distinguish between new file references (mode: "new") and edited files (mode: "edited")
  • Better tracking of file states for more accurate context management

Refined Selection Text Formatting#

When IDE selections are auto-included in prompts, the formatting has been improved:

  • Selections with file context: "The current selection is in [filename]:\n[selected code]"
  • Selections without file context: "The current selection is:\n[selected code]"
  • File-only context: "Currently viewing [filename]"

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

Import Optimizations#

  • Replaced full module imports with targeted imports for better performance:
  • import { PassThrough as nu9 } from "stream" instead of import rz9 from "stream"
  • import { cwd as _e0 } from "node:process" instead of import xT2 from "node:process"

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

Code Architecture#

  • New function iR2 coordinates both new file extractions and file change detection
  • New function v63 specifically handles watched file change detection
  • Improved separation of concerns between different file handling modes
1 entry

Bug Fixesopen

#

  • Fixed potential issues with file state management by using more specific property names (readFileState instead of readFileTimestamps)
  • Improved error handling for file stat operations when checking for changes

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

1 entry

Breaking Changesopen

#

None - This version maintains backward compatibility with existing workflows.

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

Verbatim
No official entry

Not individually listed upstream

v0.2.77 does not have its own entry in Anthropic’s official changelog, because prerelease builds are often folded into a neighbouring release. Browse the full changelog for the closest official notes. Everything else on this page came out of the bundle instead, which is why the two lists don't match.

System prompt

The system prompt was not captured for this release, so this page cannot say whether it moved.