@khalilgharbaoui/opencode-claude-code-plugin 0.4.12 → 0.4.13

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/dist/index.js CHANGED
@@ -1211,7 +1211,7 @@ async function createProxyMcpServer(tools = DEFAULT_PROXY_TOOLS) {
1211
1211
  timer = setTimeout(() => {
1212
1212
  if (!pending.has(callId)) return;
1213
1213
  pending.delete(callId);
1214
- log.warn("proxy-mcp tool call timed out", {
1214
+ log.notice("proxy-mcp tool call timed out", {
1215
1215
  callId,
1216
1216
  toolName,
1217
1217
  timeoutMs: PROXY_CALL_TIMEOUT_MS
@@ -1255,8 +1255,11 @@ async function createProxyMcpServer(tools = DEFAULT_PROXY_TOOLS) {
1255
1255
  error: { code: -32601, message: `Unknown method: ${request.method}` }
1256
1256
  });
1257
1257
  } catch (error) {
1258
- log.warn("proxy-mcp error handling request", {
1259
- error: error instanceof Error ? error.message : String(error)
1258
+ const errorMessage = error instanceof Error ? error.message : String(error);
1259
+ const isTimeout = errorMessage.includes("timed out after") && errorMessage.includes("waiting for opencode to resolve");
1260
+ const logFn = isTimeout ? log.notice : log.warn;
1261
+ logFn("proxy-mcp error handling request", {
1262
+ error: errorMessage
1260
1263
  });
1261
1264
  try {
1262
1265
  writeJson(res, {
@@ -1428,7 +1431,7 @@ function queuePendingProxyCall(sessionKey2, call) {
1428
1431
  `Proxy tool call '${call.toolName}' timed out after ${PENDING_PROXY_CALL_TIMEOUT_MS}ms waiting for opencode to resolve the call`
1429
1432
  )
1430
1433
  );
1431
- log.warn("timed out pending proxy call", {
1434
+ log.notice("timed out pending proxy call", {
1432
1435
  sessionKey: current.sessionKey,
1433
1436
  toolCallId: call.id,
1434
1437
  toolName: call.toolName,