@lih-x-x/kmr 1.0.9 → 1.0.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/dist/index.js +14 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -923,9 +923,22 @@ var SessionManager = class {
|
|
|
923
923
|
}
|
|
924
924
|
extractReply(output) {
|
|
925
925
|
const lines = output.split("\n");
|
|
926
|
+
const metaPrefixes = ["[client]", "[tool]", "[thinking]", "[done]", "[error]", "[warn]", "[info]"];
|
|
927
|
+
let lastCompletedIdx = -1;
|
|
928
|
+
for (let i = 0; i < lines.length; i++) {
|
|
929
|
+
if (/\(completed\)/.test(lines[i])) {
|
|
930
|
+
lastCompletedIdx = i;
|
|
931
|
+
}
|
|
932
|
+
}
|
|
933
|
+
const startIdx = lastCompletedIdx >= 0 ? lastCompletedIdx + 1 : 0;
|
|
934
|
+
const reply = lines.slice(startIdx).filter((line) => {
|
|
935
|
+
const t = line.trim();
|
|
936
|
+
return t.length > 0 && !metaPrefixes.some((p) => t.startsWith(p));
|
|
937
|
+
}).join("\n").trim();
|
|
938
|
+
if (reply.length > 0) return reply;
|
|
926
939
|
const filtered = lines.filter((line) => {
|
|
927
940
|
const t = line.trim();
|
|
928
|
-
return t.length > 0 && !
|
|
941
|
+
return t.length > 0 && !metaPrefixes.some((p) => t.startsWith(p));
|
|
929
942
|
}).join("\n").trim();
|
|
930
943
|
return filtered || output.trim();
|
|
931
944
|
}
|