Version Packages #30

Closed
opened 2025-10-14 15:38:52 -06:00 by navan · 0 comments
Owner

Originally created by @github-actions[bot] on 10/7/2025

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

task-master-ai@0.28.0

Minor Changes

  • #1273 b43b7ce Thanks @ben-vargas! - Add Codex CLI provider with OAuth authentication

    • Added codex-cli provider for GPT-5 and GPT-5-Codex models (272K input / 128K output)
    • OAuth-first authentication via codex login - no API key required
    • Optional OPENAI_CODEX_API_KEY support
    • Codebase analysis capabilities automatically enabled
    • Command-specific settings and approval/sandbox modes
  • #1215 0079b7d Thanks @joedanz! - Add Cursor IDE custom slash command support

    Expose Task Master commands as Cursor slash commands by copying assets/claude/commands to .cursor/commands on profile add and cleaning up on remove.

  • #1246 18aa416 Thanks @Crunchyman-ralph! - Added api keys page on docs website: docs.task-master.dev/getting-started/api-keys

  • #1246 18aa416 Thanks @Crunchyman-ralph! - Move to AI SDK v5:

    • Works better with claude-code and gemini-cli as ai providers
    • Improved openai model family compatibility
    • Migrate ollama provider to v2
    • Closes #1223, #1013, #1161, #1174
  • #1262 738ec51 Thanks @Crunchyman-ralph! - Migrate AI services to use generateObject for structured data generation

    This update migrates all AI service calls from generateText to generateObject, ensuring more reliable and structured responses across all commands.

    Key Changes:

    • Unified AI Service: Replaced separate generateText implementations with a single generateObjectService that handles structured data generation
    • JSON Mode Support: Added proper JSON mode configuration for providers that support it (OpenAI, Anthropic, Google, Groq)
    • Schema Validation: Integrated Zod schemas for all AI-generated content with automatic validation
    • Provider Compatibility: Maintained compatibility with all existing providers while leveraging their native structured output capabilities
    • Improved Reliability: Structured output generation reduces parsing errors and ensures consistent data formats

    Technical Improvements:

    • Centralized provider configuration in ai-providers-unified.js
    • Added generateObject support detection for each provider
    • Implemented proper error handling for schema validation failures
    • Maintained backward compatibility with existing prompt structures

    Bug Fixes:

    • Fixed subtask ID numbering issue where AI was generating inconsistent IDs (101-105, 601-603) instead of sequential numbering (1, 2, 3...)
    • Enhanced prompt instructions to enforce proper ID generation patterns
    • Ensured subtasks display correctly as X.1, X.2, X.3 format

    This migration improves the reliability and consistency of AI-generated content throughout the Task Master application.

  • #1112 d67b81d Thanks @olssonsten! - Enhanced Roo Code profile with MCP timeout configuration for improved reliability during long-running AI operations. The Roo profile now automatically configures a 300-second timeout for MCP server operations, preventing timeouts during complex tasks like parse-prd, expand-all, analyze-complexity, and research operations. This change also replaces static MCP configuration files with programmatic generation for better maintainability.

    What's New:

    • 300-second timeout for MCP operations (up from default 60 seconds)
    • Programmatic MCP configuration generation (replaces static asset files)
    • Enhanced reliability for AI-powered operations
    • Consistent with other AI coding assistant profiles

    Migration: No user action required - existing Roo Code installations will automatically receive the enhanced MCP configuration on next initialization.

  • #1246 986ac11 Thanks @Crunchyman-ralph! - Upgrade grok-cli ai provider to ai sdk v5

Patch Changes

  • #1235 aaacc3d Thanks @Crunchyman-ralph! - Improve analyze-complexity cli docs and --research flag documentation

  • #1251 0b2c696 Thanks @Crunchyman-ralph! - Change parent task back to "pending" when all subtasks are in "pending" state

  • #1274 4f984f8 Thanks @Crunchyman-ralph! - Do a quick fix on build

  • #1277 7b5a7c4 Thanks @Crunchyman-ralph! - Fix MCP connection errors caused by deprecated generateTaskFiles calls. Resolves "Cannot read properties of null (reading 'toString')" errors when using MCP tools for task management operations.

  • #1276 caee040 Thanks @Crunchyman-ralph! - Fix MCP server error when file parameter not provided - now properly constructs default tasks.json path instead of failing with 'tasksJsonPath is required' error.

  • #1172 b5fe723 Thanks @jujax! - Fix Claude Code settings validation for pathToClaudeCodeExecutable

  • #1192 2b69936 Thanks @nukunga! - Fix sonar deep research model failing, should be called sonar-deep-research

  • #1270 20004a3 Thanks @Crunchyman-ralph! - Fix complexity score not showing for task-master show and task-master list

    • Added complexity score on "next task" when running task-master list
    • Added colors to complexity to reflect complexity (easy, medium, hard)

@tm/cli@null

@tm/cli

null

Patch Changes

  • Updated dependencies []:
    • @tm/core@null

null

Patch Changes

  • Updated dependencies []:
    • @tm/core@null

0.27.0

Patch Changes

  • Updated dependencies []:
    • @tm/core@0.26.1

0.27.0-rc.0

Minor Changes

1.1.0-rc.0

Minor Changes

extension@0.25.5

Patch Changes

docs@0.0.5

@tm/ai-sdk-provider-grok-cli@null

@tm/ai-sdk-provider-grok-cli

null

@tm/build-config@null

@tm/build-config

null

null

1.0.1

@tm/core@null

Changelog

null

null

0.26.1

All notable changes to the @task-master/tm-core package will be documented in this file.

The format is based on Keep a Changelog,
and this project adheres to Semantic Versioning.

[Unreleased]

Added

  • Initial package structure and configuration
  • TypeScript support with strict mode
  • Dual ESM/CJS build system with tsup
  • Jest testing framework with TypeScript support
  • ESLint and Prettier for code quality
  • Modular architecture with barrel exports
  • Placeholder implementations for all modules
  • Comprehensive documentation and README

Development Infrastructure

  • tsup configuration for dual format builds
  • Jest configuration with ESM support
  • ESLint configuration with TypeScript rules
  • Prettier configuration for consistent formatting
  • Complete package.json with all required fields
  • TypeScript configuration with strict settings
  • .gitignore for development files

Package Structure

  • src/types/ - TypeScript type definitions (placeholder)
  • src/providers/ - AI provider implementations (placeholder)
  • src/storage/ - Storage layer abstractions (placeholder)
  • src/parser/ - Task parsing utilities (placeholder)
  • src/utils/ - Common utility functions (placeholder)
  • src/errors/ - Custom error classes (placeholder)
  • tests/ - Test directories and setup

[1.0.0] - TBD

Planned Features

  • Complete TypeScript type system
  • AI provider implementations
  • Storage adapters
  • Task parsing capabilities
  • Comprehensive utility functions
  • Custom error handling
  • Full test coverage
  • Complete documentation

Release Notes

Version 1.0.0 (Coming Soon)

This will be the first stable release of tm-core with complete implementations of all modules. Currently, all modules contain placeholder implementations to establish the package structure and enable development of dependent packages.

Development Status

  • Package structure and configuration
  • Build and test infrastructure
  • Development tooling setup
  • 🚧 TypeScript types implementation (Task 116)
  • 🚧 AI provider system (Task 117)
  • 🚧 Storage layer (Task 118)
  • 🚧 Task parser (Task 119)
  • 🚧 Utility functions (Task 120)
  • 🚧 Error handling (Task 121)
  • 🚧 Configuration system (Task 122)
  • 🚧 Testing infrastructure (Task 123)
  • 🚧 Documentation (Task 124)
  • 🚧 Package finalization (Task 125)
*Originally created by @github-actions[bot] on 10/7/2025* This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## task-master-ai@0.28.0 ### Minor Changes - [#1273](https://github.com/eyaltoledano/claude-task-master/pull/1273) [`b43b7ce`](https://github.com/eyaltoledano/claude-task-master/commit/b43b7ce201625eee956fb2f8cd332f238bb78c21) Thanks [@ben-vargas](https://github.com/ben-vargas)! - Add Codex CLI provider with OAuth authentication - Added codex-cli provider for GPT-5 and GPT-5-Codex models (272K input / 128K output) - OAuth-first authentication via `codex login` - no API key required - Optional OPENAI_CODEX_API_KEY support - Codebase analysis capabilities automatically enabled - Command-specific settings and approval/sandbox modes - [#1215](https://github.com/eyaltoledano/claude-task-master/pull/1215) [`0079b7d`](https://github.com/eyaltoledano/claude-task-master/commit/0079b7defdad550811f704c470fdd01955d91d4d) Thanks [@joedanz](https://github.com/joedanz)! - Add Cursor IDE custom slash command support Expose Task Master commands as Cursor slash commands by copying assets/claude/commands to .cursor/commands on profile add and cleaning up on remove. - [#1246](https://github.com/eyaltoledano/claude-task-master/pull/1246) [`18aa416`](https://github.com/eyaltoledano/claude-task-master/commit/18aa416035f44345bde1c7321490345733a5d042) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Added api keys page on docs website: docs.task-master.dev/getting-started/api-keys - [#1246](https://github.com/eyaltoledano/claude-task-master/pull/1246) [`18aa416`](https://github.com/eyaltoledano/claude-task-master/commit/18aa416035f44345bde1c7321490345733a5d042) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Move to AI SDK v5: - Works better with claude-code and gemini-cli as ai providers - Improved openai model family compatibility - Migrate ollama provider to v2 - Closes #1223, #1013, #1161, #1174 - [#1262](https://github.com/eyaltoledano/claude-task-master/pull/1262) [`738ec51`](https://github.com/eyaltoledano/claude-task-master/commit/738ec51c049a295a12839b2dfddaf05e23b8fede) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Migrate AI services to use generateObject for structured data generation This update migrates all AI service calls from generateText to generateObject, ensuring more reliable and structured responses across all commands. ### Key Changes: - **Unified AI Service**: Replaced separate generateText implementations with a single generateObjectService that handles structured data generation - **JSON Mode Support**: Added proper JSON mode configuration for providers that support it (OpenAI, Anthropic, Google, Groq) - **Schema Validation**: Integrated Zod schemas for all AI-generated content with automatic validation - **Provider Compatibility**: Maintained compatibility with all existing providers while leveraging their native structured output capabilities - **Improved Reliability**: Structured output generation reduces parsing errors and ensures consistent data formats ### Technical Improvements: - Centralized provider configuration in `ai-providers-unified.js` - Added `generateObject` support detection for each provider - Implemented proper error handling for schema validation failures - Maintained backward compatibility with existing prompt structures ### Bug Fixes: - Fixed subtask ID numbering issue where AI was generating inconsistent IDs (101-105, 601-603) instead of sequential numbering (1, 2, 3...) - Enhanced prompt instructions to enforce proper ID generation patterns - Ensured subtasks display correctly as X.1, X.2, X.3 format This migration improves the reliability and consistency of AI-generated content throughout the Task Master application. - [#1112](https://github.com/eyaltoledano/claude-task-master/pull/1112) [`d67b81d`](https://github.com/eyaltoledano/claude-task-master/commit/d67b81d25ddd927fabb6f5deb368e8993519c541) Thanks [@olssonsten](https://github.com/olssonsten)! - Enhanced Roo Code profile with MCP timeout configuration for improved reliability during long-running AI operations. The Roo profile now automatically configures a 300-second timeout for MCP server operations, preventing timeouts during complex tasks like `parse-prd`, `expand-all`, `analyze-complexity`, and `research` operations. This change also replaces static MCP configuration files with programmatic generation for better maintainability. **What's New:** - 300-second timeout for MCP operations (up from default 60 seconds) - Programmatic MCP configuration generation (replaces static asset files) - Enhanced reliability for AI-powered operations - Consistent with other AI coding assistant profiles **Migration:** No user action required - existing Roo Code installations will automatically receive the enhanced MCP configuration on next initialization. - [#1246](https://github.com/eyaltoledano/claude-task-master/pull/1246) [`986ac11`](https://github.com/eyaltoledano/claude-task-master/commit/986ac117aee00bcd3e6830a0f76e1ad6d10e0bca) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Upgrade grok-cli ai provider to ai sdk v5 ### Patch Changes - [#1235](https://github.com/eyaltoledano/claude-task-master/pull/1235) [`aaacc3d`](https://github.com/eyaltoledano/claude-task-master/commit/aaacc3dae36247b4de72b2d2697f49e5df6d01e3) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Improve `analyze-complexity` cli docs and `--research` flag documentation - [#1251](https://github.com/eyaltoledano/claude-task-master/pull/1251) [`0b2c696`](https://github.com/eyaltoledano/claude-task-master/commit/0b2c6967c4605c33a100cff16f6ce8ff09ad06f0) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Change parent task back to "pending" when all subtasks are in "pending" state - [#1274](https://github.com/eyaltoledano/claude-task-master/pull/1274) [`4f984f8`](https://github.com/eyaltoledano/claude-task-master/commit/4f984f8a6965da9f9c7edd60ddfd6560ac022917) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Do a quick fix on build - [#1277](https://github.com/eyaltoledano/claude-task-master/pull/1277) [`7b5a7c4`](https://github.com/eyaltoledano/claude-task-master/commit/7b5a7c4495a68b782f7407fc5d0e0d3ae81f42f5) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP connection errors caused by deprecated generateTaskFiles calls. Resolves "Cannot read properties of null (reading 'toString')" errors when using MCP tools for task management operations. - [#1276](https://github.com/eyaltoledano/claude-task-master/pull/1276) [`caee040`](https://github.com/eyaltoledano/claude-task-master/commit/caee040907f856d31a660171c9e6d966f23c632e) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix MCP server error when file parameter not provided - now properly constructs default tasks.json path instead of failing with 'tasksJsonPath is required' error. - [#1172](https://github.com/eyaltoledano/claude-task-master/pull/1172) [`b5fe723`](https://github.com/eyaltoledano/claude-task-master/commit/b5fe723f8ead928e9f2dbde13b833ee70ac3382d) Thanks [@jujax](https://github.com/jujax)! - Fix Claude Code settings validation for pathToClaudeCodeExecutable - [#1192](https://github.com/eyaltoledano/claude-task-master/pull/1192) [`2b69936`](https://github.com/eyaltoledano/claude-task-master/commit/2b69936ee7b34346d6de5175af20e077359e2e2a) Thanks [@nukunga](https://github.com/nukunga)! - Fix sonar deep research model failing, should be called `sonar-deep-research` - [#1270](https://github.com/eyaltoledano/claude-task-master/pull/1270) [`20004a3`](https://github.com/eyaltoledano/claude-task-master/commit/20004a39ea848f747e1ff48981bfe176554e4055) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix complexity score not showing for `task-master show` and `task-master list` - Added complexity score on "next task" when running `task-master list` - Added colors to complexity to reflect complexity (easy, medium, hard) ## @tm/cli@null # @tm/cli ## null ### Patch Changes - Updated dependencies \[]: - @tm/core@null ## null ### Patch Changes - Updated dependencies \[]: - @tm/core@null ## 0.27.0 ### Patch Changes - Updated dependencies \[]: - @tm/core@0.26.1 ## 0.27.0-rc.0 ### Minor Changes - [#1213](https://github.com/eyaltoledano/claude-task-master/pull/1213) [`137ef36`](https://github.com/eyaltoledano/claude-task-master/commit/137ef362789a9cdfdb1925e35e0438c1fa6c69ee) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - testing this stuff out to see how the release candidate works with monorepo ## 1.1.0-rc.0 ### Minor Changes - [#1213](https://github.com/eyaltoledano/claude-task-master/pull/1213) [`cd90b4d`](https://github.com/eyaltoledano/claude-task-master/commit/cd90b4d65fc2f04bdad9fb73aba320b58a124240) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - testing this stuff out to see how the release candidate works with monorepo ## extension@0.25.5 ### Patch Changes - Updated dependencies \[[`b43b7ce`](https://github.com/eyaltoledano/claude-task-master/commit/b43b7ce201625eee956fb2f8cd332f238bb78c21), [`aaacc3d`](https://github.com/eyaltoledano/claude-task-master/commit/aaacc3dae36247b4de72b2d2697f49e5df6d01e3), [`0079b7d`](https://github.com/eyaltoledano/claude-task-master/commit/0079b7defdad550811f704c470fdd01955d91d4d), [`0b2c696`](https://github.com/eyaltoledano/claude-task-master/commit/0b2c6967c4605c33a100cff16f6ce8ff09ad06f0), [`4f984f8`](https://github.com/eyaltoledano/claude-task-master/commit/4f984f8a6965da9f9c7edd60ddfd6560ac022917), [`7b5a7c4`](https://github.com/eyaltoledano/claude-task-master/commit/7b5a7c4495a68b782f7407fc5d0e0d3ae81f42f5), [`caee040`](https://github.com/eyaltoledano/claude-task-master/commit/caee040907f856d31a660171c9e6d966f23c632e), [`18aa416`](https://github.com/eyaltoledano/claude-task-master/commit/18aa416035f44345bde1c7321490345733a5d042), [`18aa416`](https://github.com/eyaltoledano/claude-task-master/commit/18aa416035f44345bde1c7321490345733a5d042), [`738ec51`](https://github.com/eyaltoledano/claude-task-master/commit/738ec51c049a295a12839b2dfddaf05e23b8fede), [`d67b81d`](https://github.com/eyaltoledano/claude-task-master/commit/d67b81d25ddd927fabb6f5deb368e8993519c541), [`b5fe723`](https://github.com/eyaltoledano/claude-task-master/commit/b5fe723f8ead928e9f2dbde13b833ee70ac3382d), [`2b69936`](https://github.com/eyaltoledano/claude-task-master/commit/2b69936ee7b34346d6de5175af20e077359e2e2a), [`986ac11`](https://github.com/eyaltoledano/claude-task-master/commit/986ac117aee00bcd3e6830a0f76e1ad6d10e0bca), [`20004a3`](https://github.com/eyaltoledano/claude-task-master/commit/20004a39ea848f747e1ff48981bfe176554e4055)]: - task-master-ai@0.28.0 ## docs@0.0.5 ## @tm/ai-sdk-provider-grok-cli@null # @tm/ai-sdk-provider-grok-cli ## null ## @tm/build-config@null # @tm/build-config ## null ## null ## 1.0.1 ## @tm/core@null # Changelog ## null ## null ## 0.26.1 All notable changes to the @task-master/tm-core package will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] ### Added - Initial package structure and configuration - TypeScript support with strict mode - Dual ESM/CJS build system with tsup - Jest testing framework with TypeScript support - ESLint and Prettier for code quality - Modular architecture with barrel exports - Placeholder implementations for all modules - Comprehensive documentation and README ### Development Infrastructure - tsup configuration for dual format builds - Jest configuration with ESM support - ESLint configuration with TypeScript rules - Prettier configuration for consistent formatting - Complete package.json with all required fields - TypeScript configuration with strict settings - .gitignore for development files ### Package Structure - `src/types/` - TypeScript type definitions (placeholder) - `src/providers/` - AI provider implementations (placeholder) - `src/storage/` - Storage layer abstractions (placeholder) - `src/parser/` - Task parsing utilities (placeholder) - `src/utils/` - Common utility functions (placeholder) - `src/errors/` - Custom error classes (placeholder) - `tests/` - Test directories and setup ## [1.0.0] - TBD ### Planned Features - Complete TypeScript type system - AI provider implementations - Storage adapters - Task parsing capabilities - Comprehensive utility functions - Custom error handling - Full test coverage - Complete documentation * * * ## Release Notes ### Version 1.0.0 (Coming Soon) This will be the first stable release of tm-core with complete implementations of all modules. Currently, all modules contain placeholder implementations to establish the package structure and enable development of dependent packages. ### Development Status - ✅ Package structure and configuration - ✅ Build and test infrastructure - ✅ Development tooling setup - 🚧 TypeScript types implementation (Task 116) - 🚧 AI provider system (Task 117) - 🚧 Storage layer (Task 118) - 🚧 Task parser (Task 119) - 🚧 Utility functions (Task 120) - 🚧 Error handling (Task 121) - 🚧 Configuration system (Task 122) - 🚧 Testing infrastructure (Task 123) - 🚧 Documentation (Task 124) - 🚧 Package finalization (Task 125)
navan closed this issue 2025-10-14 15:38:53 -06:00
Sign in to join this conversation.
No labels
area:ai-models
area:ai-models
area:ai-models
area:ai-models
area:ai-models
area:ai-models
area:ai-models
area:ai-models
area:ai-models
area:ai-models
area:ai-models
area:ai-models
area:cli
area:cli
area:cli
area:cli
area:cli
area:cli
area:cli
area:cli
area:cli
area:cli
area:cli
area:cli
area:cli
area:cli
area:installation
area:installation
area:installation
area:installation
area:installation
area:mcp
area:mcp
area:mcp
area:mcp
area:mcp
area:mcp
area:mcp
area:mcp
area:mcp
area:mcp
area:mcp
area:mcp
area:mcp
area:mcp
area:mcp
area:mcp
area:mcp
area:task-management
area:task-management
area:task-management
area:task-management
area:task-management
area:task-management
area:task-management
area:task-management
area:task-management
area:task-management
area:task-management
area:task-management
area:task-management
area:task-management
area:task-management
area:task-management
area:task-management
area:vscode-extension
area:vscode-extension
area:vscode-extension
area:vscode-extension
area:vscode-extension
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
bug
documentation
documentation
documentation
documentation
documentation
documentation
documentation
documentation
documentation
documentation
documentation
documentation
documentation
documentation
documentation
documentation
documentation
duplicate
duplicate
duplicate
duplicate
duplicate
duplicate
duplicate
duplicate
duplicate
duplicate
duplicate
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
enhancement
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
feedback
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
good first issue
help wanted
help wanted
help wanted
help wanted
help wanted
high-priority
high-priority
high-priority
high-priority
high-priority
high-priority
high-priority
high-priority
high-priority
high-priority
high-priority
high-priority
high-priority
integration request
integration request
integration request
integration request
invalid
invalid
invalid
invalid
invalid
invalid
invalid
invalid
invalid
invalid
invalid
invalid
invalid
invalid
low-priority
low-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
medium-priority
provider:anthropic
provider:anthropic
provider:claude-code
provider:claude-code
provider:claude-code
provider:claude-code
provider:claude-code
provider:claude-code
provider:claude-code
provider:claude-code
provider:claude-code
provider:claude-code
provider:claude-code
provider:gemini-cli
provider:openai
provider:perplexity
question
question
question
question
question
question
question
question
question
question
question
question
question
question
refactor
refactor
wontfix
wontfix
wontfix
wontfix
wontfix
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github/claude-task-master#30
No description provided.