# task +create > **Prerequisites:** Please read `../lark-shared/SKILL.md` to understand authentication, global parameters, and security rules. Create a new task in Lark. ## Recommended Commands ```bash # Create a task with all details lark-cli task +create \ --summary "Quarterly Sales Review" \ --description "Review the sales performance for the last quarter." \ --assignee "ou_xxx" \ --due "2026-03-25" \ --tasklist-id "https://applink.larkoffice.com/client/todo/task_list?guid=a4b00000-000-000-000-00000000036c" # Create a task assigned to an app lark-cli task +create \ --summary "Nightly Sync" \ --assignee "cli_xxx" # Create a simple task lark-cli task +create \ --summary "Buy milk" # Preview the API call without executing lark-cli task +create --summary "Test Task" --dry-run ``` ## Parameters | Parameter | Required | Description | |-----------|----------|-------------| | `--summary ` | Yes | The title or summary of the task | | `--description ` | No | Detailed description of the task | | `--assignee ` | No | Assignee ID. Use user `open_id` like `ou_xxx` for people, or app ID like `cli_xxx` for apps. | | `--follower ` | No | Follower ID. Use user `open_id` like `ou_xxx` for people, or app ID like `cli_xxx` for apps. | | `--due