From ftitos-claude-code
Generate a concise recap of recent repository activity — commits, PRs merged, issues closed, and open blockers. Use for standups, sprint reviews, or onboarding new contributors.
npx claudepluginhub nassimbf/ftitos-claude-codeThis skill uses the workspace's default tool permissions.
Turn raw git history and issue tracker data into a readable activity summary.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Turn raw git history and issue tracker data into a readable activity summary.
# Commits in the last 7 days
git log --oneline --since="7 days ago"
# PRs merged (GitHub CLI)
gh pr list --state merged --limit 20
# Issues closed
gh issue list --state closed --limit 20
# Open PRs (in review)
gh pr list --state open
Organize findings into:
Shipped (merged to main)
In Progress (open PRs)
Issues Closed
Open Issues (priority)
After summarizing, call out:
## Repo Recap — [date range]
### Shipped
- [feat] Description (#PR)
- [fix] Description (#PR)
### In Progress
- [description] — assigned to [owner], opened [N] days ago
### Issues Closed
- [N] bugs, [N] features, [N] chores
### Open Blockers
- [issue title] — [severity], open [N] days
### Notes
[Any patterns, risks, or callouts]