aws-updates
Fetch AWS What's New updates from the past month and highlight those covered by the AWS Japan official blog, with tag-based categorization
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Fetch AWS What's New updates from the past month and highlight those covered by the AWS Japan official blog, with tag-based categorization
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Tune the entire ~/dotfiles/genai configuration (settings.json, rules, skills, hooks, permissions) by cross-checking the latest official Claude Code documentation and analyzing recent conversation history for recurring request patterns. Use when the user wants to audit, check, or tune their Claude Code setup as a whole — e.g. 'genai をチューニング', '設定を最新化', '設定の棚卸し', 'settings.json をチェック', '会話履歴から改善点を探して', 'スキルを提案して'. For a single targeted settings change (e.g. adding one permission or env var), use update-config instead.
Create PR via GitHub Web UI without gh CLI (Compare Default: current branch, Base Default: reflog origin). Use this skill whenever the user wants to create a pull request, open a PR, or submit changes for review. This skill intentionally avoids gh CLI because its OAuth token requires broader permissions than necessary — instead it opens the GitHub Web UI directly.
Create GitHub Issue from the current plan file so the plan is captured before implementation begins. ALWAYS invoke this skill automatically right after a plan in plan mode is approved (i.e., after ExitPlanMode), before any code is written. Also use when the user says 'issue にする', 'issue に登録', 'issue 作成', 'make this an issue', 'file an issue', 'create an issue from this plan', 'turn this plan into an issue', or otherwise wants to capture their plan as a GitHub Issue.
Investigate AWS CloudWatch Alarm notifications. Use this skill when the user pastes a CloudWatch Alarm notification (from Slack, email, SNS, etc.) containing alarm name, account ID, region, and state information. Also trigger when the user asks to investigate or troubleshoot an AWS alarm, or mentions a specific alarm name they want to look into.
Authenticate to AWS using exported environment variables (e.g. from AWS SSO portal). Use this skill when the user pastes export AWS_ACCESS_KEY_ID=... environment variables or AWS SSO credentials.
Generate commit message from staged changes and repository history, then commit. Use this skill whenever the user wants to commit, save changes, or asks to generate a commit message — even casually like 'commit this' or 'save my changes'.
| name | aws-updates |
| description | Fetch AWS What's New updates from the past month and highlight those covered by the AWS Japan official blog, with tag-based categorization |
| argument-hint | [YYYY-MM-DD] |
ARGUMENTは以下の引数を受け取ります。
# YYYY-MM-DD: 取得開始日(この日付以降のアップデートを取得する)
# 省略時: 1ヶ月前の日付をデフォルトとする
AWSの公式アップデート(What's New)から指定された開始日以降のアップデートを取得し、AWS Japan公式ブログに対応する記事があるものを「注目アップデート」としてピックアップして紹介してください。各アップデートにはタグ情報に基づくカテゴリを付与します。
以下のAWS内部APIを使って、指定された開始日以降のアップデートをページネーションしながら全件取得してください。
https://aws.amazon.com/api/dirs/items/searchitem.directoryId=whats-new-v2sort_by=item.additionalFields.postDateTimesort_order=descsize=25(1ページあたりの件数)item.locale=en_USpage=0(ページ番号、0始まり)リクエストURL例:
https://aws.amazon.com/api/dirs/items/search?item.directoryId=whats-new-v2&sort_by=item.additionalFields.postDateTime&sort_order=desc&size=25&item.locale=en_US&page=0
{
"metadata": { "count": 25, "totalHits": 18265 },
"items": [
{
"item": {
"id": "...",
"additionalFields": {
"headline": "タイトル",
"headlineUrl": "URL",
"postDateTime": "2026-03-27T16:00:00Z",
"postBody": "本文(HTML)"
}
},
"tags": [{ "id": "whats-new-v2#year#2026", "name": "2026" }, { "id": "whats-new-v2#general-product#amazon-bedrock", "name": "Amazon Bedrock" }]
}
]
}
WebFetchで各ページを取得し、以下のプロンプトでデータを抽出してください:
各アイテムの headline, headlineUrl, postDateTime, tags(tags配列の中からidに "general-product" を含むタグのnameのみ)を抽出してJSON配列で出力してください。全件出力してください。
page=0 から開始し、取得したアイテムの postDateTime が開始日より古くなったらページネーションを終了してください。
注意: 効率のため、独立したページのリクエストは可能な限り並列で実行してください。目安として1ヶ月分は約7〜8ページ(175〜200件)程度です。
同じAWS内部APIを使って、AWS Japan公式ブログ(/jp/blogs/news/)の指定された開始日以降の記事を取得してください。
https://aws.amazon.com/api/dirs/items/searchitem.directoryId=blog-postssort_by=item.additionalFields.createdDatesort_order=descsize=25(1ページあたりの件数)item.locale=ja_JPtags.id=blog-posts%23category%23newspage=0(ページ番号、0始まり)リクエストURL例:
https://aws.amazon.com/api/dirs/items/search?item.directoryId=blog-posts&sort_by=item.additionalFields.createdDate&sort_order=desc&size=25&item.locale=ja_JP&tags.id=blog-posts%23category%23news&page=0
{
"metadata": { "count": 25, "totalHits": 1508 },
"items": [
{
"item": {
"id": "...",
"additionalFields": {
"title": "ブログ記事タイトル",
"link": "記事URL",
"createdDate": "2026-03-27T00:00:00Z",
"postExcerpt": "抜粋"
}
}
}
]
}
Step 1と同様にページネーションで開始日以降の記事を取得してください。WebFetchのプロンプト:
各アイテムの title, link, createdDate を抽出してJSON配列で出力してください。全件出力してください。
注意: Step 1とStep 2のAPI取得は互いに独立しているため、並列で実行してください。
Step 1で取得したアップデートと、Step 2(AWS Japan公式ブログ)で取得したブログ記事を照合し、対応関係を特定してください。
以下のようなまとめ記事はマッチング対象から除外してください:
これらは個別のアップデートに対する深掘り記事ではないため、マッチングの価値がありません。
個別のブログ記事のtitleのみを使って、以下の方法でアップデートとの対応を判定してください:
Step 1で取得したタグ情報とheadlineを使って、各アップデートに以下の分類・フラグを付与してください。
タグの general-product 値に基づいて、以下のカテゴリに分類してください:
| カテゴリ | 対象タグ例 |
|---|---|
| AI/ML | Amazon Bedrock, Amazon SageMaker, Amazon Polly, Amazon Rekognition, Amazon Lex, Amazon Transcribe, Amazon Textract, Amazon Kendra |
| Compute | Amazon EC2, AWS Lambda, Amazon ECS, Amazon EKS, AWS Batch, Amazon Lightsail |
| Database | Amazon RDS, Amazon Aurora, Amazon DynamoDB, Amazon Redshift, Amazon Neptune, Amazon ElastiCache, Amazon OpenSearch Service |
| Storage | Amazon S3, Amazon EBS, Amazon EFS, AWS Backup, AWS Storage Gateway |
| Networking | Amazon VPC, Amazon CloudFront, Amazon Route 53, AWS Direct Connect, Elastic Load Balancing |
| Security | AWS IAM, AWS WAF, AWS Shield, Amazon GuardDuty, Amazon Inspector, AWS Security Hub, AWS Config |
| Management | Amazon CloudWatch, AWS CloudFormation, AWS Systems Manager, AWS Organizations |
| Developer Tools | AWS CDK, AWS SAM, AWS CodeBuild, AWS CodePipeline |
| その他 | 上記に当てはまらないもの |
タグが複数ある場合は、最も代表的なカテゴリ1つを選んでください。
headlineの内容から以下のフラグを自動判定してください:
以下の形式で表示してください:
## AWS 注目アップデート ピックアップ(YYYY/MM/DD 〜 YYYY/MM/DD)
対象期間のアップデート全N件のうち、AWS Japan公式ブログで取り上げられたN件をピックアップしました。
### カテゴリ別サマリ
対象期間の全アップデートのカテゴリ別件数を表示してください。
| カテゴリ | 件数 |
|---------|------|
| AI/ML | XX |
| Compute | XX |
| ... | ... |
### ピックアップ一覧
| # | カテゴリ | アップデート | 日付 | フラグ | AWS公式ブログ |
|---|---------|-------------|------|-------|--------------|
| 1 | AI/ML | [アップデートタイトル](URL) | YYYY/MM/DD | 🗼💰 | [ブログタイトル](URL) |
| 2 | Database | [アップデートタイトル](URL) | YYYY/MM/DD | | [ブログタイトル](URL) |
| ... | ... | ... | ... | ... | ... |
### 注目アップデートの概要
ピックアップした各アップデートについて、それぞれ2〜3文で概要を説明してください。