Skip to content

Latest commit

 

History

History
177 lines (120 loc) · 4.97 KB

File metadata and controls

177 lines (120 loc) · 4.97 KB

Version Tracking

Last Updated: 2026-02-27

This document tracks current versions of Claude Code and models to support version requirement validation across patterns.


Current Versions (as of February 2026)

Claude Code

Current Version: v2.1.37

Source: Anthropic Claude Code Changelog

Key Features in v2.1.37:

  • Agent teams (experimental)
  • Automatic session memory
  • PDF page ranges in Read tool
  • "Summarize from here" via /rewind
  • Skills from --add-dir
  • Remote sessions in VS Code
  • OAuth for MCP servers

Recent Version History:

  • v2.1.37 (current) - February 2026
  • v2.1.3 - January 2026
  • v2.1.0 - January 2026
  • v2.0.76 - December 2025
  • v2.0.60 - November 2025

Models

Current Models (as of February 2026):

Model Version Context Release Date Key Features
Opus 4.6 claude-opus-4-6 1M tokens February 5, 2026 Agent teams, adaptive reasoning, data residency controls
Sonnet 4.6 claude-sonnet-4-6 200K tokens January 2026 Production workhorse
Haiku 4.5 claude-haiku-4-5-20251001 200K tokens October 2025 Extended thinking, 1/3 cost of Sonnet

Pricing (as of Feb 2026):

  • Opus 4.6: $5 input / $25 output per million tokens (67% reduction from Opus 4.5)
  • Sonnet 4.6: Standard pricing
  • Haiku 4.5: ~1/3 cost of Sonnet 4.6

Beta Headers (Current Status)

Tracking beta headers referenced in patterns to identify graduation or updates.

Feature Beta Header Announced Status Last Checked
Advanced Tool Use advanced-tool-use-2025-11-20 Nov 24, 2025 ⚠️ Unknown (3+ months old) 2026-02-27
1M Context context-1m-2025-08-07 Aug 2025 ⚠️ Unknown (6+ months old) 2026-02-27

Action Required: Verify current status with Anthropic Changelog


Version Requirement Validation

When to Update Version Requirements

Trigger events:

  1. New Claude Code major/minor release (e.g., v2.2.0)
  2. New model release (e.g., Opus 4.7)
  3. Feature graduation from beta to stable
  4. Deprecation announcements

Pattern Files with Version Requirements

Patterns with version-requirements: frontmatter:

# Find all patterns with version requirements
grep -l "version-requirements:" patterns/*.md

Common version references (as of Feb 2026):

  • v2.0.0+ - MCP support (baseline)
  • v2.0.45+ - PermissionRequest hooks
  • v2.0.60+ - Background agent support
  • v2.1.0+ - Skill hot-reload, wildcard permissions
  • v2.1.30+ - Session memory feature
  • Opus 4.6+ - 1M context, agent teams

Validation Process

Quarterly Review (Q1: Mar 31, Q2: Jun 30, Q3: Sep 30, Q4: Dec 31):

  1. Check for new releases:

    # Visit Anthropic changelog
    open https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md
  2. Update this file:

    • Update "Current Versions" section
    • Update "Recent Version History"
    • Check beta header status
  3. Audit pattern version requirements:

    # Find patterns with outdated version requirements
    grep -r "v2\.0\." patterns/
    grep -r "v2\.1\." patterns/
  4. Update patterns if needed:

    • If feature is now baseline, update to current version
    • Add version-last-verified field to frontmatter
    • Document any breaking changes

Version-Last-Verified Field

Starting February 2026, patterns with version requirements should include:

---
version-requirements:
  claude-code: "v2.1.0+"  # Skills auto-reload
  model: "Opus 4.6+"      # Agent teams
version-last-verified: "2026-02-27"  # Date version requirements checked
---

Purpose: Track when version requirements were last validated against current releases.

Update trigger: Quarterly review or when Claude Code version changes.


Breaking Changes History

Track breaking changes that require pattern updates.

Claude Code v2.1.0 (January 2026)

Breaking changes: None New features: Skill hot-reload, wildcard permissions, context forking

Claude Code v2.0.60 (November 2025)

Breaking changes: None New features: Background agent support

Opus 4.6 (February 5, 2026)

Breaking changes: None New features: 1M context (beta), agent teams, adaptive reasoning


Related Documentation


Maintenance Schedule

Update frequency: Quarterly + ad-hoc for major releases

Next scheduled update: March 31, 2026 (Q1 2026 review)

Owner: Maintenance team (see CONTRIBUTING.md)


Last verified: February 27, 2026