2 ファイル変更 +2 -2

この更新の概要

モデル設定において、opusplanモデルのコンテキストウィンドウが200Kに制限されるという重要な仕様が明記されました。extended-context設定による1Mへの自動アップグレードは、opus設定のみに適用され、plan-mode用のモデルには適用されないことが明確化されています。一方で、プルリクエストのトリマージュ工程におけるフォーク元判定や外部コントリビューター向けの自動ワークフローに関する記述が削除されました。全体として、モデルごとのコンテキスト容量の差異と、ルーチンにおけるセキュリティ確認プロセスの整理が行われています。

model-config +2 -0

opusplanモデルのコンテキストウィンドウが200K標準で動作し、1Mへの拡張機能の対象外であることを定義しています。

@@ -147,6 +147,8 @@ The `opusplan` model alias provides an automated hybrid approach:
This gives you the best of both worlds: Opus's superior reasoning for planning,
and Sonnet's efficiency for execution.
The plan-mode Opus phase runs with the standard 200K context window. The automatic 1M upgrade described in [Extended context](#extended-context) applies to the `opus` model setting and does not extend to `opusplan`.
### Adjust effort level
[Effort levels](https://platform.claude.com/docs/en/build-with-claude/effort) control adaptive reasoning, which lets the model decide whether and how much to think on each step based on task complexity. Lower effort is faster and cheaper for straightforward tasks, while higher effort provides deeper reasoning for complex problems.
routines +0 -2

外部コントリビューターによるフォークからのプルリクエストを対象とした、自動セキュリティレビューのルーチン説明が削除されました。

@@ -199,7 +199,6 @@ Use filters to narrow which pull requests start a new session. All filter condit
| Labels | Labels applied to the PR |
| Is draft | Whether the PR is in draft state |
| Is merged | Whether the PR has been merged |
| From fork | Whether the PR comes from a fork |
Each filter pairs a field with an operator: equals, contains, starts with, is one of, is not one of, or matches regex.
@@ -208,7 +207,6 @@ The `matches regex` operator tests the entire field value, not a substring withi
A few example filter combinations:
- **Auth module review**: base branch `main`, head branch contains `auth-provider`. Sends any PR that touches authentication to a focused reviewer.
- **External contributor triage**: from fork is `true`. Routes every fork-based PR through an extra security and style review before a human looks at it.
- **Ready-for-review only**: is draft is `false`. Skips drafts so the routine only runs when the PR is ready for review.
- **Label-gated backport**: labels include `needs-backport`. Triggers a port-to-another-branch routine only when a maintainer tags the PR.