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 of v2.1.94 Home All releases olderv2.1.92 v2.1.96newer
Claude Code v2.1.94

Agentic Search — Session ID Extraction

What

Refactored agentic search now returns structured session_ids arrays instead of prose-based responses, making session search results more reliable.

Details
  • Search agent returns JSON: {"session_ids": ["<uuid>", ...]}
  • Response parsed via regex: /"session_ids"\s:\s(\[[^\]]*\])/g
  • Logs "Agentic search: no session_ids array in final response" when extraction fails
  • Session metadata display now includes tag, git branch, and project path (formatted via new uCY helper)
  • Search prompt refactored with separate system prompt constant for better maintainability
Evidence

Session ID extraction (search for "session_ids", "Agentic search: no session_ids array")

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

See this entry in the whole of v2.1.94 →