Skip to content

chore(plugins): update model references to claude-opus-4-8 - #526

Merged
wkoutre merged 2 commits into
nextfrom
chore/model-update-opus-4-8-20260601
Jun 25, 2026
Merged

chore(plugins): update model references to claude-opus-4-8#526
wkoutre merged 2 commits into
nextfrom
chore/model-update-opus-4-8-20260601

Conversation

@wkoutre

@wkoutre wkoutre commented Jun 1, 2026

Copy link
Copy Markdown
Contributor

Summary

  • New model detected: claude-opus-4-8 is now the latest Opus model per Anthropic docs. claude-opus-4-7 has moved to the legacy table.
  • Updates 20 files with model: field and hardcoded ID references from claude-opus-4-7claude-opus-4-8
  • Updates 3 additional files with prose mentions of "Opus 4.7" → "Opus 4.8" (README, REUSABLE_WORKFLOWS, boris-best-practices)
  • claude-sonnet-4-6 and claude-haiku-4-5 are unchanged — still current

New model capabilities (claude-opus-4-8 vs claude-opus-4-7):

  • Adaptive thinking: Yes (unchanged)
  • Extended thinking: No (unchanged)
  • Context window: 1M tokens, 128k max output (unchanged)
  • Pricing: $5/$25 per MTok (unchanged)
  • Knowledge cutoff: Jan 2026 (unchanged)

Components updated

  • .github/ workflows and docs (13 files)
  • docs/guides/autonomous-claude-tasks.md
  • packages/plugins/claude-setup/ README and boris-best-practices reference (2 files)
  • packages/plugins/development-codebase-tools/ agents and skills (3 files)
  • packages/plugins/development-planning/ agents and skills (3 files)

Test plan

  • All pre-commit hooks passed (format, lint, lint-markdown, test, typecheck, update-lockfile)
  • Exhaustive git ls-files grep confirms 0 remaining claude-opus-4-7 references after changes
  • 0 claude-opus-4-6 regressions present in main at time of PR
AI-Generated Description

Summary

claude-opus-4-8 is now the latest Opus model per Anthropic docs; claude-opus-4-7 has moved to the legacy table. This PR is a like-for-like swap of every claude-opus-4-7 reference → claude-opus-4-8 across workflows, docs, and plugins. claude-sonnet-4-6 and claude-haiku-4-5 are unchanged — still current.

Changes

  • Updates model: fields and hardcoded claude-opus-4-7 ID references → claude-opus-4-8
  • Updates prose mentions of "Opus 4.7" → "Opus 4.8"
  • .github/ workflows, examples, and docs (14 files)
  • docs/guides/autonomous-claude-tasks.md
  • packages/plugins/claude-setup/ README + boris-best-practices reference (2 files)
  • packages/plugins/development-codebase-tools/ agents and skill (3 files)
  • packages/plugins/development-planning/ agents and skill (3 files)
    Total diff: +59 / -59 across 23 files.

Notes

Model capabilities are unchanged vs claude-opus-4-7: adaptive thinking (yes), extended thinking (no), 1M-token context / 128k max output, $5/$25 per MTok pricing, Jan 2026 knowledge cutoff. This is a pure model-identifier swap with no behavioral change.

Test plan

  • All pre-commit hooks pass (format, lint, lint-markdown, test, typecheck, lockfile)
  • git ls-files | xargs grep -l claude-opus-4-7 returns nothing after changes
  • No claude-opus-4-6 regressions present in base branch

@wkoutre
wkoutre requested a review from a team as a code owner June 1, 2026 13:04
@vercel

vercel Bot commented Jun 1, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
ai-toolkit-slack-oauth-backend Ready Ready Preview, Comment Jun 25, 2026 3:57pm

Request Review

@github-actions

github-actions Bot commented Jun 1, 2026

Copy link
Copy Markdown
Contributor

🤖 Claude Code Review

Review complete

Review: claude-opus-4-7claude-opus-4-8 model bump

This PR renames the Opus model identifier across documentation, workflow defaults, and plugin agent/skill frontmatter, with accompanying plugin version bumps. I verified the changes are internally consistent.

Verification performed

  • No stale references: grep -rn "claude-opus-4-7" across .md, .yml, .json returns zero results — the rename is complete.
  • Functional frontmatter changes are versioned: The model: frontmatter changes (agent-orchestrator, refactorer, refactor-code SKILL in development-codebase-tools; execute-plan, planner, execute-plan SKILL in development-planning) are functional, not cosmetic, so they correctly require version bumps per the root CLAUDE.md policy. Both plugins are bumped (2.6.0 → 2.6.1, 2.0.6 → 2.0.7), and claude-setup is bumped (1.0.4 → 1.0.5) for its doc references.
  • Version table matches plugin.json: The CLAUDE.md version table (HEAD vs merge-base) updates to 1.0.5 / 2.6.1 / 2.0.7, matching each .claude-plugin/plugin.json.

Notes

  • The development-planning table entry moves 2.0.1 → 2.0.7 rather than 2.0.6 → 2.0.7; the table was simply stale relative to the actual plugin.json (which was at 2.0.6). The final value 2.0.7 is correct and matches the bumped manifest.
  • These are documentation/config string changes only — no runtime code, no security or data-loss surface.

Safe to merge.


💡 Want a fresh review? Add a comment containing @request-claude-review to trigger a new review at any time.

@github-actions

github-actions Bot commented Jun 1, 2026

Copy link
Copy Markdown
Contributor

📚 Documentation Check ✅

Verdict: Passed

All modified plugins have proper version bumps, CLAUDE.md is updated with new versions, and relevant README/documentation files reflect the model name changes.


PR #526 Documentation Check

This PR updates all claude-opus-4-7claude-opus-4-8 model references across workflows, documentation, and plugin configuration files.

Plugin Version Bump Audit

Plugin Files Modified Version Bump Status
claude-setup README.md, boris-best-practices.md 1.0.4 → 1.0.5
development-codebase-tools agent-orchestrator.md, refactorer.md, SKILL.md 2.6.0 → 2.6.1
development-planning execute-plan.md, planner.md, SKILL.md 2.0.6 → 2.0.7

All three modified plugins have proper version bumps. No plugin was modified without a corresponding version bump.

Documentation Updates

  • ✅ Root CLAUDE.md version table updated to reflect new plugin versions
  • .github/workflows/README.md updated with Opus 4.8 references
  • .github/REUSABLE_WORKFLOWS.md updated throughout
  • .github/workflows/CLAUDE.md updated
  • docs/guides/autonomous-claude-tasks.md updated
  • packages/plugins/claude-setup/README.md updated

Note

The root CLAUDE.md version table showed development-planning at 2.0.1 before this PR, while the actual plugin.json was already at 2.0.6. This PR corrects that stale entry to 2.0.7, bringing the table back in sync. This is a positive side-effect of the PR.

✨ No Documentation Updates Needed

All documentation appears to be up to date with the code changes.


🤖 Generated by Claude Documentation Validator | Mode: suggest

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📋 Review verdict: REQUEST_CHANGES

👆 The main review comment above is the source of truth for this PR review. It is automatically updated on each review cycle, so always refer to it for the most current feedback.

This formal review submission is for the verdict only.

@wkoutre

wkoutre commented Jun 17, 2026

Copy link
Copy Markdown
Contributor Author

@claude push up changes to this PR per the documentation review comment: #526 (comment)

@claude

claude Bot commented Jun 17, 2026

Copy link
Copy Markdown
Contributor

Claude finished @wkoutre's task in 1m 53s —— View job


Plugin Version Bumps Applied ✅

Addressed all three items from the documentation review comment.

Todo

  • Gather context and understand request
  • Bump claude-setup plugin.json: 1.0.41.0.5
  • Bump development-codebase-tools plugin.json: 2.6.02.6.1
  • development-planning plugin.json already at 2.0.6 on origin/next — no change needed
  • Update version table in root CLAUDE.md (claude-setup1.0.5, development-codebase-tools2.6.1, development-planning2.0.6)
  • Commit and push (commit 536e81d)

What was done

Plugin File Change
claude-setup .claude-plugin/plugin.json 1.0.41.0.5
development-codebase-tools .claude-plugin/plugin.json 2.6.02.6.1
development-planning .claude-plugin/plugin.json Already at 2.0.6 on origin/next — no bump needed
Root CLAUDE.md version table Corrected all three stale entries
·

@github-actions
github-actions Bot dismissed their stale review June 17, 2026 19:33

Superseded by new review after PR update

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📋 Review verdict: COMMENT

👆 The main review comment above is the source of truth for this PR review. It is automatically updated on each review cycle, so always refer to it for the most current feedback.

This formal review submission is for the verdict only. 1 inline comment(s) are attached below.

@github-actions

Copy link
Copy Markdown
Contributor

🤖 Claude PR Metadata Generation

Status: ❌ Error
Job: View workflow run


⚠️ Generation Failed

The automated PR title and description generation encountered an error.

Next Steps:

  1. Check the workflow logs for details
  2. Verify the GitHub Actions configuration
  3. Ensure the Anthropic API key is valid

You can manually set the PR title and description, or re-trigger by pushing a new commit.

@github-actions

Copy link
Copy Markdown
Contributor

🤖 Claude Code Review

Status: ⚠️ Partial (script error)
Job: View workflow run


The review was completed but there was an error posting inline comments.

Raw Review Output
No review output available

Please check the workflow logs for details.

@github-actions

Copy link
Copy Markdown
Contributor

🤖 Claude Code Review

Status: ❌ Error
Job: View workflow run


⚠️ Review Failed

The automated code review encountered an error and could not complete.

Next Steps:

  1. Check the workflow logs for details
  2. Verify the GitHub Actions configuration
  3. Ensure the Anthropic API key is valid
  4. Check for any permission issues

If the problem persists, please contact your repository administrator.


You can manually re-trigger the review by pushing a new commit or re-running the workflow.

@wkoutre
wkoutre enabled auto-merge June 23, 2026 18:20
@wkoutre
wkoutre requested review from marktoda and msarkor718 June 23, 2026 18:20
claude-opus-4-8 is now the latest Opus model per Anthropic docs.
claude-opus-4-7 has moved to the legacy table.

Updates 20 files with model ID references and 3 additional files with
prose mentions of "Opus 4.7". Sonnet 4.6 and Haiku 4.5 are unchanged.
@wkoutre wkoutre changed the title chore: update model references to claude-opus-4-8 chore(plugins): update model references to claude-opus-4-8 Jun 25, 2026
Patch bumps for plugins with functional model: frontmatter changes in the
claude-opus-4-7 → claude-opus-4-8 model reference update, per mandatory
versioning rules in CLAUDE.md:

- claude-setup: 1.0.4 → 1.0.5
- development-codebase-tools: 2.6.0 → 2.6.1
- development-planning: 2.0.6 → 2.0.7

development-planning's existing 2.0.6 on next was bumped for unrelated PRs
(#531, #492, #491), not this PR's model change, so it needs its own bump.

Also corrects the version table in root CLAUDE.md to match.

Co-authored-by: Nick Koutrelakos <wkoutre@users.noreply.github.com>

Claude-Session: https://claude.ai/code/session_01W62gurznvTz2w81B8dcwG9

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📋 Review verdict: APPROVE

👆 The main review comment above is the source of truth for this PR review. It is automatically updated on each review cycle, so always refer to it for the most current feedback.

This formal review submission is for the verdict only.

@wkoutre
wkoutre merged commit 7978a9b into next Jun 25, 2026
29 checks passed
@wkoutre
wkoutre deleted the chore/model-update-opus-4-8-20260601 branch June 25, 2026 17:11
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.

1 participant