MCPcopy Create free account
hub / github.com/CreminiAI/skillpack / sendLongMessage

Method sendLongMessage

src/runtime/adapters/feishu.ts:332–340  ·  view source on GitHub ↗
(
    chatId: string,
    text: string,
    replyTo?: string,
  )

Source from the content-addressed store, hash-verified

330
331 private resolveCommand(text: string): BotCommand | null {
332 return resolveCommand(text);
333 }
334
335 private async sendLongMessage(
336 chatId: string,
337 text: string,
338 replyTo?: string,
339 ): Promise<void> {
340 for (const chunk of this.splitMessage(text)) {
341 await this.sendSafe(chatId, chunk, replyTo);
342 }
343 }

Callers 2

sendMessageMethod · 0.95
handleIncomingMessageMethod · 0.95

Calls 2

splitMessageMethod · 0.95
sendSafeMethod · 0.95

Tested by

no test coverage detected