@circlesac/holla 26.3.6 → 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 +1 -1
- package/skills/slack/SKILL.md +21 -0
package/package.json
CHANGED
package/skills/slack/SKILL.md
CHANGED
|
@@ -162,3 +162,24 @@ All read commands support: `--json` (structured), `--plain` (tab-separated), or
|
|
|
162
162
|
## Name resolution
|
|
163
163
|
|
|
164
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.
|