원클릭으로
slk-list
Create and manage Slack Lists
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create and manage Slack Lists
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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-list |
| description | Create and manage Slack Lists |
| metadata | {"version":"0.8.1","openclaw":{"category":"productivity","requires":{"bins":["slk"]},"cliHelp":"slk list --help"}} |
Create and manage Slack Lists
PREREQUISITE: Read
../slk-shared/SKILL.mdfor auth, global flags, security rules, and exit codes. If missing, runslk generate-skills.
| Command | Description |
|---|---|
slk list add-item | Add an item to a List |
slk list create | Create a new List |
slk list delete-item | Delete one item from a List |
slk list read | Read items in a List |
slk list update | Update metadata of a List |
slk list update-item | Update an item in a List |
Add an item to a List
Slack API: slackLists.items.create
slk list add-item [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
--fields | — | [] | initial fields as JSON array (see Long help for shape) |
--id | ✓ | — | list ID |
Tips: Add an item to a List.
[!CAUTION] Write command — confirm with the user before executing; preview with
--dry-run.
Create a new List
Slack API: slackLists.create
slk list create [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
--title | ✓ | — | list title |
Tips: Create a Slack List. Lists cannot be deleted via the public API (slackLists.delete does not exist) — remove them in the Slack UI.
[!CAUTION] Write command — confirm with the user before executing; preview with
--dry-run.
Delete one item from a List
Slack API: slackLists.items.delete
slk list delete-item [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
--id | ✓ | — | list ID |
--row-id | ✓ | — | row (item) ID to delete |
Tips: Deletes one List item. The whole-list delete API (slackLists.delete) does not exist — remove a List in the Slack UI.
[!CAUTION] Write command — confirm with the user before executing; preview with
--dry-run.
Read items in a List
Slack API: slackLists.items.list
slk list read [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
--id | ✓ | — | list ID |
Update metadata of a List
Slack API: slackLists.update
slk list update [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
--description | — | — | new description for the list |
--id | ✓ | — | list ID |
--name | — | — | new name for the list |
--todo-mode | — | — | todo mode string (e.g. "on" or "off") |
[!CAUTION] Write command — confirm with the user before executing; preview with
--dry-run.
Update an item in a List
Slack API: slackLists.items.update
slk list update-item [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
--fields | — | [] | updated cells as JSON array (see Long help for shape) |
--id | ✓ | — | list ID |
--row-id | — | — | row to update; injected as cells[].row_id when a cell omits it |
Tips: Update an item in a List.
[!CAUTION] Write command — confirm with the user before executing; preview with
--dry-run.