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

Method sendMessage

src/runtime/adapters/feishu.ts:183–190  ·  view source on GitHub ↗
(channelId: string, text: string)

Source from the content-addressed store, hash-verified

181 console.log("[FeishuAdapter] Stopped");
182 }
183
184 async sendMessage(channelId: string, text: string): Promise<void> {
185 if (!this.channel) {
186 throw new Error("[Feishu] Channel not initialized");
187 }
188
189 const chatId = parseFeishuChannelId(channelId);
190 await this.sendLongMessage(chatId, text);
191 }
192
193 async sendFile(

Callers

nothing calls this directly

Calls 2

sendLongMessageMethod · 0.95
parseFeishuChannelIdFunction · 0.85

Tested by

no test coverage detected