install
source · Clone the upstream repo
git clone https://github.com/ComeOnOliver/skillshub
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComeOnOliver/skillshub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/googleworkspace/cli/gws-meet" ~/.claude/skills/comeonoliver-skillshub-gws-meet && rm -rf "$T"
manifest:
skills/googleworkspace/cli/gws-meet/SKILL.mdsource content
meet (v2)
PREREQUISITE: Read
for auth, global flags, and security rules. If missing, run../gws-shared/SKILL.mdto create it.gws generate-skills
gws meet <resource> <method> [flags]
API Resources
conferenceRecords
— Gets a conference record by conference ID.get
— Lists the conference records. By default, ordered by start time and in descending order.list
— Operations on the 'participants' resourceparticipants
— Operations on the 'recordings' resourcerecordings
— Operations on the 'smartNotes' resourcesmartNotes
— Operations on the 'transcripts' resourcetranscripts
spaces
— Creates a space.create
— Ends an active conference (if there's one). For an example, see End active conference.endActiveConference
— Gets details about a meeting space. For an example, see Get a meeting space.get
— Updates details about a meeting space. For an example, see Update a meeting space.patch
Discovering Commands
Before calling any API method, inspect it:
# Browse resources and methods gws meet --help # Inspect a method's required params, types, and defaults gws schema meet.<resource>.<method>
Use
gws schema output to build your --params and --json flags.