Skip to content

Commit 79d0eda

Browse files
robzolkosmonorkin
authored andcommitted
Use <topic_id> placeholders consistently in decision tree and examples
1 parent 98b12ee commit 79d0eda

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

skills/hey/SKILL.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ CLI for HEY email: mailboxes, email threads, replies, compose, calendars, todos,
118118
Want to read email?
119119
├── Which mailbox? → hey boxes --json
120120
├── List emails in box? → hey box <name|id> --json
121-
├── Read full thread? → hey threads <id> --json
121+
├── Read full thread? → hey threads <topic_id> --json
122122
├── Mark as seen? → hey seen <posting-id>
123123
├── Mark as unseen? → hey unseen <posting-id>
124124
└── Launch interactive UI? → hey (no args, launches TUI)
@@ -163,17 +163,17 @@ Box names: `imbox`, `feedbox`, `trailbox`, `asidebox`, `laterbox`, `bubblebox`
163163
### Email - Threads
164164

165165
```bash
166-
hey threads 123 --json # Read full email thread
167-
hey threads 123 --html # Read with raw HTML content
166+
hey threads <topic_id> --json # Read full email thread
167+
hey threads <topic_id> --html # Read with raw HTML content
168168
```
169169

170170
**ID note:** `hey box` returns postings with an `id` (posting ID) and a `topic_id` (topic ID). `hey threads` and `hey reply` expect the **topic ID** — use `topic_id` directly. The `app_url` field also contains the topic ID as a fallback (e.g. `https://app.hey.com/topics/123``123`).
171171

172172
### Email - Reply & Compose
173173

174174
```bash
175-
hey reply 123 -m "Thanks!" # Reply with inline message
176-
hey reply 123 # Reply via $EDITOR
175+
hey reply <topic_id> -m "Thanks!" # Reply with inline message
176+
hey reply <topic_id> # Reply via $EDITOR
177177
hey compose --to user@example.com --subject "Hello" # Compose new (opens $EDITOR)
178178
hey compose --to user@example.com --subject "Hi" -m "Body" # With inline body
179179
hey compose --subject "Update" --thread-id 12345 -m "msg" # Post to existing thread

0 commit comments

Comments
 (0)