mit einem Klick
slk-user
List and inspect users
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
List and inspect users
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
Manage Slack credentials
Manage channel bookmarks
Create, read, update, list canvases
List and manage channels
Do-Not-Disturb status and snooze
List custom emoji
| name | slk-user |
| description | List and inspect users |
| metadata | {"version":"0.8.1","openclaw":{"category":"productivity","requires":{"bins":["slk"]},"cliHelp":"slk user --help"}} |
List and inspect users
PREREQUISITE: Read
../slk-shared/SKILL.mdfor auth, global flags, security rules, and exit codes. If missing, runslk generate-skills.
| Command | Description |
|---|---|
slk user by-email | Look up a user by email address |
slk user channels | List channels a user belongs to |
slk user delete-photo | Delete the current user's profile photo |
slk user info | Show one user's profile |
slk user list | List workspace users |
slk user presence | Get a user's presence status |
slk user profile | Show a user's profile fields |
slk user set-photo | Upload a profile photo |
slk user set-presence | Set the token owner's presence (auto or away) |
slk user set-profile | Update a profile field or set raw profile JSON |
Look up a user by email address
Slack API: users.lookupByEmail
slk user by-email [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
--email | ✓ | — | email address to look up |
List channels a user belongs to
Slack API: users.conversations
slk user channels [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
--types | — | — | conversation types filter (e.g. public_channel,private_channel,mpim,im) |
--user | — | — | user ID (defaults to the token owner when empty) |
Delete the current user's profile photo
Slack API: users.deletePhoto
slk user delete-photo
[!CAUTION] Write command — confirm with the user before executing; preview with
--dry-run.
Show one user's profile
Slack API: users.info
slk user info [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
--user | ✓ | — | user ID |
List workspace users
Slack API: users.list
slk user list [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
--cursor | — | — | initial pagination cursor |
--include-bots | — | — | include bot users (default false) |
--include-deactivated | — | — | include deactivated users (default false) |
--limit | — | 0 | max users to return (0 = no client-side cap) |
Tips: List workspace users.
Get a user's presence status
Slack API: users.getPresence
slk user presence [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
--user | — | — | user ID (defaults to the token owner when empty) |
Show a user's profile fields
Slack API: users.profile.get
slk user profile [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
--include-locale | — | — | include locale in response |
--user | — | — | user ID (defaults to current user when empty) |
Upload a profile photo
Slack API: users.setPhoto
slk user set-photo [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
--file | ✓ | — | path to image file |
[!CAUTION] Write command — confirm with the user before executing; preview with
--dry-run.
Set the token owner's presence (auto or away)
Slack API: users.setPresence
slk user set-presence [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
--presence | ✓ | — | presence value: auto or away |
[!CAUTION] Write command — confirm with the user before executing; preview with
--dry-run.
Update a profile field or set raw profile JSON
Slack API: users.profile.set
slk user set-profile [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
--name | — | — | profile field name (used with --value) |
--profile | — | — | raw JSON profile object (overrides --name/--value) |
--value | — | — | profile field value (used with --name) |
[!CAUTION] Write command — confirm with the user before executing; preview with
--dry-run.