agent-slack 0.6.0 → 0.7.1
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/README.md +6 -1
- package/dist/index.js +990 -28
- package/dist/index.js.map +17 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -90,6 +90,11 @@ agent-slack
|
|
|
90
90
|
│ ├── all <query> # messages + files
|
|
91
91
|
│ ├── messages <query>
|
|
92
92
|
│ └── files <query>
|
|
93
|
+
├── workflow
|
|
94
|
+
│ ├── list <channel> # workflows bookmarked in a channel
|
|
95
|
+
│ ├── preview <trigger-id> # trigger metadata (no side effects)
|
|
96
|
+
│ ├── get <id> # workflow definition + form fields
|
|
97
|
+
│ └── run <trigger-id> # trip a workflow trigger
|
|
93
98
|
└── canvas
|
|
94
99
|
└── get <canvas-url-or-id> # canvas → markdown
|
|
95
100
|
```
|
|
@@ -293,7 +298,7 @@ When to use which:
|
|
|
293
298
|
|
|
294
299
|
### Files (snippets/images/attachments)
|
|
295
300
|
|
|
296
|
-
`message get/list` auto-download attached files to an agent-friendly temp directory and return
|
|
301
|
+
`message get/list` auto-download attached files to an agent-friendly temp directory and return file metadata in `message.files[]`, including `name` when Slack provides the original filename and `path` for the local download. Failed downloads keep the attachment entry, preserve `message.files[].path` with a local `.download-error.txt` file, and include `message.files[].error`. `search messages` and `search all` use the same attachment shape for message results, while `search files` skips entries whose download fails.
|
|
297
302
|
|
|
298
303
|
- macOS default: `~/.agent-slack/tmp/downloads/`
|
|
299
304
|
|