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 v1.0.67 Home All releases olderv1.0.66 v1.0.68newer
Claude Code v1.0.67

Error Handling Improvements

Simplified error path extraction logic:

The error path extraction function has been streamlined to remove unnecessary code for handling unrecognized keys:

// Before: Handled special case for 'unrecognized_keys' errors
function X3Q(A) {
  if (A.length === 0) return "unknown";
  let B = A[0];
  if (!B) return "unknown";
  if (B.path.length > 0) return B.path.join(".");
  if (B.code === "unrecognized_keys" && "keys" in B) {
    let Q = B.keys;
    return Q.length > 0 ? (Q[0] ?? "unknown") : "unknown";
  }
  return "unknown";
}

// After: Simplified logic without special case handling
function X3Q(A) {
  if (A.length === 0) return "unknown";
  let B = A[0];
  if (!B) return "unknown";
  if (B.path.length > 0) return B.path.join(".");
  return "unknown";
}

See this entry in the whole of v1.0.67 →