← 返回 Skills 市场
googleworkspace-bot

Gws Calendar

作者 googleworkspace-bot · GitHub ↗ · v1.0.13 · MIT-0
cross-platform ⚠ suspicious
1210
总下载
1
收藏
22
当前安装
14
版本数
在 OpenClaw 中安装
/install gws-calendar
功能描述
Google Calendar: Manage calendars and events.
使用说明 (SKILL.md)

calendar (v3)

PREREQUISITE: Read ../gws-shared/SKILL.md for auth, global flags, and security rules. If missing, run gws generate-skills to create it.

gws calendar \x3Cresource> \x3Cmethod> [flags]

Helper Commands

Command Description
+insert create a new event
+agenda Show upcoming events across all calendars

API Resources

acl

  • delete — Deletes an access control rule.
  • get — Returns an access control rule.
  • insert — Creates an access control rule.
  • list — Returns the rules in the access control list for the calendar.
  • patch — Updates an access control rule. This method supports patch semantics.
  • update — Updates an access control rule.
  • watch — Watch for changes to ACL resources.

calendarList

  • delete — Removes a calendar from the user's calendar list.
  • get — Returns a calendar from the user's calendar list.
  • insert — Inserts an existing calendar into the user's calendar list.
  • list — Returns the calendars on the user's calendar list.
  • patch — Updates an existing calendar on the user's calendar list. This method supports patch semantics.
  • update — Updates an existing calendar on the user's calendar list.
  • watch — Watch for changes to CalendarList resources.

calendars

  • clear — Clears a primary calendar. This operation deletes all events associated with the primary calendar of an account.
  • delete — Deletes a secondary calendar. Use calendars.clear for clearing all events on primary calendars.
  • get — Returns metadata for a calendar.
  • insert — Creates a secondary calendar. The authenticated user for the request is made the data owner of the new calendar.

Note: We recommend to authenticate as the intended data owner of the calendar. You can use domain-wide delegation of authority to allow applications to act on behalf of a specific user. Don't use a service account for authentication. If you use a service account for authentication, the service account is the data owner, which can lead to unexpected behavior.

  • patch — Updates metadata for a calendar. This method supports patch semantics.
  • update — Updates metadata for a calendar.

channels

  • stop — Stop watching resources through this channel

colors

  • get — Returns the color definitions for calendars and events.

events

  • delete — Deletes an event.
  • get — Returns an event based on its Google Calendar ID. To retrieve an event using its iCalendar ID, call the events.list method using the iCalUID parameter.
  • import — Imports an event. This operation is used to add a private copy of an existing event to a calendar. Only events with an eventType of default may be imported. Deprecated behavior: If a non-default event is imported, its type will be changed to default and any event-type-specific properties it may have will be dropped.
  • insert — Creates an event.
  • instances — Returns instances of the specified recurring event.
  • list — Returns events on the specified calendar.
  • move — Moves an event to another calendar, i.e. changes an event's organizer. Note that only default events can be moved; birthday, focusTime, fromGmail, outOfOffice and workingLocation events cannot be moved.
  • patch — Updates an event. This method supports patch semantics.
  • quickAdd — Creates an event based on a simple text string.
  • update — Updates an event.
  • watch — Watch for changes to Events resources.

freebusy

  • query — Returns free/busy information for a set of calendars.

settings

  • get — Returns a single user setting.
  • list — Returns all user settings for the authenticated user.
  • watch — Watch for changes to Settings resources.

Discovering Commands

Before calling any API method, inspect it:

# Browse resources and methods
gws calendar --help

# Inspect a method's required params, types, and defaults
gws schema calendar.\x3Cresource>.\x3Cmethod>

Use gws schema output to build your --params and --json flags.

安全使用建议
Before installing or enabling this skill: 1) Inspect the referenced ../gws-shared/SKILL.md to see exactly how authentication works and what credentials or files it will read or write. 2) Verify the provenance of the required 'gws' CLI (which exact binary/package is expected) — only install a trusted, official release. 3) Confirm what OAuth scopes or service-account credentials will be used; prefer least-privilege, per-account OAuth tokens rather than broad domain-wide delegation or long-lived service accounts. 4) Be cautious with destructive methods (calendars.clear, delete) — test in a sandbox account first. 5) Avoid running any 'gws generate-skills' or other setup commands without reviewing what they create and whether they store secrets on disk. If you cannot review the gws-shared auth instructions or the gws binary source, do not enable the skill.
功能分析
Type: OpenClaw Skill Name: gws-calendar Version: 1.0.13 The skill bundle contains documentation (SKILL.md) and metadata (_meta.json) for an AI agent to interact with a Google Calendar CLI tool ('gws'). The instructions are purely descriptive of standard API operations (managing events, ACLs, and settings) and do not contain any malicious code, data exfiltration logic, or prompt injection attacks.
能力评估
Purpose & Capability
Name/description (Google Calendar management) align with requiring a 'gws' CLI, but the skill declares no environment credentials while its runtime instructions explicitly point to a ../gws-shared/SKILL.md for auth and security rules. Managing calendars typically requires OAuth/service credentials; those requirements are not declared here.
Instruction Scope
SKILL.md instructs the agent to read ../gws-shared/SKILL.md for authentication, global flags, and security rules. That is a reference to an external file/path outside the skill's own manifest and may contain additional credential access or behavior not represented in this skill's metadata. The instructions also enable destructive Google Calendar operations (e.g., calendars.clear) which require appropriate auth and scopes.
Install Mechanism
No install spec and no code files — instruction-only skill. This is low-risk from a code-install perspective, but it depends on the external 'gws' binary whose provenance is not provided.
Credentials
The skill lists no required env vars or primary credential despite needing authenticated access to Google Calendar. The SKILL.md explicitly refers to auth guidance (and warns about service accounts), implying credential needs that are not declared. This lack of declared credential requirements is disproportionate and opaque.
Persistence & Privilege
The skill does not request always: true and uses default autonomous invocation settings. It does not claim to modify other skills or global agent configuration in its own SKILL.md.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install gws-calendar
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /gws-calendar 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.13
- Updated version metadata from 0.22.4 to 0.22.5 in SKILL.md. - No functional or user-facing changes; documentation version information updated only.
v1.0.12
- Updated metadata version from 0.22.3 to 0.22.4 in SKILL.md. - No changes to features, usage, or documentation content.
v1.0.11
- Updated metadata version from 0.22.2 to 0.22.3 in SKILL.md. - No changes to functionality or commands; documentation update only.
v1.0.10
- Updated SKILL.md version metadata from 0.22.1 to 0.22.2. - No functional or documentation changes beyond the version bump.
v1.0.9
- Bumped version from 0.22.0 to 0.22.1 in SKILL.md metadata. - No changes to functionality or documentation content.
v1.0.8
- Updated version in metadata to 0.22.0 - No functional or documentation changes outside of the metadata version update in SKILL.md
v1.0.7
- Updated internal version from 0.21.1 to 0.21.2 in SKILL.md. - No changes to commands, usage, or API resource documentation. - No user-facing functionality or content updates.
v1.0.6
- Updated SKILL.md metadata version from 0.20.1 to 0.21.1. - No changes to commands, feature set, or documentation content detected.
v1.0.5
- Updated version in metadata from 0.20.0 to 0.20.1 in SKILL.md. - No feature changes, bug fixes, or documentation updates apart from the version bump.
v1.0.4
- Updated version metadata from 0.19.0 to 0.20.0 in SKILL.md. - No functionality or documentation changes beyond the version update.
v1.0.3
- Updated SKILL.md metadata: moved version under metadata and set to 0.19.0 - Removed top-level version field from SKILL.md - No changes to API resources, helper commands, or command usage documentation
v1.0.2
- Internal formatting tweaks in SKILL.md for consistency (YAML and bullet list styles). - No user-facing feature, API, or behavior changes.
v1.0.1
- Updated documentation in SKILL.md with expanded notes for some methods and corrected descriptions. - No changes to skill functionality or commands; this is a documentation update only.
v1.0.0
Initial release of gws-calendar. - Adds comprehensive Google Calendar management including calendars, events, ACLs, settings, and more. - Supports helpful commands like creating events (+insert) and viewing agendas (+agenda). - Integrates with the gws CLI; requires the gws binary. - Includes helper documentation for browsing resources and method schemas.
元数据
Slug gws-calendar
版本 1.0.13
许可证 MIT-0
累计安装 24
当前安装数 22
历史版本数 14
常见问题

Gws Calendar 是什么?

Google Calendar: Manage calendars and events. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1210 次。

如何安装 Gws Calendar?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install gws-calendar」即可一键安装,无需额外配置。

Gws Calendar 是免费的吗?

是的,Gws Calendar 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Gws Calendar 支持哪些平台?

Gws Calendar 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Gws Calendar?

由 googleworkspace-bot(@googleworkspace-bot)开发并维护,当前版本 v1.0.13。

💬 留言讨论