"vscode:/vscode.git/clone" did not exist on "4fb16030016d4450b6551184982073b718687bcc"
  1. 21 Mar, 2026 1 commit
  2. 28 Feb, 2026 3 commits
    • alfadb's avatar
      fix(ops): use normalized error type for all classification functions · 093d7ba8
      alfadb authored
      - Compute normalizedType once and pass to classifyOpsPhase,
        classifyOpsSeverity, classifyOpsIsBusinessLimited, classifyOpsIsRetryable
        instead of raw parsed.ErrorType
      - Add test case verifying known type takes precedence over conflicting code
      
      Addresses Copilot review feedback on PR #680.
      093d7ba8
    • alfadb's avatar
      fix(ops): validate error_type against known whitelist before classification · ce006a7a
      alfadb authored
      
      
      Upstream proxies (account 4, 112) return `"<nil>"` as the error.type in
      their JSON responses — a Go fmt.Sprintf("%v", nil) artifact. Since
      `normalizeOpsErrorType` only checked for empty string, the literal
      "<nil>" passed through and poisoned the entire classification chain:
      error_phase was misclassified as "internal" (instead of "request"),
      severity was inflated to P2, and the stored error_type was meaningless.
      
      Add `isKnownOpsErrorType` whitelist so any unrecognised type falls
      through to the code-based or default "api_error" classification.
      Co-Authored-By: default avatarClaude Opus 4.6 <noreply@anthropic.com>
      ce006a7a
    • yangjianbo's avatar
      feat(sync): full code sync from release · bb664d9b
      yangjianbo authored
      bb664d9b
  3. 22 Feb, 2026 1 commit