claude-code - 💡(How to fix) Fix Feature request: Discord plugin should show typing indicator during full processing time [1 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
anthropics/claude-code#47776Fetched 2026-04-15 06:42:41
View on GitHub
Comments
1
Participants
2
Timeline
2
Reactions
0
Timeline (top)
commented ×1labeled ×1
RAW_BUFFERClick to expand / collapse

When the Discord plugin receives a message and Claude is processing (researching, thinking, calling tools), the typing indicator only appears briefly at the start, then disappears. There's a long pause with no feedback before the response appears. This makes it look like the bot has stalled.

Expected behavior: The typing indicator should persist and refresh on an interval for the entire duration between receiving a message and sending the response, similar to how OpenClaw handles this with typingMode and typingIntervalSeconds.

Current behavior: Typing indicator fires briefly, disappears, long pause, then response appears.

Suggested implementation: Send a typing indicator as soon as a message is received, and refresh it every few seconds until the response is sent. A configurable interval (e.g. typingIntervalSeconds) would be ideal.

extent analysis

TL;DR

Implement a periodic typing indicator refresh mechanism to provide continuous feedback during message processing.

Guidance

  • Investigate the current implementation of the typing indicator to understand why it only appears briefly and disappears.
  • Consider introducing a configurable interval (e.g., typingIntervalSeconds) to control how often the typing indicator is refreshed.
  • Send a typing indicator as soon as a message is received and refresh it at regular intervals until the response is sent.
  • Review the OpenClaw implementation of typingMode and typingIntervalSeconds for inspiration on how to achieve the desired behavior.

Example

// Pseudo-code example of periodic typing indicator refresh
setInterval(() => {
  if (messageBeingProcessed) {
    sendTypingIndicator();
  }
}, typingIntervalSeconds * 1000);

Notes

The exact implementation details may vary depending on the programming language and framework used. This guidance assumes a similar architecture to OpenClaw.

Recommendation

Apply workaround: Implement a periodic typing indicator refresh mechanism to provide continuous feedback during message processing, as this will improve the user experience and provide a more responsive interaction with the bot.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING