Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Step-by-step recipe to create a Google Classroom course and invite students using the gws CLI.
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-classroom-course3description: "Create a Google Classroom course and invite students."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "education"9requires:10bins:11- gws12skills:13- gws-classroom14---1516# Create a Google Classroom Course1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-classroom`1920Create a Google Classroom course and invite students.2122## Steps23241. Create the course: `gws classroom courses create --json '{"name": "Introduction to CS", "section": "Period 1", "room": "Room 101", "ownerId": "me"}'`252. Invite a student: `gws classroom invitations create --json '{"courseId": "COURSE_ID", "userId": "[email protected]", "role": "STUDENT"}'`263. List enrolled students: `gws classroom courses students list --params '{"courseId": "COURSE_ID"}' --format table`2728