@circlesac/holla 26.3.5 → 26.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -42,5 +42,5 @@
42
42
  "test": "vitest run"
43
43
  },
44
44
  "type": "module",
45
- "version": "26.3.5"
45
+ "version": "26.3.7"
46
46
  }
@@ -148,6 +148,7 @@ holla slack stars add --channel <ch> --ts <ts> -w <ws>
148
148
  holla slack bookmarks add --channel <ch> --title "Link" --link "https://..." -w <ws>
149
149
  holla slack reminders add --text "Do thing" --time "in 1 hour" -w <ws>
150
150
  holla slack files upload --channels "#general" --file ./doc.pdf -w <ws>
151
+ holla slack files download --file <file-id> -o ./output.pdf -w <ws>
151
152
  holla slack users info --user @username -w <ws> --json
152
153
  holla slack api <method> --body '{"key":"value"}' -w <ws> # Raw API passthrough
153
154
  ```
@@ -161,3 +162,24 @@ All read commands support: `--json` (structured), `--plain` (tab-separated), or
161
162
  ## Name resolution
162
163
 
163
164
  Channels accept `#name` or ID. Users accept `@name` or ID. Fuzzy matching suggests corrections on typos.
165
+
166
+ ## Post-action verification (REQUIRED)
167
+
168
+ After any write action (send, reply, edit, delete, reactions add/remove, mentions, etc.), **always re-fetch the result** to verify it worked correctly:
169
+
170
+ ```bash
171
+ # After sending/editing a message — verify content and formatting
172
+ holla slack chat get --channel <ch> --ts <ts> -w <ws> --json
173
+
174
+ # After adding a reaction — verify it appears
175
+ holla slack channels history --channel <ch> --limit 1 -w <ws> --json
176
+ ```
177
+
178
+ **What to check:**
179
+ - **Message content**: Does the rendered text match the intended format? (markdown, line breaks, etc.)
180
+ - **Mentions**: Did `<@USER_ID>` resolve to the correct person? Is the mention actually visible?
181
+ - **Mention removal**: If a message was edited to remove a mention, verify the mention is actually gone in the fetched result
182
+ - **Reactions**: Confirm the reaction emoji name resolved correctly and appears on the right message
183
+ - **Deletions**: Confirm the message/reaction is actually gone
184
+
185
+ Never assume a write action succeeded — always verify.