# Weekend Wizard

> Automate the collection and formatting of team progress into weekly recap documents. Use when generating team weeklies, summarizing sprint outcomes, compiling release notes from merged PRs, or producing standup updates.

- Skill: `lurui1997/weekend-wizard` (Agent Skill, multi-file: 4 files)
- Install (CLI): `npx skillmds@latest add lurui1997/weekend-wizard`
- Raw SKILL.md: https://api.skillmd.com/api/skills/lurui1997/weekend-wizard/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: lurui1997 (https://skillmd.com/u/lurui1997)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/lurui1997/weekend-wizard

---


# Weekly Recap

Collect distributed work signals and synthesize them into a readable summary.

## Data Collection

- Query Git history for commits and merged PRs in the target date range.
- Gather closed issues and completed milestones from the issue tracker.
- Note any blockers or carry-over items explicitly.

## Summary Structure

- **Highlights**: 2–3 major accomplishments or shipped features.
- **In Progress**: Active work that will continue next week.
- **Blockers / Risks**: Items needing attention or decisions.
- **Upcoming**: Planned focus for the next cycle.

## Output Formats

- Default to Markdown for portability.
- Export to Notion, Feishu, or other platforms using their APIs or copy-paste-friendly formatting.

## Automation Tips

- Use `git log --since="1 week ago" --merges` to find merged PRs.
- Parse PR titles and commit messages to generate human-readable bullets.
- Keep the tone concise and factual; avoid duplicating full commit diffs.

