| name | brief-generation |
| description | brief, summary, daily, weekly, end of day, EOD, digest, morning, recap, meeting prep, what's due, status update, review |
Brief Generation Skill
Quick Start
PCP generates intelligent briefs and summaries to keep the user informed:
- Daily Brief: Morning overview of activity, tasks
- Weekly Summary: Week-in-review with stats and highlights
- End-of-Day Digest: Day recap + tomorrow preview
- Meeting Prep: Context about attendees, history
All briefs use scripts/brief.py and include AI-generated insights.
Brief Types
| Type | CLI | Function | When to Use |
|---|
| Daily | python brief.py --daily | daily_brief() | Morning overview |
| Weekly | python brief.py --weekly | weekly_summary() | Week review (Monday) |
| EOD | python brief.py --eod | eod_digest() | End of workday |
| Meeting Prep | python brief.py --meeting-prep --people "X" | meeting_prep(people, topic) | Before meetings |
Daily Brief
Morning overview with urgent items first, then activity summary.
Sections included:
- OVERDUE TASKS (urgent)
- Upcoming Deadlines (next 7 days)
- Activity Summary (captures, tasks completed)
- Project Activity
- People Recently Mentioned
- Stale Relationships (14+ days)
- Stalled Projects (14+ days)
- Actionable Emails
- Recently Added Knowledge
- AI Insights
Python:
from brief import daily_brief, generate_brief
text = daily_brief()
print(text)
data = generate_brief("daily")
print(data["tasks"]["overdue_count"])
CLI:
python brief.py
python brief.py --daily
python brief.py --json
Weekly Summary
Comprehensive week-in-review with statistics and highlights.
Sections included:
- Activity Overview (captures by type, people, projects)
- Task Summary (created, completed, rate)
- Knowledge Added (by category)
- Completed Tasks
- Decisions Made
- Most Active Contacts
- Most Active Projects
- Attention Needed (overdue items, stale relationships)
- AI Insights
Python:
from brief import weekly_summary, generate_weekly_summary
text = weekly_summary()
data = generate_weekly_summary()
print(data["stats"]["tasks"]["completion_rate"])
print(data["highlights"]["top_people"])
CLI:
python brief.py --weekly
python brief.py --weekly --json
End-of-Day Digest
Day recap with tomorrow preview - perfect for closing out the workday.
Sections included:
- Today's Summary (captures, tasks, people, knowledge, emails)
- Completed Today
- Knowledge Added
- Tomorrow Preview (tasks due)
- Attention Needed (overdue warnings)
- Current Backlog
- AI Insights
Python:
from brief import eod_digest, generate_eod_digest
text = eod_digest()
data = generate_eod_digest()
print(data["today"]["summary"]["tasks_completed_count"])
print(data["tomorrow"]["tasks_due"])
CLI:
python brief.py --eod
python brief.py --eod --json
Meeting Prep
Context brief before meetings - shows relationship history and shared projects.
Sections included:
- Each Attendee:
- Role/relationship
- Context
- Interaction count and last contact
- Shared projects
- Recent history (captures)
- Related Context (if topic provided)
- Suggested Talking Points (auto-generated)
- AI Insights
Python:
from brief import meeting_prep, generate_meeting_prep
text = meeting_prep(["John", "Jane"], topic="Q1 Planning")
print(text)
text = meeting_prep(["John"])
data = generate_meeting_prep(["John", "Jane"], "Q1 Planning")
print(data["attendees"])
print(data["suggested_talking_points"])
CLI:
python brief.py --meeting-prep --people "John"
python brief.py --meeting-prep --people "John, Jane" --topic "Q1 Planning"
python brief.py --meeting-prep --people "John" --json
When the User Says...
| User Request | Action |
|---|
| "Give me a brief" | daily_brief() |
| "What's on my plate?" | daily_brief() |
| "Week in review" | weekly_summary() |
| "How did this week go?" | weekly_summary() |
| "What did I do today?" | eod_digest() |
| "End of day recap" | eod_digest() |
| "Prep me for meeting with John" | meeting_prep(["John"]) |
| "What's my history with Jane?" | meeting_prep(["Jane"]) or get_relationship_summary() |
| "What's overdue?" | daily_brief() or get_overdue_tasks() |
| "What's due tomorrow?" | eod_digest() or get_upcoming_deadlines(1) |
Helper Functions
Access underlying data directly:
from brief import (
get_recent_captures,
get_pending_tasks,
get_overdue_tasks,
get_upcoming_deadlines,
get_recent_people_mentions,
get_project_activity,
get_stale_relationships_summary,
get_stalled_projects_summary,
get_actionable_emails_summary,
get_recent_knowledge_summary,
get_week_stats,
get_week_highlights,
get_today_activity,
get_tomorrow_preview,
)
captures = get_recent_captures(hours=24)
deadlines = get_upcoming_deadlines(days=3)
Scheduled Briefs
Briefs are auto-generated on a schedule (see scheduler.py):
| Brief | Schedule | Config Key |
|---|
| Daily Brief | 8:00 AM | brief_hour: 8 |
| EOD Digest | 6:00 PM | eod_digest_hour: 18 |
| Weekly Summary | Monday 9:00 AM | weekly_summary_day: 0, weekly_summary_hour: 9 |
Run scheduler manually:
python scheduler.py --run brief
python scheduler.py --run eod
python scheduler.py --run weekly
AI Insights
All briefs include AI-generated insights using Claude:
- 2-3 actionable bullet points
- Focus on priorities, blockers, patterns, recommendations
To get brief without AI insights (faster):
data = generate_brief("daily")
text = daily_brief()
data = generate_weekly_summary()
text = weekly_summary()
Output Formats
Text (default):
Human-readable markdown with sections and bullet points.
JSON:
Structured data for programmatic access.
python brief.py --json
python brief.py --weekly --json
python brief.py --eod --json
python brief.py --meeting-prep --people "John" --json
Integration with Other Skills
Briefs pull data from multiple sources:
- vault-operations: Captures, tasks, people, projects
- email-processing: Actionable emails
- knowledge-base: Recently added knowledge
Tips
- Morning routine: Run
daily_brief() to see what needs attention
- Before meetings: Use
meeting_prep() to restore context about attendees
- End of day: Run
eod_digest() to review and plan tomorrow
- Weekly review: Run
weekly_summary() on Mondays to see patterns
- JSON for automation: Use
--json when integrating with other tools
Related Skills
/vault-operations - Underlying capture and task data
/email-processing - Email integration
/relationship-intelligence - People tracking
/project-health - Project status