chatccc 0.2.7 → 0.2.9

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.7",
3
+ "version": "0.2.9",
4
4
  "description": "Feishu bot bridge for Claude Code",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
package/src/cards.ts CHANGED
@@ -114,7 +114,7 @@ export function buildHelpCard(userText: string): string {
114
114
  header: { template: "blue", title: { content: "ChatCCC", tag: "plain_text" } },
115
115
  elements: [
116
116
  { tag: "div", text: { tag: "lark_md", content: `你发送了: ${userText}` } },
117
- { tag: "div", text: { tag: "lark_md", content: "使用 **/new**(默认 Claude Code)或 **/new claude** / **/new cursor** 创建新会话" } },
117
+ { tag: "div", text: { tag: "lark_md", content: "发送 **/new** 创建新会话(默认 Claude Code)\n发送 **/new claude** 创建新 Claude 对话\n发送 **/new cursor** 创建新 Cursor 会话(启动需要多等几秒)" } },
118
118
  buildButtons([
119
119
  { text: "新建 Claude Code 会话(/new claude)", value: JSON.stringify({ cmd: "new" }), type: "primary" },
120
120
  { text: "新建 Cursor 会话(/new cursor)", value: JSON.stringify({ cmd: "new cursor" }), type: "primary" },
package/src/feishu-api.ts CHANGED
@@ -338,7 +338,7 @@ export async function sendRestartCard(token: string): Promise<void> {
338
338
  config: { wide_screen_mode: true },
339
339
  header: { template: "green", title: { content: "ChatCCC Started", tag: "plain_text" } },
340
340
  elements: [
341
- { tag: "div", text: { tag: "lark_md", content: "Bot 已启动完成,可以继续使用。\n\n使用 **/new**(默认 Claude Code)或 **/new claude** / **/new cursor** 创建新会话" } },
341
+ { tag: "div", text: { tag: "lark_md", content: "Bot 已启动完成,可以继续使用。\n\n发送 **/new** 创建新会话(默认 Claude Code)\n发送 **/new claude** 创建新 Claude 对话\n发送 **/new cursor** 创建新 Cursor 会话(启动需要多等几秒)" } },
342
342
  buildButtons([
343
343
  { text: "新建 Claude Code 会话(/new claude)", value: JSON.stringify({ cmd: "new" }), type: "primary" },
344
344
  { text: "新建 Cursor 会话(/new cursor)", value: JSON.stringify({ cmd: "new cursor" }), type: "primary" },