Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions skills/lark-task/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,20 @@ lark-cli task <resource> <method> [flags] # 调用 API
- `patch` — 更新自定义分组
- `tasks` — 获取自定义分组任务列表

### custom_fields

- `create` — 创建自定义字段
- `get` — 获取自定义字段详情
- `patch` — 更新自定义字段
- `list` — 获取自定义字段列表
- `add` — 将自定义字段加入资源
- `remove` — 将自定义字段移出资源

### custom_field_options

- `create` — 创建自定义字段选项
- `patch` — 更新自定义字段选项

## 权限表

| 方法 | 所需 scope |
Expand Down Expand Up @@ -127,3 +141,11 @@ lark-cli task <resource> <method> [flags] # 调用 API
| `sections.list` | `task:section:read` |
| `sections.patch` | `task:section:write` |
| `sections.tasks` | `task:section:read` |
| `custom_fields.create` | `task:custom_field:write` |
| `custom_fields.get` | `task:custom_field:read` |
| `custom_fields.patch` | `task:custom_field:write` |
| `custom_fields.list` | `task:custom_field:read` |
| `custom_fields.add` | `task:custom_field:write` |
| `custom_fields.remove` | `task:custom_field:write` |
| `custom_field_options.create` | `task:custom_field:write` |
| `custom_field_options.patch` | `task:custom_field:write` |
Loading