BREAKING CHANGE: Taskmaster now requires a `.taskmasterconfig` file for model/parameter settings. Environment variables (except API keys) are no longer used for overrides. - Throws an error if `.taskmasterconfig` is missing, guiding user to run `task-master models --setup`." -m "- Removed env var checks from config getters in `config-manager.js`." -m "- Updated `env.example` to remove obsolete variables." -m "- Refined missing config file error message in `commands.js`.
20 lines
1.1 KiB
Plaintext
20 lines
1.1 KiB
Plaintext
# API Keys (Required)
|
|
ANTHROPIC_API_KEY=your_anthropic_api_key_here # Format: sk-ant-api03-...
|
|
PERPLEXITY_API_KEY=your_perplexity_api_key_here # Format: pplx-...
|
|
|
|
# Model Configuration
|
|
MODEL=claude-3-7-sonnet-20250219 # Recommended models: claude-3-7-sonnet-20250219, claude-3-opus-20240229
|
|
PERPLEXITY_MODEL=sonar-pro # Perplexity model for research-backed subtasks
|
|
MAX_TOKENS=64000 # Maximum tokens for model responses
|
|
TEMPERATURE=0.2 # Temperature for model responses (0.0-1.0)
|
|
|
|
# Logging Configuration
|
|
DEBUG=false # Enable debug logging (true/false)
|
|
LOG_LEVEL=info # Log level (debug, info, warn, error)
|
|
|
|
# Task Generation Settings
|
|
DEFAULT_SUBTASKS=5 # Default number of subtasks when expanding
|
|
DEFAULT_PRIORITY=medium # Default priority for generated tasks (high, medium, low)
|
|
|
|
# Project Metadata (Optional)
|
|
PROJECT_NAME=Your Project Name # Override default project name in tasks.json |