
Recipe Create Task List
Bootstrap a Google Tasks list with starter tasks from the CLI so your agent can track sprint or personal goals without opening Tasks UI.
Install
npx skills add https://github.com/googleworkspace/cli --skill recipe-create-task-listWhat is this skill?
- Four-step recipe: create task list, insert two example tasks, list tasks in table format
- Example JSON for titled lists, tasks with notes, and ISO due dates
- Requires loading gws-tasks skill before execution
- Uses `gws tasks tasklists insert` and `gws tasks tasks insert` with tasklist param
- Openclaw recipe category productivity (metadata v0.22.5)
Adoption & trust: 15.6k installs on skills.sh; 26.9k GitHub stars; 3/3 security scanners passed (skills.sh audits).
Recommended Skills
Grill Memattpocock/skills
Grill With Docsmattpocock/skills
Brainstormingobra/superpowers
Lark Tasklarksuite/cli
Lark Workflow Standup Reportlarksuite/cli
Cavemanjuliusbrussee/blueprint
Journey fit
Primary fit
Build PM is where solo founders maintain backlogs and goals; this recipe operationalizes task lists during product work. PM subphase fits creating task lists, due dates, notes, and listing tasks for execution tracking.
Common Questions / FAQ
Is Recipe Create Task List safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Recipe Create Task List
# 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 1. Create task list: `gws tasks tasklists insert --json '{"title": "Q2 Goals"}'` 2. 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"}'` 3. Add another task: `gws tasks tasks insert --params '{"tasklist": "TASKLIST_ID"}' --json '{"title": "Draft Q2 OKRs"}'` 4. List tasks: `gws tasks tasks list --params '{"tasklist": "TASKLIST_ID"}' --format table`