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

Method sendPlaceholderMessage

src/runtime/adapters/slack.ts:543–553  ·  view source on GitHub ↗
(
    client: any,
    route: SlackRoute,
  )

Source from the content-addressed store, hash-verified

541 await this.sendSafe(client, route, text);
542 }
543
544 private async sendPlaceholderMessage(
545 client: any,
546 route: SlackRoute,
547 ): Promise<SlackPostedMessage | null> {
548 try {
549 return await this.sendWithRetry(client, route, PROCESSING_MESSAGE);
550 } catch (err) {
551 console.error("[Slack] Failed to send placeholder message:", err);
552 return null;
553 }
554 }
555
556 private async sendWithRetry(

Callers 1

runAgentMethod · 0.95

Calls 1

sendWithRetryMethod · 0.95

Tested by

no test coverage detected