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.
How 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を取得し、やったことのサマリーを作成するスキル。
直近一週間で自身が作成した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)
npx claudepluginhub getty104/claude-code-marketplace --plugin base-toolsProduces a weekly synthesis of authored commits grouped into bugfix, tech debt, and net-new work. Useful for status updates, retros, or planning.
Lists open PRs in the current GitHub repository, organized by priority based on commit type. Uses gh CLI to fetch PR data and generate summaries with URLs.
Lists open PRs in the current repository sorted by priority (high/medium/low) based on commit type and draft status. Useful for triaging pull requests.