SKILL.md
readonlyread-only
name
recipe-create-classroom-course
description
建立 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






