SKILL.md
只读
名称
recipe-create-classroom-course
描述
创建一个 Google Classroom 课程并邀请学生。
创建一个 Google Classroom 课程
前提条件: 加载以下技能以执行此配方:
gws-classroom
创建一个 Google Classroom 课程并邀请学生。
步骤
- 创建课程:
gws classroom courses create --json '{"name": "Introduction to CS", "section": "Period 1", "room": "Room 101", "ownerId": "me"}' - 邀请学生:
gws classroom invitations create --json '{"courseId": "COURSE_ID", "userId": "student@school.edu", "role": "STUDENT"}' - 列出已注册学生:
gws classroom courses students list --params '{"courseId": "COURSE_ID"}' --format table






