Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Create a new Google Tasks list and populate it with initial tasks including due dates.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-create-task-list3description: "Set up a new Google Tasks list with initial tasks."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-tasks14---1516# Create a Task List and Add Tasks1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-tasks`1920Set up a new Google Tasks list with initial tasks.2122## Steps23241. Create task list: `gws tasks tasklists insert --json '{"title": "Q2 Goals"}'`252. 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"}'`263. Add another task: `gws tasks tasks insert --params '{"tasklist": "TASKLIST_ID"}' --json '{"title": "Draft Q2 OKRs"}'`274. List tasks: `gws tasks tasks list --params '{"tasklist": "TASKLIST_ID"}' --format table`2829