@link-assistant/hive-mind 1.56.10 → 1.56.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @link-assistant/hive-mind
2
2
 
3
+ ## 1.56.11
4
+
5
+ ### Patch Changes
6
+
7
+ - 0c00b7b: Retry Codex stream disconnects by resuming the preserved exec session.
8
+
3
9
  ## 1.56.10
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link-assistant/hive-mind",
3
- "version": "1.56.10",
3
+ "version": "1.56.11",
4
4
  "description": "AI-powered issue solver and hive mind for collaborative problem solving",
5
5
  "main": "src/hive.mjs",
6
6
  "type": "module",
@@ -39,6 +39,10 @@ export const classifyRetryableError = value => {
39
39
  return { message, isRetryable: true, isCapacity: false, label: 'Request timeout' };
40
40
  }
41
41
 
42
+ if (lower.includes('stream disconnected before completion')) {
43
+ return { message, isRetryable: true, isCapacity: false, label: 'Stream disconnected before completion' };
44
+ }
45
+
42
46
  if (lower.includes('api error: 503') || (lower.includes('503') && (lower.includes('upstream connect error') || lower.includes('remote connection failure')))) {
43
47
  return { message, isRetryable: true, isCapacity: false, label: '503 network error' };
44
48
  }