From f270b7380690a5b2601cc44c0afe4461c9c24ec1 Mon Sep 17 00:00:00 2001 From: Hideaki Terai Date: Sun, 12 Apr 2026 14:31:56 +0900 Subject: [PATCH] fix(skill): correct calendar-start/end option names in SKILL.md --title and --at did not exist in the CLI; the correct options are --summary and --occurred-at. Co-Authored-By: Claude Sonnet 4.6 --- skills/worklog/SKILL.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/skills/worklog/SKILL.md b/skills/worklog/SKILL.md index f428998..5bd698c 100644 --- a/skills/worklog/SKILL.md +++ b/skills/worklog/SKILL.md @@ -84,9 +84,9 @@ JSON のフィールド対応: | JSON フィールド | 説明 | ingest への渡し方 | |---|---|---| -| `summary` | 予定タイトル | `--title` | -| `start.dateTime` | 開始日時 (RFC3339) | calendar-start の `--at` | -| `end.dateTime` | 終了日時 (RFC3339) | calendar-end の `--at` | +| `summary` | 予定タイトル | `--summary` | +| `start.dateTime` | 開始日時 (RFC3339) | calendar-start の `--occurred-at` | +| `end.dateTime` | 終了日時 (RFC3339) | calendar-end の `--occurred-at` | | `id` | カレンダーイベントID | `--source-ref` | ### ステップ 2: 各イベントを ingest に渡す @@ -95,13 +95,13 @@ JSON のフィールド対応: ```bash ingest ingest calendar-start \ - --title "<予定タイトル>" \ - --at "<開始日時 RFC3339>" \ + --summary "<予定タイトル>" \ + --occurred-at "<開始日時 RFC3339>" \ --source-ref "" ingest ingest calendar-end \ - --title "<予定タイトル>" \ - --at "<終了日時 RFC3339>" \ + --summary "<予定タイトル>" \ + --occurred-at "<終了日時 RFC3339>" \ --source-ref "" ```