@morphllm/morphsdk 0.2.62 → 0.2.63

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.
Files changed (59) hide show
  1. package/dist/{chunk-Y7CPJGLU.js → chunk-3SHLMXBV.js} +4 -4
  2. package/dist/{chunk-Y7CPJGLU.js.map → chunk-3SHLMXBV.js.map} +1 -1
  3. package/dist/{chunk-GZ7TJ7UB.js → chunk-3WMLFUAR.js} +2 -2
  4. package/dist/{chunk-3M4DOG6N.js → chunk-5QRN3JNB.js} +9 -9
  5. package/dist/chunk-5QRN3JNB.js.map +1 -0
  6. package/dist/{chunk-6Y5JB4JC.js → chunk-DCIUCDWJ.js} +15 -7
  7. package/dist/{chunk-6Y5JB4JC.js.map → chunk-DCIUCDWJ.js.map} +1 -1
  8. package/dist/{chunk-LHKFRPUO.js → chunk-GJ573YH3.js} +2 -2
  9. package/dist/{chunk-Z75HCPIE.js → chunk-GM5VR33N.js} +2 -2
  10. package/dist/{chunk-44GS4GJJ.js → chunk-PNIQNTXR.js} +2 -2
  11. package/dist/{chunk-XWSKUQVQ.js → chunk-T6677HCA.js} +5 -5
  12. package/dist/{chunk-S3RCM32V.js → chunk-TTBXKDCT.js} +2 -2
  13. package/dist/client.cjs +20 -15
  14. package/dist/client.cjs.map +1 -1
  15. package/dist/client.js +8 -8
  16. package/dist/{finish-kXAcUJyB.d.ts → finish-pPJfB0uO.d.ts} +2 -2
  17. package/dist/index.cjs +20 -15
  18. package/dist/index.cjs.map +1 -1
  19. package/dist/index.js +9 -9
  20. package/dist/tools/warp_grep/agent/parser.cjs +8 -8
  21. package/dist/tools/warp_grep/agent/parser.cjs.map +1 -1
  22. package/dist/tools/warp_grep/agent/parser.js +1 -1
  23. package/dist/tools/warp_grep/agent/runner.cjs +20 -15
  24. package/dist/tools/warp_grep/agent/runner.cjs.map +1 -1
  25. package/dist/tools/warp_grep/agent/runner.js +3 -3
  26. package/dist/tools/warp_grep/agent/types.cjs.map +1 -1
  27. package/dist/tools/warp_grep/agent/types.d.ts +2 -2
  28. package/dist/tools/warp_grep/anthropic.cjs +20 -15
  29. package/dist/tools/warp_grep/anthropic.cjs.map +1 -1
  30. package/dist/tools/warp_grep/anthropic.js +5 -5
  31. package/dist/tools/warp_grep/client.cjs +20 -15
  32. package/dist/tools/warp_grep/client.cjs.map +1 -1
  33. package/dist/tools/warp_grep/client.js +4 -4
  34. package/dist/tools/warp_grep/gemini.cjs +20 -15
  35. package/dist/tools/warp_grep/gemini.cjs.map +1 -1
  36. package/dist/tools/warp_grep/gemini.js +5 -5
  37. package/dist/tools/warp_grep/harness.cjs +22 -14
  38. package/dist/tools/warp_grep/harness.cjs.map +1 -1
  39. package/dist/tools/warp_grep/harness.d.ts +1 -1
  40. package/dist/tools/warp_grep/harness.js +2 -2
  41. package/dist/tools/warp_grep/harness.js.map +1 -1
  42. package/dist/tools/warp_grep/index.cjs +23 -15
  43. package/dist/tools/warp_grep/index.cjs.map +1 -1
  44. package/dist/tools/warp_grep/index.d.ts +1 -1
  45. package/dist/tools/warp_grep/index.js +8 -8
  46. package/dist/tools/warp_grep/openai.cjs +20 -15
  47. package/dist/tools/warp_grep/openai.cjs.map +1 -1
  48. package/dist/tools/warp_grep/openai.js +5 -5
  49. package/dist/tools/warp_grep/vercel.cjs +20 -15
  50. package/dist/tools/warp_grep/vercel.cjs.map +1 -1
  51. package/dist/tools/warp_grep/vercel.js +5 -5
  52. package/package.json +1 -1
  53. package/dist/chunk-3M4DOG6N.js.map +0 -1
  54. /package/dist/{chunk-GZ7TJ7UB.js.map → chunk-3WMLFUAR.js.map} +0 -0
  55. /package/dist/{chunk-LHKFRPUO.js.map → chunk-GJ573YH3.js.map} +0 -0
  56. /package/dist/{chunk-Z75HCPIE.js.map → chunk-GM5VR33N.js.map} +0 -0
  57. /package/dist/{chunk-44GS4GJJ.js.map → chunk-PNIQNTXR.js.map} +0 -0
  58. /package/dist/{chunk-XWSKUQVQ.js.map → chunk-T6677HCA.js.map} +0 -0
  59. /package/dist/{chunk-S3RCM32V.js.map → chunk-TTBXKDCT.js.map} +0 -0
@@ -418,19 +418,19 @@ function parseNestedXmlTools(text) {
418
418
  const filePath = getXmlElementText(fileContent, "path");
419
419
  const linesStr = getXmlElementText(fileContent, "lines");
420
420
  if (filePath && linesStr) {
421
- const ranges = [];
422
- for (const rangeStr of linesStr.split(",")) {
423
- if (rangeStr.trim() === "*") {
424
- ranges.push([1, 999999]);
425
- } else {
421
+ if (linesStr.trim() === "*") {
422
+ files.push({ path: filePath, lines: "*" });
423
+ } else {
424
+ const ranges = [];
425
+ for (const rangeStr of linesStr.split(",")) {
426
426
  const [s, e] = rangeStr.split("-").map((v) => parseInt(v.trim(), 10));
427
427
  if (Number.isFinite(s) && Number.isFinite(e)) {
428
428
  ranges.push([s, e]);
429
429
  }
430
430
  }
431
- }
432
- if (ranges.length > 0) {
433
- files.push({ path: filePath, lines: ranges });
431
+ if (ranges.length > 0) {
432
+ files.push({ path: filePath, lines: ranges });
433
+ }
434
434
  }
435
435
  }
436
436
  }
@@ -661,13 +661,18 @@ async function toolListDirectory(provider, args) {
661
661
  async function readFinishFiles(repoRoot, files, reader) {
662
662
  const out = [];
663
663
  for (const f of files) {
664
- const ranges = mergeRanges(f.lines);
665
- const chunks = [];
666
- for (const [s, e] of ranges) {
667
- const lines = await reader(f.path, s, e);
668
- chunks.push(lines.join("\n"));
664
+ if (f.lines === "*") {
665
+ const lines = await reader(f.path);
666
+ out.push({ path: f.path, ranges: "*", content: lines.join("\n") });
667
+ } else {
668
+ const ranges = mergeRanges(f.lines);
669
+ const chunks = [];
670
+ for (const [s, e] of ranges) {
671
+ const lines = await reader(f.path, s, e);
672
+ chunks.push(lines.join("\n"));
673
+ }
674
+ out.push({ path: f.path, ranges, content: chunks.join("\n") });
669
675
  }
670
- out.push({ path: f.path, ranges, content: chunks.join("\n") });
671
676
  }
672
677
  return out;
673
678
  }
@@ -1068,7 +1073,7 @@ async function runWarpGrep(config) {
1068
1073
  }
1069
1074
  const parts = ["Relevant context found:"];
1070
1075
  for (const f of finishMeta.files) {
1071
- const ranges = f.lines.map(([s, e]) => `${s}-${e}`).join(", ");
1076
+ const ranges = f.lines === "*" ? "*" : f.lines.map(([s, e]) => `${s}-${e}`).join(", ");
1072
1077
  parts.push(`- ${f.path}: ${ranges}`);
1073
1078
  }
1074
1079
  const payload = parts.join("\n");