返回技能列表

c-briefing

daxaur
更新于 2 days ago
7 次查看
143
6
143
在 GitHub 上查看
通信briefingdailymorningsummaryschedule

关于

c-briefing compiles a personalized morning summary by aggregating data from your installed Claude skills like email, calendar, and tasks. It runs automatically on a schedule via launchd or cron to provide a daily overview. Developers can use it to quickly catch up on unread emails, upcoming events, pending tasks, and other notifications each morning.

快速安装

Claude Code

推荐
主要方式
npx skills add daxaur/openpaw -a claude-code
插件命令备选方式
/plugin add https://github.com/daxaur/openpaw
Git 克隆备选方式
git clone https://github.com/daxaur/openpaw.git ~/.claude/skills/c-briefing

在 Claude Code 中复制并粘贴此命令以安装该技能

技能文档

Daily Briefing

Compile a morning summary from your installed skills. Checks what's available and builds the briefing accordingly.

What to Include

Check which skills are installed and pull from each:

If installedInclude in briefing
c-emailUnread email count + top 5 subjects
c-calendarToday's events + tomorrow preview
c-tasksDue today + overdue items
c-notesRecently modified notes
c-githubOpen PRs, review requests, CI failures
c-slackUnread DM count + mentions
c-trackingPackage delivery updates

Briefing Format

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)

Scheduled Briefing

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

Manual Briefing

Just ask Claude: "Give me my daily briefing" or "What's on my plate today?"

Guidelines

  • Read the user's name from SOUL.md or MEMORY.md
  • Only include sections for skills that are actually installed
  • Keep it concise — no section should exceed 5 items
  • Flag urgent items at the top
  • Include the date and day of week

GitHub 仓库

daxaur/openpaw
路径: skills/c-briefing
0
ai-agentanthropicautomationclaudeclaude-codecli

相关推荐技能

himalaya-email-manager

通信

这个Claude Skill通过Himalaya CLI工具提供IMAP邮箱管理功能,支持使用自然语言查询搜索、总结和删除邮件。它特别适合开发者快速获取每日邮件摘要和执行批量邮件操作,所有功能都通过Python脚本封装,简化了环境配置和命令执行流程。关键特性包括支持富文本表格输出、多文件夹分类处理,以及完整的Unicode字符和表情符号显示。

查看技能

imsg

通信

imsg是一个macOS命令行工具,让开发者能通过终端直接访问和操作iMessage/SMS。它支持查看聊天列表、获取历史记录、实时监控消息以及发送文本和附件。这个工具特别适合需要自动化处理消息或与Messages.app集成的开发工作流。

查看技能

internationalization-i18n

通信

这个Skill为开发者提供全面的国际化(i18n)和本地化实现指南,适用于构建多语言应用和支持国际用户。它涵盖消息提取、翻译管理、复数规则、日期/时间/数字格式化以及RTL语言支持等关键功能,并集成i18next和gettext等主流库。开发者可借助此Skill快速设置本地化工作流,处理语言切换和区域特定格式需求。

查看技能

wacli

通信

wacli是一个通过命令行管理WhatsApp的工具,支持消息同步、搜索和发送。它通过WhatsApp Web协议工作,适用于需要自动化处理WhatsApp消息或与外部系统集成的开发场景。关键功能包括持续同步消息、历史记录检索以及向指定联系人发送文本和文件。

查看技能