openclaw/src/slack
Lloyd ab994d2c63 feat(agent): add human-like delay between block replies
Adds `agent.humanDelay` config option to create natural rhythm between
streamed message bubbles. When enabled, introduces a random delay
(default 800-2500ms) between block replies, making multi-message
responses feel more like natural human texting.

Config example:
```json
{
  "agent": {
    "blockStreamingDefault": "on",
    "humanDelay": {
      "enabled": true,
      "minMs": 800,
      "maxMs": 2500
    }
  }
}
```

- First message sends immediately
- Subsequent messages wait a random delay before sending
- Works with iMessage, Signal, and Discord providers

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-10 17:12:50 +01:00
..
accounts.ts feat: add slack multi-account routing 2026-01-08 08:49:16 +01:00
actions.ts fix: resolve merge conflicts and fix threading tests 2026-01-09 21:59:51 +01:00
format.test.ts fix(slack): mrkdwn + thread edge cases (#464) (thanks @austinm911) 2026-01-09 22:09:02 +01:00
format.ts fix(slack): mrkdwn + thread edge cases (#464) (thanks @austinm911) 2026-01-09 22:09:02 +01:00
index.ts feat: add slack multi-account routing 2026-01-08 08:49:16 +01:00
monitor.test.ts fix(slack): mrkdwn + thread edge cases (#464) (thanks @austinm911) 2026-01-09 22:09:02 +01:00
monitor.tool-result.test.ts fix: resolve merge conflicts and fix threading tests 2026-01-09 21:59:51 +01:00
monitor.ts feat(agent): add human-like delay between block replies 2026-01-10 17:12:50 +01:00
probe.ts Slack: add some fixes and connect it all up 2026-01-04 01:53:26 -06:00
send.ts Slack: add mrkdwn formatter for proper bold/italic/strikethrough rendering 2026-01-09 21:59:51 +01:00
threading.test.ts refactor: centralize slack threading helpers 2026-01-09 16:01:53 +00:00
threading.ts refactor: centralize slack threading helpers 2026-01-09 16:01:53 +00:00
token.ts Slack: add some fixes and connect it all up 2026-01-04 01:53:26 -06:00
types.ts refactor: centralize slack threading helpers 2026-01-09 16:01:53 +00:00