From sessions
Generates a weekly summary of AI coding sessions with day-by-day breakdowns, key accomplishments, and recurring themes across projects.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sessions:weekly-summaryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate a weekly summary of the user's AI coding sessions.
Generate a weekly summary of the user's AI coding sessions.
Get the date range. Calculate the start date (7 days ago) and end date (today) in YYYY-MM-DD format.
Fetch the digest. Call get_activity_digest with:
startDate: 7 days agoendDate: todaydetail: "highlights" (first + last user messages for substantive sessions)Review the digest. Read the response directly — do NOT send it to a subagent. The highlights mode is compact enough to process inline. For each day, identify:
Drill into key sessions (optional). If any sessions look particularly significant (high message count, interesting topic) but the highlights don't capture enough detail, call get_session_messages on those specific sessions (up to 5) using the filePath from the digest.
Write the summary. Structure it as:
By the numbers: {total sessions} sessions, {total messages} messages across {project count} projects.
Day-by-day: For each day with activity, write 2-4 bullet points capturing the most significant work. Be specific — name projects, features, and outcomes. Skip days with no meaningful activity.
Highlights: The 3-5 most significant accomplishments across the entire week.
Themes: Recurring work streams or focus areas (e.g., "SDK development", "infrastructure", "bug fixes").
npx claudepluginhub nicknisi/sessions --plugin sessionsGenerates a terse standup summary of yesterday and today's AI coding sessions, grouped by project and formatted for Slack or standup threads.
Generates markdown developer journals from Claude Code activity data over specified time periods like today or last week. Focuses on accomplishments, decisions, and project progress with day-by-day breakdowns.
Generates standup summaries of recent Claude Code sessions: lists done commits by project/branch/duration, in-progress tasks, and metrics like total time/sessions.