Help us improve
Share bugs, ideas, or general feedback.
From base-tools
Generates markdown summary of your GitHub PRs authored in the past week, grouping by category/function with links. Use for weekly reports or work retrospectives.
npx claudepluginhub getty104/claude-code-marketplace --plugin base-toolsHow this skill is triggered — by the user, by Claude, or both
Slash command
/base-tools:create-task-summaryThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
直近一週間で自身が作成したPRを取得し、やったことのサマリーを作成するスキル。
Lists open GitHub PRs, filters out automation PRs (dependabot/snyk), groups by ticket ID, and formats as Markdown. Useful for getting a quick overview of active PRs.
Summarizes merged PRs in a GitHub repo over the last N hours, excluding ones you authored or touched, and ranks what's worth reviewing.
Generates daily standup reports aggregating 24h GitHub activity (PRs, commits, reviews) and Linear issues by status (In Progress, Todo, blockers). Ideal for morning prep or activity summaries.
Share bugs, ideas, or general feedback.
直近一週間で自身が作成したPRを取得し、やったことのサマリーを作成するスキル。
gh api user --jq '.login'
gh pr list --author "@me" --state all --search "created:>=$(date -v-7d +%Y-%m-%d)" --json number,title,url,body,mergedAt,state --limit 100
取得したPRの内容をもとに、以下の形式で出力する:
## 直近一週間の作業サマリー
### [カテゴリ/機能名]
- やったことの概要を簡潔に記載
- 関連PR:
- [PR Title](PR URL)
- [PR Title](PR URL)
### [カテゴリ/機能名]
- やったことの概要を簡潔に記載
- 関連PR:
- [PR Title](PR URL)