chatccc 0.2.67 → 0.2.68

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chatccc",
3
- "version": "0.2.67",
3
+ "version": "0.2.68",
4
4
  "description": "Feishu bot bridge for Claude Code",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -146,7 +146,7 @@ describe("handleCommand WeChat processing ack", () => {
146
146
  expect(platform.sendCard).toHaveBeenCalledWith(
147
147
  "wx-chat",
148
148
  "生成中",
149
- "该会话正在生成回复中,请等待完成后再发送新消息。",
149
+ "该会话正在生成回复中,请等待完成后再发送新消息。也可以发送 /stop 结束,已完成的步骤不会丢失。",
150
150
  "yellow",
151
151
  );
152
152
  });
@@ -991,7 +991,7 @@ export async function handleCommand(
991
991
  await platform.sendCard(
992
992
  chatId,
993
993
  "生成中",
994
- "该会话正在生成回复中,请等待完成后再发送新消息。",
994
+ "该会话正在生成回复中,请等待完成后再发送新消息。也可以发送 /stop 结束,已完成的步骤不会丢失。",
995
995
  "yellow",
996
996
  );
997
997
  return;
package/src/session.ts CHANGED
@@ -685,8 +685,8 @@ export async function runAgentSession(
685
685
  console.log(`[${ts()}] [BLOCKED] Session ${sessionId} is already generating`);
686
686
  const isWechatBusy = platform.kind === "wechat";
687
687
  const busyMsg = isWechatBusy
688
- ? "当前正在生成回复中,请等待完成后再发送消息。如需中断生成,请发送 /stop 指令。"
689
- : "该会话正在生成回复中,请等待完成后再发送消息。";
688
+ ? "当前正在生成回复中,请等待完成后再发送消息。也可以发送 /stop 结束,已完成的步骤不会丢失。"
689
+ : "该会话正在生成回复中,请等待完成后再发送消息。也可以发送 /stop 结束,已完成的步骤不会丢失。";
690
690
  await platform.sendText(_chatId, busyMsg).catch(() => {});
691
691
  return;
692
692
  }