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 +1 -1
- package/src/cards.ts +1 -1
- package/src/feishu-api.ts +1 -1
package/package.json
CHANGED
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: "
|
|
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
|
|
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" },
|