Operate Slack through your OOMOL-connected account. This skill calls the slack connector with the oo CLI; OOMOL injects credentials server-side, so you never handle raw tokens.
Category: Communication, Productivity. Exposes 14 action(s).
Assume the user has already installed the oo CLI, signed in, and connected Slack. Do not run oo auth login or open the connection URL proactively — just run the action. Fall back to First-time setup only when a command actually fails with an auth or connection error.
1. Inspect the contract to get the authoritative input/output schema before building a payload:
oo connector schema "slack" --action "<action_name>"
2. Run the action with a JSON payload that matches the input schema:
oo connector run "slack" --action "<action_name>" --data '<json>' --json
--data takes a JSON object string or @path/to/file.json; omit it to send {}.{ "data": ..., "meta": { "executionId": "..." } }; the execution id lives under meta.executionId.Each action below links to a reference file with its purpose and exact commands. Read the linked file, then fetch the live schema with oo connector schema before constructing --data.
delete_message — Delete a Slack message posted by the bot.get_channel_messages — Get messages from a Slack channel.get_conversation — Get metadata for a Slack conversation.get_message_permalink — Get a permalink for a Slack message.get_thread — Get messages in a Slack thread.get_user — Get metadata for a Slack user.list_channels — List Slack channels.list_conversations — List Slack conversations visible to the bot.list_users — List Slack users visible to the bot.post_ephemeral_message — Post an ephemeral message to a Slack conversation.post_message — Post a message to a Slack channel.reply_message — Reply to a Slack thread.schedule_message — Schedule a Slack message to be posted later.update_message — Update a Slack message posted by the bot.These are one-time steps — do not repeat them on every call. Run a step only when a command fails for the matching reason.
oo: command not found — install the oo CLI (other platforms: ```bash
curl -fsSL https://cli.oomol.com/install.sh | bash # macOS / Linux
```
```powershell
irm https://cli.oomol.com/install.ps1 | iex # Windows PowerShell
```
```bash
oo auth login
```
scope_missing / credential_expired / app_not_ready / app_not_found — Slack is not connected, or the connection expired or lacks a scope. Connect once (auth type: OAuth2) at:```text
https://console.oomol.com/app-connections?provider=slack
```
OOMOL_INSUFFICIENT_CREDIT — billing stop. Recharge at https://console.oomol.com/billing/token-recharge before retrying.共 1 个版本