Agent Skills
› googleworkspace/cli
› recipe-create-task-list
recipe-create-task-list
GitHub用于通过Google Tasks API创建新任务列表并添加初始任务,支持设置任务标题、备注和截止日期等属性。
触发场景
需要创建新的Google Tasks列表
批量初始化任务列表中的多个任务
安装
npx skills add googleworkspace/cli --skill recipe-create-task-list -g -y
SKILL.md
Frontmatter
{
"name": "recipe-create-task-list",
"metadata": {
"version": "0.22.5",
"openclaw": {
"domain": "productivity",
"category": "recipe",
"requires": {
"bins": [
"gws"
],
"skills": [
"gws-tasks"
]
}
}
},
"description": "Set up a new Google Tasks list with initial tasks."
}
Create a Task List and Add Tasks
PREREQUISITE: Load the following skills to execute this recipe:
gws-tasks
Set up a new Google Tasks list with initial tasks.
Steps
- Create task list:
gws tasks tasklists insert --json '{"title": "Q2 Goals"}' - Add a task:
gws tasks tasks insert --params '{"tasklist": "TASKLIST_ID"}' --json '{"title": "Review Q1 metrics", "notes": "Pull data from analytics dashboard", "due": "2024-04-01T00:00:00Z"}' - Add another task:
gws tasks tasks insert --params '{"tasklist": "TASKLIST_ID"}' --json '{"title": "Draft Q2 OKRs"}' - List tasks:
gws tasks tasks list --params '{"tasklist": "TASKLIST_ID"}' --format table
版本历史
- a3768d0 当前 2026-08-20 07:26


