* 构建 AI 自选技能菜单文本 * 只包含与当前 chatType + 助手工具权限兼容的技能
(chatType: 'group' | 'private', allowedTools?: string[])
| 84 | * 只包含与当前 chatType + 助手工具权限兼容的技能 |
| 85 | */ |
| 86 | getSkillMenu(chatType: 'group' | 'private', allowedTools?: string[]): string | null { |
| 87 | return this.core.getSkillMenu(chatType, allowedTools) |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | function toLoggerExtra(data: unknown): Record<string, unknown> | undefined { |
no outgoing calls
no test coverage detected