bf9395e022
CI / license-header (push) Has been skipped
CI / e2e-dry-run (push) Has been skipped
CI / fast-gate (push) Failing after 0s
Test PR Label Logic / test-pr-labels (push) Failing after 1s
Skill Format Check / check-format (push) Failing after 2s
CI / security (push) Failing after 5s
CI / unit-test (push) Has been skipped
CI / lint (push) Has been skipped
CI / script-test (push) Has been skipped
CI / deterministic-gate (push) Has been skipped
CI / coverage (push) Has been skipped
CI / results (push) Has been cancelled
CI / deadcode (push) Has been cancelled
CI / e2e-live (push) Has been cancelled
1.4 KiB
1.4 KiB
task +tasklist-search
Prerequisites: Please read
../lark-shared/SKILL.mdto understand authentication, global parameters, and security rules.⚠️ Note: This shortcut uses tasklist search followed by tasklist detail queries to render the final output.
Search tasklists by keyword and optional filters.
Recommended Commands
# Search by keyword
lark-cli task +tasklist-search --query "测试"
# Search tasklists created by specific users
lark-cli task +tasklist-search --creator "ou_xxx,ou_yyy"
# Search by creation time range
lark-cli task +tasklist-search --query "Q2" --create-time "-30d,+0d"
Parameters
| Parameter | Required | Description |
|---|---|---|
--query <string> |
No | Search keyword. If omitted, at least one filter must be provided. |
--creator <ids> |
No | Creator open_ids, comma-separated. |
--create-time <range> |
No | Creation time range in start,end form. Each side supports ISO/date/relative/ms input. |
--page-token <string> |
No | Page token for pagination. |
--page-all |
No | Automatically paginate through all pages (max 40). |
--page-limit <int> |
No | Max page limit (default 20). |
Workflow
- Build the search keyword and filters from the user's request.
- Execute
lark-cli task +tasklist-search ... - Report the matched tasklists and the next
page_tokenif more results exist.