ソース情報
- リポジトリ
- project-nomos/nomos
- ソースの最終更新活動
- 2026年6月23日 02:54
- 検出された SKILL.md の言語
- 英語
- スター
- 24
- フォーク
- 4
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/project-nomos/nomos --skill gws-calendarコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
gws CLI: Shared patterns for authentication, global flags, and output formatting.
Summarize activity in a Slack channel over a timeframe (or the last ~100 messages). Use when the user says 'catch me up on #channel', 'what did I miss in X', or 'summarize this channel'.
Build a cross-channel daily digest of what matters across the user's Slack. Use for 'give me my Slack digest', 'what happened across my channels today', or a standing daily/standup recap.
SOC 職業分類に基づく
SKILL.md を表示中
| name | gws-calendar |
| version | 1.0.0 |
| description | Google Calendar: Manage calendars and events. |
| metadata | {"openclaw":{"category":"productivity","requires":{"bins":"[Truncated]"},"cliHelp":"gws calendar --help"}} |
PREFER THE TYPED TOOLS. When the in-process
calendar_*MCP tools are available (calendar_create_event,calendar_update_event,calendar_list_events,calendar_get_event,calendar_delete_event), use them first — they're more reliable than the CLI. For a recurring event, callcalendar_create_eventwith arecurrencearg (RRULE strings, e.g.["RRULE:FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR"]) — create ONE recurring event, never one per day. Pass anaccountarg to target a specific email. Use the CLI below only as a fallback for things the tools don't cover.
PREREQUISITE: Read
../gws-shared/SKILL.mdfor auth, global flags, and security rules. If missing, rungws generate-skillsto create it.
gws calendar <resource> <method> [flags]
| Command | Description |
|---|---|
+insert | Create a new event |
+agenda | Show upcoming events across all calendars |
list — Returns the calendars on 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.delete — Removes a calendar from the user's calendar list.get — Returns metadata for a calendar.insert — Creates a secondary calendar.patch — Updates metadata for a calendar (patch semantics).delete — Deletes a secondary calendar.clear — Clears a primary calendar (deletes all events).list — Returns events on the specified calendar.get — Returns an event based on its Google Calendar ID.insert — Creates an event.patch — Updates an event (patch semantics).delete — Deletes an event.move — Moves an event to another calendar.quickAdd — Creates an event based on a simple text string.instances — Returns instances of a recurring event.watch — Watch for changes to Events resources.query — Returns free/busy information for a set of calendars.list — Returns all user settings for the authenticated user.get — Returns a single user setting.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.<resource>.<method>
Use gws schema output to build your --params and --json flags.