ワンクリックで
outlook-calendar
Manage Outlook Calendar events. Use for listing, creating, updating, and deleting calendar events.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Manage Outlook Calendar events. Use for listing, creating, updating, and deleting calendar events.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Guides agents through isolated Git worktree setup, lifecycle commands, process cleanup, and per-worktree local development state. Use when creating, starting, stopping, inspecting, cleaning up, or troubleshooting Git worktree development environments or when a repository includes a worktree lifecycle CLI.
Continuously watch and fix release main CI until the branch is fully green and verified working. Use when asked to babysit CI, babysit CI release, monitor release main, run /loop for CI, run /goal until checks pass, or keep iterating until release main is green.
Fix flaky tests by repeatedly running the suite, collecting intermittent failures, and proving stability. Use when asked to fix flaky tests or require repeated/consecutive green test runs.
Manage LinkedIn messaging, profiles, posts, connections, and company pages via Unipile. Use for networking, content publishing, and lead engagement.
Scoped commit workflow with a bundled committer script that prevents accidental broad staging. Use when the user asks to commit, commit all, create a git commit, or handle commit-time staging in this repository.
Systematically QA a web application like a real user, triage issues by severity, fix scoped bugs when asked, verify fixes with evidence, and report ship readiness. Use when asked to QA, test a site or app, find bugs, test and fix, or check whether a feature works.
SOC 職業分類に基づく
| name | outlook-calendar |
| description | Manage Outlook Calendar events. Use for listing, creating, updating, and deleting calendar events. |
CRUD operations on Outlook Calendar events via Microsoft Graph.
OUTLOOK_CALENDAR_ACCESS_TOKEN - Microsoft OAuth2 access token with Calendar scopes# List upcoming events
outlook-calendar list [-l limit] [-t timeMin] [-m timeMax] [-c calendarId]
# Get event details
outlook-calendar get <eventId> [-c calendarId]
# Create an event
outlook-calendar create --summary "Meeting" --start 2024-01-15T09:00:00 --end 2024-01-15T10:00:00 [--description "Notes"] [--location "Office"] [--attendees "a@x.com,b@x.com"]
# Update an event
outlook-calendar update <eventId> [--summary "New title"] [--start ...] [--end ...]
# Delete an event
outlook-calendar delete <eventId>
# List available calendars
outlook-calendar calendars
# List today's events
outlook-calendar today [-c calendarId]
JSON arrays. Example for list:
[
{ "id": "abc123", "summary": "Team Standup", "start": "2024-01-15T09:00:00", "end": "2024-01-15T09:30:00", "location": "Room 1" }
]