# Recipe Create Task List > Set up a new Google Tasks list with initial tasks. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-create-task-list Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 13 tok installed, 236 tok once triggered, 236 tok with every bundled file Bundle: 1 file, 942 B Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill recipe-create-task-list --agent claude-code ``` ## What it does - Crea una nueva lista de tareas en Google Tasks con `gws tasks tasklists insert` - Agrega tareas iniciales a la lista con `gws tasks tasks insert`, incluyendo notas y fecha de vencimiento - Lista las tareas creadas con `gws tasks tasks list --format table` para verificarlas ## Use it when - Cuando se necesita configurar una nueva lista de tareas con tareas iniciales en Google Tasks ## What triggers it - "Crea una lista de tareas en Google Tasks llamada Q2 Goals con algunas tareas iniciales" - "Configura una nueva lista de tareas y agrega dos tareas con fechas de vencimiento" ## Before you install - Requiere el binario `gws` y cargar la skill `gws-tasks` antes de ejecutar esta receta. ## Files - SKILL.md — 942 B ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # 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` --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-create-task-list