# Recipe Create Classroom Course > Create a Google Classroom course and invite students. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-create-classroom-course Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 13 tok installed, 220 tok once triggered, 220 tok with every bundled file Bundle: 1 file, 881 B Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill recipe-create-classroom-course --agent claude-code ``` ## What it does - Crea un curso nuevo en Google Classroom con nombre, sección y sala - Invita a un estudiante al curso mediante su correo - Lista los estudiantes inscritos en el curso en formato tabla ## Use it when - Se necesita crear un curso de Google Classroom e invitar estudiantes ## What triggers it - "Crea un curso de Classroom llamado Introduction to CS e invita a un estudiante" - "Crea un curso en Google Classroom y lista sus estudiantes inscritos" ## Before you install - Requiere el binario `gws` y tener cargada la skill `gws-classroom`. ## Files - SKILL.md — 881 B ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # Create a Google Classroom Course > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-classroom` Create a Google Classroom course and invite students. ## Steps 1. Create the course: `gws classroom courses create --json '{"name": "Introduction to CS", "section": "Period 1", "room": "Room 101", "ownerId": "me"}'` 2. Invite a student: `gws classroom invitations create --json '{"courseId": "COURSE_ID", "userId": "student@school.edu", "role": "STUDENT"}'` 3. List enrolled students: `gws classroom courses students list --params '{"courseId": "COURSE_ID"}' --format table` --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-create-classroom-course