From 4b0c9d9af62d00359fca3f43283cf33223d410bc Mon Sep 17 00:00:00 2001 From: Ben Vargas Date: Tue, 17 Jun 2025 17:15:40 -0600 Subject: [PATCH] chore: add changeset for Claude Code provider feature --- .changeset/wet-berries-dress.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .changeset/wet-berries-dress.md diff --git a/.changeset/wet-berries-dress.md b/.changeset/wet-berries-dress.md new file mode 100644 index 00000000..a4fcef16 --- /dev/null +++ b/.changeset/wet-berries-dress.md @@ -0,0 +1,22 @@ +--- +"task-master-ai": minor +--- + +Add Claude Code provider support + +Introduces a new provider that enables using Claude models (Opus and Sonnet) through the Claude Code CLI without requiring an API key. + +Key features: +- New claude-code provider with support for opus and sonnet models +- No API key required - uses local Claude Code CLI installation +- Optional dependency - won't affect users who don't need Claude Code +- Lazy loading ensures the provider only loads when requested +- Full integration with existing Task Master commands and workflows +- Comprehensive test coverage for reliability +- New --claude-code flag for the models command + +Users can now configure Claude Code models with: + task-master models --set-main sonnet --claude-code + task-master models --set-research opus --claude-code + +The @anthropic-ai/claude-code package is optional and won't be installed unless explicitly needed.