Agent Skills
› googleworkspace/cli
› recipe-create-classroom-course
recipe-create-classroom-course
GitHub创建 Google Classroom 课程并邀请学生,支持列出已注册学生。
Trigger Scenarios
需要创建新的在线课程
向课程中添加或邀请学生
查看课程的学生列表
Install
npx skills add googleworkspace/cli --skill recipe-create-classroom-course -g -y
SKILL.md
Frontmatter
{
"name": "recipe-create-classroom-course",
"metadata": {
"version": "0.22.5",
"openclaw": {
"domain": "education",
"category": "recipe",
"requires": {
"bins": [
"gws"
],
"skills": [
"gws-classroom"
]
}
}
},
"description": "Create a Google Classroom course and invite students."
}
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
- Create the course:
gws classroom courses create --json '{"name": "Introduction to CS", "section": "Period 1", "room": "Room 101", "ownerId": "me"}' - Invite a student:
gws classroom invitations create --json '{"courseId": "COURSE_ID", "userId": "student@school.edu", "role": "STUDENT"}' - List enrolled students:
gws classroom courses students list --params '{"courseId": "COURSE_ID"}' --format table
Version History
- a3768d0 Current 2026-08-20 07:26


