@cortexkit/aft-opencode 0.17.2 → 0.17.3

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
@@ -26867,6 +26867,18 @@ LSP errors detected, please fix:
26867
26867
  }
26868
26868
  }
26869
26869
  }
26870
+ const pendingServers = data.lsp_pending_servers;
26871
+ const exitedServers = data.lsp_exited_servers;
26872
+ if (pendingServers && pendingServers.length > 0) {
26873
+ output += `
26874
+
26875
+ Note: LSP server(s) did not respond in time: ${pendingServers.join(", ")}. Diagnostics may be incomplete; rerun lsp_diagnostics later for a fresh check.`;
26876
+ }
26877
+ if (exitedServers && exitedServers.length > 0) {
26878
+ output += `
26879
+
26880
+ Note: LSP server(s) exited during this edit: ${exitedServers.join(", ")}. Their diagnostics could not be collected.`;
26881
+ }
26870
26882
  const diff = data.diff;
26871
26883
  const callID = getCallID(context);
26872
26884
  if (callID) {
@@ -27074,6 +27086,18 @@ LSP errors detected, please fix:
27074
27086
  ${diagLines}`;
27075
27087
  }
27076
27088
  }
27089
+ const pendingServers = data.lsp_pending_servers;
27090
+ const exitedServers = data.lsp_exited_servers;
27091
+ if (pendingServers && pendingServers.length > 0) {
27092
+ result += `
27093
+
27094
+ Note: LSP server(s) did not respond in time: ${pendingServers.join(", ")}. Diagnostics may be incomplete; rerun lsp_diagnostics later for a fresh check.`;
27095
+ }
27096
+ if (exitedServers && exitedServers.length > 0) {
27097
+ result += `
27098
+
27099
+ Note: LSP server(s) exited during this edit: ${exitedServers.join(", ")}. Their diagnostics could not be collected.`;
27100
+ }
27077
27101
  }
27078
27102
  return result;
27079
27103
  }
@@ -1 +1 @@
1
- {"version":3,"file":"hoisted.d.ts","sourceRoot":"","sources":["../../src/tools/hoisted.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAIH,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAI1D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAcjD,wEAAwE;AACxE,eAAO,MAAM,wBAAwB,GAAI,IAAI,MAAM,EAAE,QAAQ,MAAM,EAAE,OAAO,MAAM,KAAG,MAChD,CAAC;AA+QtC;;GAEG;AACH,wBAAgB,cAAc,CAAC,GAAG,EAAE,aAAa,GAAG,cAAc,CA4IjE;AA41BD;;;GAGG;AACH,wBAAgB,YAAY,CAAC,GAAG,EAAE,aAAa,GAAG,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,CAS/E;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,aAAa,GAAG,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,CAmEnF"}
1
+ {"version":3,"file":"hoisted.d.ts","sourceRoot":"","sources":["../../src/tools/hoisted.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAIH,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAI1D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAcjD,wEAAwE;AACxE,eAAO,MAAM,wBAAwB,GAAI,IAAI,MAAM,EAAE,QAAQ,MAAM,EAAE,OAAO,MAAM,KAAG,MAChD,CAAC;AA+QtC;;GAEG;AACH,wBAAgB,cAAc,CAAC,GAAG,EAAE,aAAa,GAAG,cAAc,CA4IjE;AAo3BD;;;GAGG;AACH,wBAAgB,YAAY,CAAC,GAAG,EAAE,aAAa,GAAG,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,CAS/E;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,aAAa,GAAG,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,CAmEnF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cortexkit/aft-opencode",
3
- "version": "0.17.2",
3
+ "version": "0.17.3",
4
4
  "type": "module",
5
5
  "description": "OpenCode plugin for Agent File Tools (AFT) — tree-sitter and lsp powered code analysis",
6
6
  "main": "dist/index.js",
@@ -32,11 +32,11 @@
32
32
  "zod": "^4.1.8"
33
33
  },
34
34
  "optionalDependencies": {
35
- "@cortexkit/aft-darwin-arm64": "0.17.2",
36
- "@cortexkit/aft-darwin-x64": "0.17.2",
37
- "@cortexkit/aft-linux-arm64": "0.17.2",
38
- "@cortexkit/aft-linux-x64": "0.17.2",
39
- "@cortexkit/aft-win32-x64": "0.17.2"
35
+ "@cortexkit/aft-darwin-arm64": "0.17.3",
36
+ "@cortexkit/aft-darwin-x64": "0.17.3",
37
+ "@cortexkit/aft-linux-arm64": "0.17.3",
38
+ "@cortexkit/aft-linux-x64": "0.17.3",
39
+ "@cortexkit/aft-win32-x64": "0.17.3"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/node": "^22.0.0",