mirror of
https://github.com/leonvanzyl/autocoder.git
synced 2026-02-05 08:23:08 +00:00
Complete project rebrand from AutoCoder to AutoForge, touching 62 files across Python backend, FastAPI server, React UI, documentation, config, and CI/CD. Key changes: - Rename autocoder_paths.py -> autoforge_paths.py with backward-compat migration from .autocoder/ -> .autoforge/ directories - Update registry.py to migrate ~/.autocoder/ -> ~/.autoforge/ global config directory with fallback support - Update security.py with fallback reads from legacy .autocoder/ paths - Rename .claude/commands and skills from gsd-to-autocoder-spec to gsd-to-autoforge-spec - Update all Python modules: client, prompts, progress, agent, orchestrator, server routers and services - Update React UI: package.json name, index.html title, localStorage keys, all documentation sections, component references - Update start scripts (bat/sh/py), examples, and .env.example - Update CLAUDE.md and README.md with new branding and paths - Update test files for new .autoforge/ directory structure - Transfer git remote from leonvanzyl/autocoder to AutoForgeAI/autoforge Backward compatibility preserved: legacy .autocoder/ directories are auto-detected and migrated on next agent start. Config fallback chain checks both new and old paths. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
1.2 KiB
Python
28 lines
1.2 KiB
Python
"""
|
|
Shared Environment Variable Constants
|
|
======================================
|
|
|
|
Single source of truth for environment variables forwarded to Claude CLI
|
|
subprocesses. Imported by both ``client.py`` (agent sessions) and
|
|
``server/services/chat_constants.py`` (chat sessions) to avoid maintaining
|
|
duplicate lists.
|
|
|
|
These allow autoforge to use alternative API endpoints (Ollama, GLM,
|
|
Vertex AI) without affecting the user's global Claude Code settings.
|
|
"""
|
|
|
|
API_ENV_VARS: list[str] = [
|
|
# Core API configuration
|
|
"ANTHROPIC_BASE_URL", # Custom API endpoint (e.g., https://api.z.ai/api/anthropic)
|
|
"ANTHROPIC_AUTH_TOKEN", # API authentication token
|
|
"API_TIMEOUT_MS", # Request timeout in milliseconds
|
|
# Model tier overrides
|
|
"ANTHROPIC_DEFAULT_SONNET_MODEL", # Model override for Sonnet
|
|
"ANTHROPIC_DEFAULT_OPUS_MODEL", # Model override for Opus
|
|
"ANTHROPIC_DEFAULT_HAIKU_MODEL", # Model override for Haiku
|
|
# Vertex AI configuration
|
|
"CLAUDE_CODE_USE_VERTEX", # Enable Vertex AI mode (set to "1")
|
|
"CLOUD_ML_REGION", # GCP region (e.g., us-east5)
|
|
"ANTHROPIC_VERTEX_PROJECT_ID", # GCP project ID
|
|
]
|