- Update to ES modules syntax throughout the codebase - Add fileURLToPath and dirname imports to handle __dirname in ES modules - Upgrade Anthropic SDK from 0.10.0 to 0.39.0 - Fix JSON parsing to handle responses wrapped in Markdown code blocks - Improve documentation with clearer installation instructions - Add important notes about ES modules and SDK requirements - Update environment examples with API key format and model recommendations - Include index.js in package files list - Bump version to 1.0.2
19 lines
928 B
Plaintext
19 lines
928 B
Plaintext
# API Keys (Required)
|
|
ANTHROPIC_API_KEY=your_anthropic_api_key_here # Format: sk-ant-api03-...
|
|
|
|
# Model Configuration
|
|
MODEL=claude-3-7-sonnet-20250219 # Recommended models: claude-3-7-sonnet-20250219, claude-3-opus-20240229
|
|
MAX_TOKENS=4000 # Maximum tokens for model responses
|
|
TEMPERATURE=0.7 # 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=3 # 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
|
|
PROJECT_VERSION=1.0.0 # Override default version in tasks.json |