Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

gog-calendar戈格日历

Agent Skill

gog-calendar 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

180,442

周安装

7,371

GitHub Stars

5

下载量

58,378
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gog-calendar(戈格日历)
来源仓库:https://github.com/lstpsche/gog-calendar
安装命令:
openclaw skills install gog-calendar
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install gog-calendar

简介

使用 gogcli 访问和管理 Google 日历活动,以实现跨日历议程、关键字搜索和过滤输出,避免不需要的日历(例如假期)。

SKILL.md

name
gog-calendar
description
Google Calendar via gogcli: reliable cross-calendar agenda (today/week/range) and best-effort keyword search across calendars (iterate + aggregate). Token-efficient output (--plain default, --json only when needed). Post-filters unwanted calendars (e.g., holidays) and confirms before writes.
metadata
{"openclaw":{"emoji":"📅","requires":{"bins":["gog"]},"install":[{"id":"brew","kind":"brew","formula":"steipete/tap/gogcli","bins":["gog"],"label":"Install gogcli (brew)"}]}}

gog-calendar

Use gog (gogcli) for Google Calendar: agenda (events list) and keyword search across calendars.

Output rule (tokens vs reliability)

gogcli stdout should stay parseable; prefer --plain / --json and put hints to stderr. oai_citation:0‡GitHub

  • Default to --plain for read-only listing you only summarize (cheaper tokens):

- agenda listing (today / next days / range) - calendars list

  • Use --json only when structure is required:

- aggregating results across calendars (cross-calendar keyword search) - deduping / sorting / extracting IDs for follow-up calls - any write workflow where exact fields matter

Calendar exclusions (post-processing)

Users may explicitly exclude certain calendars from searches/agenda (e.g., “National holidays”). When answering, you MUST: 1) Query broadly (e.g., events --all or iterate all calendars for search), 2) Then filter out excluded calendars in post-processing.

How to determine excluded calendars:

  • First, check the user’s preferences/memory for an explicit “exclude calendars” list.
  • If none is provided, apply a conservative default filter for obvious noise calendars:

- calendars whose name/summary contains: holiday, holidays, national holidays (and localized equivalents)

  • Never filter out user-owned calendars unless explicitly excluded.

Filtering rule:

  • If you have calendar metadata (from gog calendar calendars), filter by calendar name/summary.
  • If you only have events output, filter by matching event’s calendarId to the excluded calendarIds resolved from the calendars list.

Always mention filtering briefly if it materially changes the answer:

  • “(Filtered out: National holidays)”

Agenda (always cross-calendar, then filter)

For “what’s on my calendar today / tomorrow / this week / between X and Y”:

  • MUST query all calendars:

- gog calendar events --all --from <date_or_iso> --to <date_or_iso> --plain

  • Then apply calendar exclusions (above).
  • Do not answer “nothing scheduled” unless you ran the command for the correct window and applied filtering.

Examples:

  • Today: gog calendar events --all --from 2026-02-04 --to 2026-02-05 --plain
  • Next 7 days: gog calendar events --all --from 2026-02-04 --to 2026-02-11 --plain

Output formatting:

  • sort by start time
  • group by day
  • show: time range, summary, location (calendar name only if it helps)

Keyword search across calendars (best-effort, aggregate, then filter)

Calendar event queries are scoped to a calendarId (API is /calendars/{calendarId}/events), so keyword search must iterate calendars and aggregate results. oai_citation:2‡Google for Developers

Default window:

  • if user didn’t specify a range: next 6 months from today (inclusive)
  • if user specified date/range: use it

Workflow (do not skip): 1) List calendars (need IDs + names for filtering): - gog calendar calendars --json 2) Build the set of excluded calendarIds from the exclusions rule. 3) For EACH non-excluded calendarId, search (JSON required for merge/dedupe): - gog calendar search "<query>" --calendar <calendarId> --from <from> --to <to> --max 50 --json --no-input 4) Aggregate all matches across calendars (do NOT stop on first match unless user asked). 5) Deduplicate by (calendarId, eventId), sort by start time. 6) Report results and explicitly mention the searched window (and any filters applied).

If nothing found in default window:

  • say: “No events found in the next 6 months (<from> → <to>). Want me to search further (e.g., 12 months) or within specific dates?”

Fallback if user is sure it exists:

  • ask/derive an approximate date and list around it (then filter):

- gog calendar events --all --from <date-7d> --to <date+7d> --plain

  • then match by title tokens locally (casefold + token overlap)

Writes (create/update/delete/RSVP)

Before any write action:

  • summarize exact intent (calendar, title, start/end, timezone, attendees, location)
  • ask for explicit “yes”
  • then run the command

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.24%
按下载量换算52,097

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills