@lih-x-x/kmr 1.0.54 → 1.0.55

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/cli.js CHANGED
@@ -6,9 +6,9 @@ async function checkUpdate() {
6
6
  try {
7
7
  const res = await fetch(`https://registry.npmjs.org/${"@lih-x-x/kmr"}/latest`, { signal: AbortSignal.timeout(3e3) });
8
8
  const data = await res.json();
9
- if (data.version && data.version !== "1.0.54") {
9
+ if (data.version && data.version !== "1.0.55") {
10
10
  console.log(`
11
- \u2B06\uFE0F \u65B0\u7248\u672C\u53EF\u7528: ${"1.0.54"} \u2192 ${data.version}`);
11
+ \u2B06\uFE0F \u65B0\u7248\u672C\u53EF\u7528: ${"1.0.55"} \u2192 ${data.version}`);
12
12
  console.log(` \u8FD0\u884C npm install -g ${"@lih-x-x/kmr"} \u66F4\u65B0
13
13
  `);
14
14
  }
@@ -56,7 +56,7 @@ KMR\uFF08Key Meetings Record\uFF09\u2014 \u4F1A\u8BAE\u6316\u6398\u673A
56
56
  kmr --help \u663E\u793A\u5E2E\u52A9
57
57
  `);
58
58
  } else if (command === "--version" || command === "-v") {
59
- console.log("1.0.54");
59
+ console.log("1.0.55");
60
60
  } else if (command === "list") {
61
61
  const { loadConfig } = await import("./config-L2SVVMAR.js");
62
62
  const { JsonStore } = await import("./jsonStore-AL73KEUG.js");
package/dist/index.js CHANGED
@@ -660,24 +660,9 @@ ${text}`;
660
660
  */
661
661
  async trackNewPids(before) {
662
662
  const after = await this.getAgentPids();
663
- const newPids = /* @__PURE__ */ new Set();
664
663
  for (const pid of after) {
665
664
  if (!before.has(pid)) {
666
665
  this.ownedPids.add(pid);
667
- newPids.add(pid);
668
- }
669
- }
670
- return newPids;
671
- }
672
- /**
673
- * 杀掉指定的 PID 集合(用于单次调用后清理临时进程)
674
- */
675
- killPids(pids) {
676
- for (const pid of pids) {
677
- try {
678
- process.kill(pid, "SIGTERM");
679
- this.ownedPids.delete(pid);
680
- } catch {
681
666
  }
682
667
  }
683
668
  }
@@ -733,8 +718,7 @@ ${text}`;
733
718
  } catch (err) {
734
719
  console.error(`[session] \u89D2\u8272\u8BBE\u5B9A\u5931\u8D25:`, err.stderr || err.message);
735
720
  }
736
- const skillPids = await this.trackNewPids(pidsBefore2);
737
- this.killPids(skillPids);
721
+ await this.trackNewPids(pidsBefore2);
738
722
  this.activeSessions.set(userId, {
739
723
  name: sessionName,
740
724
  createdAt: (/* @__PURE__ */ new Date()).toISOString()
@@ -750,12 +734,10 @@ ${text}`;
750
734
  ["--approve-all", agentCmd, "-s", sessionName, text],
751
735
  { timeout: this.timeout, maxBuffer: 1024 * 1024, env: getExecEnv() }
752
736
  );
753
- const newPids = await this.trackNewPids(pidsBefore);
754
- this.killPids(newPids);
737
+ await this.trackNewPids(pidsBefore);
755
738
  return this.extractReply(stdout);
756
739
  } catch (err) {
757
- const newPids = await this.trackNewPids(pidsBefore);
758
- this.killPids(newPids);
740
+ await this.trackNewPids(pidsBefore);
759
741
  console.error(`[session] sendToSession \u5931\u8D25:`, err.stderr || err.message);
760
742
  if (err.killed) {
761
743
  throw new Error(`AI \u56DE\u590D\u8D85\u65F6 (${this.timeout}ms)`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lih-x-x/kmr",
3
- "version": "1.0.54",
3
+ "version": "1.0.55",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "bin": {