You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add quick-actions footers and improve dm list output
Improve dm list to use multi-line format with truncated message previews
and spacing between conversations. Add quick-actions footers to dm list,
message list, channel list, and message search commands showing
contextual next-step commands. Update docs and regenerate reference pages.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/src/content/docs/commands.md
+40-4Lines changed: 40 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,11 +98,17 @@ slackbuzz dm list --json
98
98
|`--json`| Output as JSON |
99
99
|`--jq EXPR`| Filter JSON output with a jq expression |
100
100
101
-
Reading and sending individual DMs already works via the message commands:
101
+
Each conversation is shown with the user, message count, and relative time on the first line, followed by a truncated preview of the last message. A quick-actions footer suggests next steps:
102
102
103
-
```sh
104
-
slackbuzz message list @sarah
105
-
slackbuzz message send @sarah "hey"
103
+
```
104
+
@sarah 3 messages 2 hours ago
105
+
last: "truncated message preview..."
106
+
107
+
---
108
+
Quick actions:
109
+
Read: slackbuzz message list @<user>
110
+
Reply: slackbuzz message send @<user> "text"
111
+
Save: slackbuzz later add @<user> <ts>
106
112
```
107
113
108
114
---
@@ -208,6 +214,16 @@ slackbuzz message list #general --limit 10
208
214
|`--json`| Output as JSON |
209
215
|`--jq EXPR`| Filter JSON output with a jq expression |
210
216
217
+
Output includes a quick-actions footer with contextual commands:
0 commit comments