
recent-activity
by niran
Team knowledge base template for Claude Code. Store architecture docs, runbooks, and incidents. Ask questions, get answers as good as your coworkers.
SKILL.md
name: recent-activity description: Show recent commits across all team repositories. Use to see what you or teammates have been working on.
Recent Activity Skill
Shows recent commits across all repositories in your knowledge base. Useful for catching up on what's been happening, seeing your own recent work, or understanding what a teammate has been focused on.
Usage
When this skill is invoked, run the helper script to fetch recent commits:
.claude/skills/recent-activity/scripts/recent-commits.sh [--author "<name-or-email>"] [--limit <n>]
Options
--author- Filter to commits by a specific person (partial match on name or email, case-insensitive)--limit- Number of commits per repo (default: 10)
Examples
See all recent activity:
.claude/skills/recent-activity/scripts/recent-commits.sh
See a specific person's commits:
.claude/skills/recent-activity/scripts/recent-commits.sh --author "niran"
See the current user's commits:
First get their email with git config user.email, then:
.claude/skills/recent-activity/scripts/recent-commits.sh --author "<user email>"
Output Format
The script outputs commits grouped by repository with dates:
## owner/repo-name
2026-01-15 Author Name: commit message
2026-01-14 Author Name: another commit message
## owner/another-repo
2026-01-15 Author Name: commit message
How It Works
- Reads
.gitmodulesto find all team repositories - Extracts the GitHub host and owner/repo from each URL
- Queries the GitHub API for recent commits (supports both github.com and GitHub Enterprise)
- Filters by author if specified
- Skips repos that fail (private, no access) and continues with the rest
Requirements
ghCLI authenticated with access to the repositories.gitmodulesfile in the repository (or a parent directory)
スコア
総合スコア
リポジトリの品質指標に基づく評価
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
レビュー
レビュー機能は近日公開予定です