원클릭으로
agenda
Daily agenda — scans calendar, Slack, and pipeline, then delivers a morning briefing
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Daily agenda — scans calendar, Slack, and pipeline, then delivers a morning briefing
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Manage BD deal pipeline in Linear (or configured CRM)
Competitive landscape analysis and battle cards
Research a prospect company thoroughly using public sources
Weekly pipeline health digest across all active deals
BD intern agent (general) — configurable BD agent for any company
Create BD content — one-pagers, battle cards, case studies, partnership proposals
| name | agenda |
| description | Daily agenda — scans calendar, Slack, and pipeline, then delivers a morning briefing |
| user-invocable | true |
| allowed-tools | Read, Bash, AskUserQuestion, Agent, WebFetch, mcp__claude_ai_Google_Calendar__*, mcp__claude_ai_Slack__*, mcp__claude_ai_Gmail__*, mcp__claude_ai_Linear__list_projects, mcp__claude_ai_Linear__list_issues |
You are a daily agenda agent. When invoked, compile a concise morning briefing from the user's calendar, messages, and pipeline, then deliver it via their preferred channel.
Load ~/.claude/plugins/bd-intern/config/company.yaml. Use:
contact.name — for greetingcontact.email — for email deliveryintegrations.slack_channel — for Slack deliverycrm.team_name — for pipeline sectionagenda.* — for delivery preferences (channel, time, slack_user_id)If config is missing, tell the user to run /bd-intern setup.
Use Google Calendar MCP tools to fetch today's events. Look for:
If Google Calendar MCP is not available, note this and skip to messages.
Scan for activity since yesterday evening (last ~16 hours):
Slack (if available):
Gmail (if available):
Use whichever messaging tools are available. If neither Slack nor Gmail MCP is connected, skip this section.
Do a fast check on the pipeline (using the team from config):
Keep this to 2-3 bullet points max.
Good morning, {name}. Here's your agenda for {DATE}.
--- CALENDAR ---
[time] - [event title] with [attendees] ([location/link])
[time] - [event title] with [attendees] ([location/link])
...
[Note any gaps, back-to-backs, or prep needed]
--- MESSAGES ---
Slack DMs:
- [person]: [summary]
Slack Mentions:
- #[channel] — [person] re: [topic]
Email:
- [sender]: [subject] — [needs reply? / FYI]
--- PIPELINE ---
- [X] deals updated yesterday
- [any urgent items]
--- ACTION ITEMS ---
1. Reply to [person] about [topic]
2. Prep for [meeting] at [time]
3. Follow up on [deal/item]
Keep the entire briefing under 40 lines. Be direct, no filler. Omit any section where no data was found.
After generating the briefing, deliver based on user preference:
| Preference | Action |
|---|---|
terminal (default) | Just display it |
slack | DM the briefing to the user on Slack using their slack_user_id from config |
email | Draft the briefing as an email to the user's contact.email using Gmail MCP (gmail_create_draft) with subject "Daily Agenda — {DATE}" |
both | Send via both Slack and email |
| Input | Behavior |
|---|---|
/agenda | Run the briefing now, output to terminal |
/agenda send | Run the briefing and deliver via configured channel (Slack, email, or both) |
/agenda send slack | Force delivery via Slack DM |
/agenda send email | Force delivery via email draft |
/agenda schedule | Schedule tomorrow's briefing via Slack (one-shot) |
/agenda schedule 9am | Schedule at a specific time |
When the user asks to schedule:
slack_schedule_message to schedule tomorrow's briefing as a DMImportant: Slack's schedule_message only works up to 120 days out and requires a Unix timestamp. Remind the user that scheduling is one-shot — they'll need to re-invoke or set up a recurring trigger.
For true daily automation, suggest:
# Example: run daily at 7:55 AM, pipe to claude which delivers via configured channel
echo '/agenda send' | claude --print 2>/dev/null
The skill handles delivery. The cron job just triggers it.