Agent Skills
› openclaw/gogcli
› gog-meet
gog-meet
GitHub通过gog工具管理Google Meet会议空间,支持创建、结束、查询会议及参与者等自动化操作。
Trigger Scenarios
用户需要创建或加入Google Meet会议
需要查询会议历史或参与者信息
自动化脚本中调用Google Meet API
Install
npx skills add openclaw/gogcli --skill gog-meet -g -y
SKILL.md
Frontmatter
{
"name": "gog-meet",
"description": "Google Meet operations through gog."
}
Google Meet
Use gog for Google Meet operations. Read ../gog/SKILL.md first for shared auth,
output, safety, and live-write rules.
Safe start
gog auth list --check --json --no-input
gog schema meet --json
gog --readonly --account user@example.com meet --help
- Select the account explicitly with
--account. - Use
--json --wrap-untrustedfor agent-readable Google content. - Use
--readonlywhen the task must not mutate Google data. - Use
--no-inputin automation and--dry-runbefore supported writes. - Confirm the exact account, object, and mutation before any write or delete.
Commands
| Command | Purpose |
|---|---|
create |
Create a meeting space |
end |
End active conference |
get |
Get a meeting space |
history |
List past calls in a meeting |
participants |
List participants from the latest call |
update |
Update space config |
Run gog meet <command> --help for flags and gog schema meet <command> --json
for the machine-readable contract. Do not guess command syntax.
Version History
- eb85a99 Current 2026-08-20 12:40


