Recipe Create Classroom Course

v1.0.12

Create a Google Classroom course and invite students.

0· 462·10 current·10 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for googleworkspace-bot/recipe-create-classroom-course.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Recipe Create Classroom Course" (googleworkspace-bot/recipe-create-classroom-course) from ClawHub.
Skill page: https://clawhub.ai/googleworkspace-bot/recipe-create-classroom-course
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: gws
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install recipe-create-classroom-course

ClawHub CLI

Package manager switcher

npx clawhub@latest install recipe-create-classroom-course
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
The name/description (create a Classroom course and invite students) matches the instructions which run gws classroom commands. Requiring the gws binary and the gws-classroom skill is appropriate for this purpose.
Instruction Scope
SKILL.md only instructs use of gws to create a course, create an invitation, and list students. It does not ask the agent to read unrelated files, exfiltrate data to unknown endpoints, or perform broad system inspection. PLACEHOLDER values (e.g., COURSE_ID) are used correctly.
Install Mechanism
This is an instruction-only skill with no install spec or code files — minimal risk from installation artifacts.
Credentials
The recipe declares no environment variables or credentials itself, which is reasonable for a small wrapper. However it depends on the gws CLI / gws-classroom skill to provide authentication. The gws CLI will require Google account credentials and OAuth scopes to create courses and send invitations — you should confirm what credentials/scopes gws-classroom requests before installing.
Persistence & Privilege
The skill is not always: true and does not request persistent system-wide privileges. It does rely on an external CLI and another skill but does not modify other skills or agent-wide config itself.
Assessment
This recipe itself is lightweight and just runs gws CLI commands, which matches its stated purpose. Before installing: (1) confirm you trust the source (no homepage or provenance is provided here), (2) inspect the gws-classroom skill and the gws CLI to see what Google account credentials and OAuth scopes they require (they will need permission to create courses and invite users), and (3) ensure the required gws binary is from a reputable install source. If you cannot verify gws-classroom or gws, avoid granting them Google Workspace admin-level scopes.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Binsgws
latestvk97cv1wzzc9321k24qnh8294en83znpn
462downloads
0stars
13versions
Updated 4w ago
v1.0.12
MIT-0

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

Comments

Loading comments...