Skip to content

chore: upgrade implementation workflow to Opus 4.5#329

Merged
martymcenroe merged 1 commit intomainfrom
328-upgrade-to-opus
Feb 5, 2026
Merged

chore: upgrade implementation workflow to Opus 4.5#329
martymcenroe merged 1 commit intomainfrom
328-upgrade-to-opus

Conversation

@martymcenroe
Copy link
Copy Markdown
Owner

Summary

  • Upgrade implementation model from Sonnet to Opus 4.5 for better code quality
  • Increase max_tokens from 8192 to 32768 to prevent truncation

Changes

Before After
--model sonnet --model opus
model="claude-sonnet-4-20250514" model="claude-opus-4-5-20250514"
max_tokens=8192 max_tokens=32768

Why

  1. Wrong model for coding - Sonnet is faster but lower quality. Opus should be used for code generation tasks.
  2. Token limit too low - 8192 tokens truncated files with 800+ lines. Opus 4.5 supports up to 64K output tokens.

Test plan

  • Run implementation workflow on a large file modification
  • Verify output is not truncated
  • Verify code quality improves with Opus

Closes #328

🤖 Generated with Claude Code

- Change model from Sonnet to Opus 4.5 for better code quality
- Increase max_tokens from 8192 to 32768 (Opus 4.5 supports 64K)

This fixes truncation issues when generating large files (800+ lines)
and improves implementation quality by using a more capable model.

Closes #328

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
@martymcenroe martymcenroe merged commit 668c0e1 into main Feb 5, 2026
1 check passed
@martymcenroe martymcenroe deleted the 328-upgrade-to-opus branch February 5, 2026 05:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

chore: Upgrade implementation workflow to Opus 4.5 with proper token limits

1 participant