Install
$ agentstack add skill-tsubakimoto-skills-github-changelog ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
GitHub Changelog Skill
指定された日付の GitHub Changelog 投稿をすべて取得し、各エントリを 要約・アクションプラン・リファレンス に整理します。
Skill directory
~/.copilot/skills/github-changelog/
Quick Reference
| タスク | コマンド | |--------|---------| | 指定日の投稿を取得 | python scripts/fetch_changelog.py |
Workflow
- ユーザーから対象日付(例:
2026-03-06)を確認する。指定がなければ今日の日付を使用する。 - スクリプトを実行して RSS フィードから該当エントリの生データを取得する。
- 取得した各エントリに対して以下を生成する:
- 要約: 何が変わったか・追加されたかを 2〜3 文で簡潔に説明する
- ユーザーにとって良いこと: 変更が GitHub ユーザーにどのようなメリットをもたらすかを説明する
- アクションプラン: 開発者やチームが取るべき具体的な次のステップ
- リファレンス: 元の Changelog エントリへのリンク
- 結果を以下の出力フォーマットで整形して返す。
Running the Script
python scripts/fetch_changelog.py
スクリプトは https://github.blog/changelog/feed/ から RSS フィードを取得し、 pubDate が指定日に一致するエントリを抽出して JSON 配列として標準出力に返す。
例:
python scripts/fetch_changelog.py 2026-03-06
スクリプト出力例(JSON):
[
{
"title": "GitHub Actions: New feature X",
"link": "https://github.blog/changelog/2026-03-06-...",
"date": "2026-03-06",
"description": "Raw HTML/text description from feed"
}
]
Output Format
結果は必ず次のテンプレートで出力する: ~/.copilot/skills/github-changelog/assets/template.md
エントリが 0 件の場合は「 のエントリは見つかりませんでした」と伝え、前後の日付で再確認することを提案する。
Notes on Action Plans
アクションプランを書くときのガイドライン:
- 具体的に: 「確認してください」ではなく「
.github/workflows/のuses:バージョンを更新してください」のように書く - 影響範囲を明示: 変更が全リポジトリに自動適用されるのか、設定が必要なのかを必ず示す
- 破壊的変更は目立たせる: ⚠️ を使い、移行期限があれば日付を添える
- 非エンジニア向け変更も含める: UI 変更や設定変更など、開発者以外に影響するものも漏らさない
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: tsubakimoto
- Source: tsubakimoto/skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.