ワンクリックで
c-briefing
Daily briefing — morning summary of email, calendar, tasks, weather. Can run on a schedule via launchd/cron.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Daily briefing — morning summary of email, calendar, tasks, weather. Can run on a schedule via launchd/cron.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Lock In Mode — orchestrate distraction blocking, environment setup, and session tracking.
OpenPaw coordinator — routes requests to skills, manages memory, knows what's installed. Use /c for any task.
System clipboard — copy, paste, transform content between clipboard and files.
macOS Contacts — search, list, and look up contact details via AppleScript.
Timers, alarms, and pomodoro — set countdowns with native notifications.
Weather forecasts and conditions — current, hourly, multi-day. No API key needed.
| name | c-briefing |
| description | Daily briefing — morning summary of email, calendar, tasks, weather. Can run on a schedule via launchd/cron. |
| tags | ["briefing","daily","morning","summary","schedule"] |
Compile a morning summary from your installed skills. Checks what's available and builds the briefing accordingly.
Check which skills are installed and pull from each:
| If installed | Include in briefing |
|---|---|
| c-email | Unread email count + top 5 subjects |
| c-calendar | Today's events + tomorrow preview |
| c-tasks | Due today + overdue items |
| c-notes | Recently modified notes |
| c-github | Open PRs, review requests, CI failures |
| c-slack | Unread DM count + mentions |
| c-tracking | Package delivery updates |
Good morning, {name}! Here's your briefing for {date}:
📧 Email: 12 unread — 3 flagged
→ "Q4 Budget Review" from Sarah
→ "Deploy approval needed" from CI Bot
→ "Lunch tomorrow?" from Mike
📅 Calendar:
→ 9:00 AM Team standup (30 min)
→ 11:00 AM 1:1 with Alex (45 min)
→ 2:00 PM Sprint review (1 hr)
✅ Tasks: 3 due today, 1 overdue
→ [overdue] Fix login bug
→ Write API docs
→ Review PR #234
🔔 Other:
→ 2 GitHub PRs need review
→ Package arriving today (Amazon)
To run automatically each morning, set up a launchd job (macOS) or cron job:
# Create a briefing script
cat > ~/.claude/briefing.sh << 'SCRIPT'
#!/bin/bash
claude --print "Run my daily briefing using the c-briefing skill. Be concise." \
| terminal-notifier -title "Morning Briefing" -message "Ready" 2>/dev/null
SCRIPT
chmod +x ~/.claude/briefing.sh
# Schedule with cron (every weekday at 8:00 AM)
(crontab -l 2>/dev/null; echo "0 8 * * 1-5 ~/.claude/briefing.sh") | crontab -
# Or use lunchy-go for launchd (macOS)
lunchy-go install ~/.claude/briefing.plist
Just ask Claude: "Give me my daily briefing" or "What's on my plate today?"