Agent Skills
› openclaw/gogcli
› gog-meet
gog-meet
GitHub通过gog工具执行Google Meet会议管理操作,包括创建、结束、查询会议空间及参与者等。强调安全认证、只读模式及自动化规范,确保数据操作准确无误。
Trigger Scenarios
需要创建或管理Google Meet会议
查询会议历史或参与者信息
结束活跃会议
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


