Agent skill
library-release-checker
GitHubや公式ドキュメントからライブラリのリリース情報を取得し、破壊的変更・非推奨化・ビルトイン化を特定する
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/library-release-checker
SKILL.md
リリース情報取得スキル
役割: Web調査に特化。ライブラリのリリース情報を公式ソースから取得する。
入力: ライブラリ名、現在バージョン、目標バージョン(呼び出し元から渡される)
調査対象
- 破壊的変更(Breaking Changes)
- 非推奨化(Deprecations)
- ビルトイン化(不要になるパッケージ)
- マイグレーションガイドのURL
情報ソース
GitHub
https://github.com/{org}/{repo}/releases
https://github.com/{org}/{repo}/blob/main/CHANGELOG.md
https://github.com/{org}/{repo}/blob/main/MIGRATION.md
公式ドキュメント
EOL情報
https://endoflife.date/{library}
出力フォーマット
{
"breakingChanges": [
{
"title": "API名変更",
"description": "useRouter → useNavigation",
"version": "15.0.0",
"severity": "high"
}
],
"deprecations": [
{
"api": "getServerSideProps",
"replacement": "Server Components",
"version": "15.0.0"
}
],
"builtins": [
{
"package": "@next/font",
"reason": "next/fontにビルトイン",
"version": "13.0.0"
}
],
"references": {
"releaseNotes": "https://...",
"migrationGuide": "https://...",
"changelog": "https://..."
}
}
検索キーワード
リリースノート内で以下を検索:
breaking change,breakingdeprecated,deprecationremoved,no longerbuilt-in,included,bundledmigration,upgrade
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?