wait_for_reply
Blocks until a reviewer replies after a given timestamp, or times out. Returns reply text or 'still_awaiting'.
Instructions
Block until the reviewer posts a thread reply AFTER since_ts, or until timeout. Returns the
reply text (status 'answered') or 'still_awaiting'. Use to keep waiting after ask_review timed out.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel | No | Channel/DM of the review; defaults to SLACK_DEFAULT_CHANNEL. | |
| since_ts | Yes | Only a reply AFTER this ts counts — pass the `ask_id` from ask_review (or a prior reply_ts). | |
| review_id | Yes | The `review_id` (thread) to watch. | |
| poll_seconds | No | Seconds between reply polls. | |
| timeout_seconds | No | Max seconds to block before returning 'still_awaiting' (call again to keep waiting). |