@@ -218,7 +218,7 @@ Notify Release (_notify-release.yml)
218218
219219| Input | Required | Default | Description |
220220| ------------------------------- | -------- | -------------------------------- | ---------------------------------------------------------------------------------- |
221- | `model` | No | `'claude-sonnet-5'` | Claude model to use (Sonnet 5, Opus 4.8 , or Haiku 4.5) |
221+ | `model` | No | `'claude-sonnet-5'` | Claude model to use (Sonnet 5, Opus 5 , or Haiku 4.5) |
222222| `allowed_tools` | No | (permissive defaults, see below) | YAML string specifying which tools Claude can use (file operations, bash commands) |
223223| `custom_instructions` | No | `'Be sure to follow rules...'` | Additional instructions for Claude beyond CLAUDE.md files |
224224| `timeout_minutes` | No | `'10'` | Maximum execution time in minutes (prevents runaway costs) |
@@ -282,7 +282,7 @@ The following settings are intentionally fixed to ensure consistent security and
282282
283283- **Interactive AI Assistance**: Respond to `@claude` mentions anywhere in GitHub
284284- **Multiple Trigger Points**: Works in issue comments, PR comments, review comments, and reviews
285- - **Configurable Model**: Choose between Sonnet 5 (balanced), Opus 4.8 (thorough), or Haiku 4.5 (fast)
285+ - **Configurable Model**: Choose between Sonnet 5 (balanced), Opus 5 (thorough), or Haiku 4.5 (fast)
286286- **Flexible Tool Permissions**: Control what Claude can do (read-only, read-write, or custom)
287287- **Custom Instructions**: Add repository-specific guidelines and standards
288288- **Bot Filtering**: Automatically excludes bot comments to prevent loops
@@ -334,7 +334,7 @@ jobs:
334334 secrets:
335335 ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
336336 with:
337- model: 'claude-opus-4-8 '
337+ model: 'claude-opus-5 '
338338 timeout_minutes: '15' # Opus may need more time
339339` ` `
340340
@@ -423,7 +423,7 @@ jobs:
423423 secrets:
424424 ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
425425 with:
426- model: 'claude-opus-4-8 '
426+ model: 'claude-opus-5 '
427427 timeout_minutes: '15'
428428` ` `
429429
@@ -546,7 +546,7 @@ Claude says it doesn't have permission to perform action
5465462 . ** Choose the Right Model** :
547547
548548 - ** Sonnet 5** (default): Best balance of speed, capability, and cost for 90% of use cases
549- - ** Opus 4.8 ** : Reserve for complex architectural reviews or critical security analysis
549+ - ** Opus 5 ** : Reserve for complex architectural reviews or critical security analysis
550550 - ** Haiku 4.5** : Fast and cost-effective for simple questions, quick lookups, or high-volume usage
551551
5525523 . ** Set Appropriate Timeouts** :
@@ -619,7 +619,7 @@ jobs:
619619 secrets :
620620 ANTHROPIC_API_KEY : ${{ secrets.ANTHROPIC_API_KEY }}
621621 with :
622- model : ' claude-opus-4-8 '
622+ model : ' claude-opus-5 '
623623 timeout_minutes : ' 15'
624624` ` `
625625
@@ -640,7 +640,7 @@ claude-deep:
640640 contains(github.event.pull_request.labels.*.name, 'deep-analysis') &&
641641 # ... (rest of if condition)
642642 with :
643- model : ' claude-opus-4-8 '
643+ model : ' claude-opus-5 '
644644` ` `
645645
646646#### Integration with Other Workflows
@@ -691,7 +691,7 @@ Tips for managing Claude API costs effectively:
691691
692692 - Haiku 4.5: Most cost-effective for simple tasks
693693 - Sonnet 5: ~$2 per 1M input tokens, ~$10 per 1M output tokens (introductory pricing through Aug 31, 2026; default, recommended)
694- - Opus 4.8 : ~$5 per 1M input tokens, ~$25 per 1M output tokens (reserve for complex tasks)
694+ - Opus 5 : ~$5 per 1M input tokens, ~$25 per 1M output tokens (reserve for complex tasks)
695695 - Typical interaction: 5K-50K tokens (mostly input)
696696
6976972. **Timeout Strategy**:
@@ -1117,7 +1117,7 @@ jobs:
11171117 pr_number : ${{ github.event.pull_request.number }}
11181118 base_ref : ${{ github.base_ref }}
11191119 # Use Opus for PRs with 'claude-opus' label, otherwise Sonnet
1120- model : ${{ contains(github.event.pull_request.labels.*.name, 'claude-opus') && 'claude-opus-4-8 ' || 'claude-sonnet-5' }}
1120+ model : ${{ contains(github.event.pull_request.labels.*.name, 'claude-opus') && 'claude-opus-5 ' || 'claude-sonnet-5' }}
11211121 max_turns : 20 # Allow more turns for thorough Opus reviews
11221122 timeout_minutes : 45 # Longer timeout for complex reviews
11231123 secrets :
@@ -1501,7 +1501,7 @@ Claude submitted multiple reviews instead of updating one
150115012 . ** Model Selection** :
15021502
15031503 - ** Sonnet 5** (default): Best balance for most PRs (~ 80% of use cases)
1504- - ** Opus 4.8 ** : Reserve for critical code, security-sensitive changes, or complex architectures
1504+ - ** Opus 5 ** : Reserve for critical code, security-sensitive changes, or complex architectures
15051505 - Use labels to let developers request deeper reviews when needed
15061506
150715073 . ** Custom Prompts** :
@@ -1596,7 +1596,7 @@ jobs:
15961596 with :
15971597 pr_number : ${{ github.event.pull_request.number }}
15981598 base_ref : ${{ github.base_ref }}
1599- model : ' claude-opus-4-8 '
1599+ model : ' claude-opus-5 '
16001600 custom_prompt_path : ' .github/prompts/security-review.md'
16011601 timeout_minutes : 60
16021602 secrets :
0 commit comments