gcal

gcal is a skill for Claude Code, Codex from naoterumaker/openclaw-gog-skills. It costs 81 tokens per session (2,488 once invoked), scanned A, original, MIT.

A Google Calendar tool for viewing, creating, updating, and deleting events through the gog command-line program.

In plain words
What is it for?
Use it to check today's or upcoming events, add meetings or all-day events, include locations and descriptions, manage attendees, and cancel or change scheduled events.
Why use it?
It lets a coding agent handle calendar work from commands instead of making you switch to the calendar website and enter each change yourself.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to check today's or upcoming events, add meetings or all-day events, include locations and descriptions, manage attendees, and cancel or change scheduled events.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/naoterumaker/openclaw-gog-skills/gcal
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add naoterumaker/openclaw-gog-skills --skill gcal
Clone the repo
git clone --depth 1 https://github.com/naoterumaker/openclaw-gog-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for gcal

README.md
[![agentmods](https://agentmods.dev/badge/skills/naoterumaker/openclaw-gog-skills/gcal/github.svg)](https://agentmods.dev/skills/naoterumaker/openclaw-gog-skills/gcal)
Your own site
<a href="https://agentmods.dev/skills/naoterumaker/openclaw-gog-skills/gcal"><img src="https://agentmods.dev/badge/skills/naoterumaker/openclaw-gog-skills/gcal/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for gcal

Your own site · 80×15
<a href="https://agentmods.dev/skills/naoterumaker/openclaw-gog-skills/gcal"><img src="https://agentmods.dev/badge/skills/naoterumaker/openclaw-gog-skills/gcal.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,488 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00081 $0.02488
Opus 5 $0.00041 $0.01244
Sonnet 5 $0.00016 $0.00498
Haiku 4.5 $0.00008 $0.00249

Measured 12d ago against content hash aebf1678d36c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

gcal scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

gcal/SKILL.md · 340 lines

How it starts

The opening of the file, as written. The whole thing — 340 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Google Calendar 操作スキル (gog v0.10.0)

gog CLI でGoogleカレンダーを操作する。

実行パス: gog

認証アカウント: (gogで認証したアカウント)

Execution Notes

  • exec ツールで実行時、timeout: 60 を指定
  • 日時はRFC3339形式: 2026-02-15T10:00:00+09:00

予定一覧

基本(今後7日間)

gog calendar events
gog calendar events --max 10

期間指定

gog calendar events --from "2026-02-01" --to "2026-02-28"
gog calendar events --from "2026-02-15T00:00:00+09:00" --to "2026-02-15T23:59:59+09:00"

特定カレンダー

gog calendar events primary                    # メインカレンダー
gog calendar events "[email protected]"         # 共有カレンダー

今日の予定

TODAY=$(date +%Y-%m-%d)
gog calendar events --from "${TODAY}T00:00:00+09:00" --to "${TODAY}T23:59:59+09:00"

予定作成

基本

gog calendar create primary \
  --summary "ミーティング" \
  --from "2026-02-15T10:00:00+09:00" \
  --to "2026-02-15T11:00:00+09:00"

終日予定

gog calendar create primary \
  --summary "休暇" \
  --from "2026-02-20" \
  --to "2026-02-21" \
  --all-day

場所・説明付き

gog calendar create primary \
  --summary "クライアントMTG" \
  --from "2026-02-15T14:00:00+09:00" \
  --to "2026-02-15T15:30:00+09:00" \
  --location "東京都渋谷区〇〇ビル 5F" \
  --description "議題:\n1. 進捗報告\n2. 次回スケジュール"

参加者追加

gog calendar create primary \
  --summary "定例会議" \
  --from "2026-02-15T10:00:00+09:00" \
  --to "2026-02-15T11:00:00+09:00" \
  --attendees "[email protected],[email protected]"

Google Meet付き

gog calendar create primary \
  --summary "オンラインMTG" \
  --from "2026-02-15T10:00:00+09:00" \
  --to "2026-02-15T11:00:00+09:00" \
  --with-meet

リマインダー付き

gog calendar create primary \
  --summary "重要MTG" \
  --from "2026-02-15T10:00:00+09:00" \
  --to "2026-02-15T11:00:00+09:00" \
  --reminder "popup:30m" \
  --reminder "email:1d"

繰り返し予定

# 毎週月曜
gog calendar create primary \
  --summary "週次定例" \
  --from "2026-02-17T10:00:00+09:00" \
  --to "2026-02-17T11:00:00+09:00" \
  --rrule "RRULE:FREQ=WEEKLY;BYDAY=MO"

# 毎月15日
gog calendar create primary \
  --summary "月次報告" \
  --from "2026-02-15T10:00:00+09:00" \
  --to "2026-02-15T11:00:00+09:00" \
  --rrule "RRULE:FREQ=MONTHLY;BYMONTHDAY=15"

Read the full file on GitHub · 340 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 340 lines · 81 tokens per session scan A aebf1678d36c

Subscribe to this mod's changes

gcal is a skill published in the GitHub repository naoterumaker/openclaw-gog-skills (4 stars, last pushed 6mo ago), licensed MIT. It adds 81 tokens to every session and 2,488 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories