ワンクリックで
google-calendar-skill
Create, list, update, and delete Google Calendar events. Supports attendees, reminders, and recurring events.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create, list, update, and delete Google Calendar events. Supports attendees, reminders, and recurring events.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use this skill to generate well-branded interfaces and assets for OpenCompany (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Launch Android applications by package name. Open any installed app programmatically.
Get list of installed Android applications with package names, versions, and metadata.
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
Monitor Android device battery status, level, charging state, temperature, and health.
Control Android Bluetooth - enable, disable, get status, and list paired devices.
| name | google-calendar-skill |
| description | Create, list, update, and delete Google Calendar events. Supports attendees, reminders, and recurring events. |
| allowed-tools | google_calendar |
| metadata | {"author":"opencompany","version":"1.0","category":"productivity"} |
Manage Google Calendar events - create, list, update, and delete.
Consolidated Google Calendar tool with operation parameter.
| Operation | Description | Required Fields |
|---|---|---|
create | Create a new event | title, start_time, end_time |
list | List events in date range | (none, defaults to this week) |
update | Update an existing event | event_id |
delete | Delete an event | event_id |
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "create" |
| title | string | Yes | Event title/summary |
| start_time | string | Yes | Start time in ISO 8601 format |
| end_time | string | Yes | End time in ISO 8601 format |
| description | string | No | Event description |
| location | string | No | Event location |
| attendees | string | No | Comma-separated email addresses |
| reminder_minutes | integer | No | Minutes before event for reminder |
| timezone | string | No | Timezone (default: user's timezone) |
Example - Simple event:
{
"operation": "create",
"title": "Team Meeting",
"start_time": "2024-02-01T14:00:00",
"end_time": "2024-02-01T15:00:00",
"description": "Weekly team sync"
}
Example - Event with attendees:
{
"operation": "create",
"title": "Project Review",
"start_time": "2024-02-01T10:00:00",
"end_time": "2024-02-01T11:30:00",
"location": "Conference Room A",
"attendees": "alice@example.com,bob@example.com",
"reminder_minutes": 30
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "list" |
| start_date | string | No | Start date (ISO 8601, default: today) |
| end_date | string | No | End date (ISO 8601, default: 7 days ahead) |
| max_results | integer | No | Maximum results (default: 10, max: 100) |
| calendar_id | string | No | Calendar ID (default: primary) |
Example:
{
"operation": "list",
"start_date": "2024-02-01",
"end_date": "2024-02-07",
"max_results": 20
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "update" |
| event_id | string | Yes | Event ID to update |
| update_title | string | No | New title |
| update_start_time | string | No | New start time |
| update_end_time | string | No | New end time |
| update_description | string | No | New description |
| update_location | string | No | New location |
| update_attendees | string | No | New attendees (replaces existing) |
Example:
{
"operation": "update",
"event_id": "abc123xyz",
"update_title": "Updated Team Meeting",
"update_start_time": "2024-02-01T15:00:00",
"update_end_time": "2024-02-01T16:00:00"
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "delete" |
| event_id | string | Yes | Event ID to delete |
| calendar_id | string | No | Calendar ID (default: primary) |
Example:
{
"operation": "delete",
"event_id": "abc123xyz"
}
2024-02-01T14:00:00 (local time)2024-02-01T14:00:00-05:00 (EST)2024-02-01T19:00:00Z2024-02-01 (all-day event)input-tools handle