English
AI news moves fast, but the useful part is simple: you can now make “recurring work” happen without you sitting there. With OpenAI’s new GPT-5.5 and the refreshed Codex guides on Automations, Plugins, and Settings, it’s a good week to stop copy-pasting the same steps every Monday.
This post is not about trends. It’s a practical, screenshot-level walkthrough to set up one safe automation you can actually rely on.
Who this is for
- You do the same checks every week (metrics, logs, changelogs, support tickets) and hate the “open 12 tabs” ritual.
- You want AI to run tasks on a schedule, but you’re nervous about permissions (what the AI can access).
- You mainly work on a PC and want something closer to a lightweight agent (AI that can execute steps), not just chat.
What changed this week (in normal words)
Two things landed at once:
- GPT-5.5 is positioned as faster and better at complex work like coding and tool-using tasks (OpenAI announcement + system card).
- Codex learning materials now put a spotlight on Automations (scheduled and triggered runs), plus plugins and skills (connectors/workflows) and settings (permissions, detail level, and controls).
If you’ve tried “AI agents” before and felt it was either magical or chaotic, Automations are the middle path: fewer surprises, more repeatability.
15-minute setup: your “Weekly Repo & Issue Sweep” automation
Example goal: every Monday morning, get (1) a summary of merged PRs, (2) a list of risky changes, and (3) a shortlist of issues to triage.
Step 1: Create a dedicated Codex workspace/project
- Create a new project named something like
weekly-sweep. - Drop in a small
README.mdwith context: repos, definitions of “risky,” and your preferred output format.
Step 2: Lock down permissions (do this before connecting anything)
In Codex settings (permissions), aim for “least privilege” (give the minimum access needed):
- Only connect the repo(s) you need.
- If there’s a choice, use read-only tokens for reporting tasks.
- Disable anything you don’t need (file write, ticket creation) for the first run.
Step 3: Add an Automation (schedule)
- Create a new Automation.
- Schedule: Mondays, 8:30am.
- Output destination: pick something you’ll actually check (a thread, a saved report, or a message destination if supported).
Step 4: Use a prompt that is structured and testable
Here’s a prompt you can paste as the Automation instruction. The trick is to make outputs predictable and easy to skim.
You are my weekly engineering ops assistant.
Task: Weekly Repo & Issue Sweep.
Data sources:
- Repository: <REPO_LINK_OR_CONNECTED_REPO_NAME>
- Issues tracker: <PROJECT/BOARD IF CONNECTED>
Time window:
- From last Monday 00:00 to this Monday 00:00 (local time).
Do:
1) Summarize merged PRs in 8 bullets max. Each bullet: PR title + link + 1-line “why it matters”.
2) Flag risks (max 5): security-sensitive changes, dependency bumps, auth, payments, infra. Explain why flagged.
3) Issue triage shortlist:
- 5 issues to look at this week, sorted by impact.
- For each: why now, who might own it (guess from labels/area), and the first next action.
Rules:
- If you are unsure, say “Unknown” and ask a single clarifying question at the end.
- Prefer citations/links over assumptions.
- Output format: Markdown with headings.
Step 5: Run it once manually, then turn on the schedule
- Do a dry run while you’re watching. Fix naming, links, and the “time window” logic if it’s off.
- Only after the manual run looks good, enable the weekly schedule.
Make it safer: a tiny “permission + audit” checklist
This week’s news cycle also included uncomfortable reminders that even “careful rollouts” can go sideways (like the reported unauthorized access to Anthropic’s Claude Mythos). My personal take: schedule-based automations are great, but only if you treat them like a teammate with limited access.
- Use a separate token/account for automations when possible. Don’t reuse your everything-admin credential.
- Start read-only. Reporting first, actions later.
- Log outputs (keep a thread/history) so you can audit what the automation did and what it saw.
- Put a “stop condition” in the prompt for odd situations (e.g., “If more than 50 PRs, summarize only top 10 by impact and ask me what to do”).
Is it free? Pricing in plain language
Pricing changes often, so treat this as a practical rule of thumb:
- Automations cost more than chat when they pull data, run tool calls, or do longer analyses.
- If your automation runs weekly, it’s usually manageable, but the cost spikes when you: expand time windows, add multiple repos, or ask for deep code review.
- Do one week with a “small scope” prompt, then widen it once you see token usage / billing.
If you’re watching your budget, keep the output short, and add an “expand on request” step: the automation gives a 1-page brief, and you ask follow-ups only when needed.
Wrap-up: try one scheduled run this week
If you want to feel the difference, don’t start with a huge “AI runs my job” setup. Pick one recurring chore you already do, make the automation read-only, and make the output boring on purpose (predictable format beats fancy prose).
Do that once, and next Monday you’ll get time back before your first meeting.
日本語
AIのニュースって、追うだけで疲れません? でも今週の「使う側」にとって大事なポイントはわりとシンプルで、毎週くり返している作業を、AIに予約実行させやすくなった、ここです。
OpenAIがGPT-5.5を発表しつつ、Codexの学習コンテンツでAutomations(スケジュール・トリガーで自動実行)が前に出てきました。今日は業界の話は置いておいて「月曜朝に勝手に終わっててほしい作業」を1個作る手順だけまとめます。
こんな人におすすめ
- 毎週、同じ確認(PRの確認、Issueの棚卸し、リリースノート追い)をやっていて、手順が手に染みてる人
- AIに任せたいけど、権限(AIが触れる範囲)が怖くて踏み切れない人
- チャットより一歩先で、軽いエージェント(AIが手順を進める)っぽい使い方をしたい人
今週なにが変わった?を使う側の言葉にすると
ポイントは2つです。
- GPT-5.5:コーディングやツール利用を含む複雑タスクが、より効率よく回る方向でアップデート。
- CodexのAutomations:スケジュールやトリガーで「同じ手順」を繰り返せる。毎回プロンプトを投げなくていい。
以前の“AIエージェント”って、当たると神だけど外れると事故、みたいな日がありましたよね。Automationsはその中間で、再現性を取りに行けるのが良いところです。
15分で作る:月曜朝の「PRとIssueの棚卸し」自動化
例として、毎週月曜にこれを出させます。
- 先週マージされたPRの要点
- 危なそうな変更のフラグ
- 今週見るべきIssueの短い候補
手順1:Codexで専用のプロジェクト(作業場)を作る
- プロジェクト名は
weekly-sweepみたいに用途が分かる名前に。 README.mdを置いて「何を危険とするか」「出力形式」など前提を書きます。ここをサボると毎回ブレます。
手順2:設定(Settings)で権限をしぼる
ここ、最初にやるのがコツです。最小権限(必要最低限だけ許可)の考え方でいきます。
- 接続するリポジトリは必要なものだけ
- 可能なら読み取り専用トークン(レポート用途)
- 最初は「書き込み」や「Issue作成」みたいな操作系はオフ
手順3:Automation(自動実行)を追加してスケジュールを入れる
- 新しいAutomationを作成
- 毎週月曜 8:30 みたいに、現実に見る時間に合わせる
- 出力先は「必ず見る場所」に。スレッド保存でもOKです
手順4:プロンプトは“テストできる形”にする
自動化のプロンプトは、かっこよさより一定の型が正義です。コピペ用に置いておきます。
あなたは週次の開発オペレーション助手です。
タスク: Weekly Repo & Issue Sweep(週次棚卸し)
参照先:
- リポジトリ: <接続したREPO名 or リンク>
- Issue/ボード: <接続している場合は指定>
対象期間:
- 先週月曜 00:00 から今週月曜 00:00(ローカル時間)
やること:
1) 先週マージされたPRを最大8件で要約。
1行ごとに「タイトル + リンク + 何が効くか(1行)」。
2) リスクっぽい変更を最大5件でフラグ。
対象: セキュリティ/依存関係更新/認証/課金/インフラ。なぜ危ないかも書く。
3) Issueトリアージ候補を5件。
影響度順に並べ「今見る理由」「担当っぽい人(ラベルから推測)」「最初の一手」を書く。
ルール:
- 不確かな点は Unknown と書き、最後に確認質問を1つだけ。
- 推測よりリンク(根拠)を優先。
- 出力はMarkdown、見出しつき。
手順5:最初は手動で1回走らせてから、予約実行をオン
- まずは見守りながら実行して、リンクや期間指定がズレないか確認
- 問題なければスケジュールを有効化
安全に回すコツ:小さいチェックリスト
今週は「厳重に管理してたはずのモデルが、結局は不正アクセスされていた」という報道もありました(Claude Mythosの件)。正直、こういうニュースを見るたびに思うのは、自動化は便利だけど、権限設計が雑だと急に怖くなるということです。
- できれば自動化用に別アカウント/別トークンを用意する
- 最初は読み取り専用で始める(レポートだけ)
- 出力ログを残す(あとから監査できる)
- 異常時の止まり方を決める(例:PRが50件超なら上位10件だけ、など)
このへん、地味なんですが、これがあるだけで「安心して任せる」側に寄ります。
無料で使える?料金は?(2026年4月時点の考え方)
料金は変わりやすいので、使い方に落とした目安だけ。
- 自動化は、普通のチャットよりコストが上がりがちです(データ取得やツール呼び出し、長い分析が入るため)。
- 週1回の小さなレポートなら現実的な範囲に収まりやすい一方で、対象期間を伸ばす、複数リポジトリを横断する、深いコードレビューを毎回やる、で跳ねます。
- 最初の1〜2回は「短く」「範囲を狭く」して、使用量の感触をつかむのがおすすめです。
節約したいなら、自動化は1ページの速報までにして、深掘りは必要なときだけ追加で質問する運用がラクです。
まとめ:今週は“予約実行を1本”だけ作ろう
いきなり「AIに全部任せる」はやらなくて大丈夫です。まずは、あなたが毎週やっている作業を1個だけ選んで、読み取り専用の自動化に落としてみてください。
月曜の朝、最初の会議前に「もう棚卸し終わってる」が一回でも起きると、けっこう戻れなくなりますよ。
References / 参考リンク
- OpenAI says its new GPT-5.5 model is more efficient and better at coding(The Verge AI)
- Introducing GPT-5.5(OpenAI Blog)
- GPT-5.5 System Card(OpenAI Blog)
- What is Codex?(OpenAI Blog)
- Automations(OpenAI Blog)
- Plugins and skills(OpenAI Blog)
- Codex settings(OpenAI Blog)
- Anthropic’s Mythos breach was humiliating(The Verge AI)
Photo by Jakub Żerdzicki on Unsplash

