Context
The shared secrets file (~/Documents/secret/.env) has been updated to use project-scoped env var names. OPENROUTER_API_KEY was renamed to SOLIS_OPENROUTER_API_KEY to avoid ambiguity across projects (ReckonFi, Sipher, NanuqFi all have their own keys now).
What needs to change
Update all references from OPENROUTER_API_KEY to SOLIS_OPENROUTER_API_KEY:
packages/agent/src/config.ts — envalid schema
packages/agent/src/analysis/openrouter.ts — API key reference
packages/agent/tests/eval/llm-compare.test.ts — test env
.env.example — template
docker-compose.yml — env passthrough
.github/workflows/generate-report.yml — CI secret name
CLAUDE.md — documentation
README.md — documentation
- VPS
.agent-env — production env file
CI Secret
GitHub repo secret OPENROUTER_API_KEY needs to be renamed to SOLIS_OPENROUTER_API_KEY in repo settings.
VPS
Update /home/solis/solis/.agent-env on the VPS to use SOLIS_OPENROUTER_API_KEY.
Context
The shared secrets file (
~/Documents/secret/.env) has been updated to use project-scoped env var names.OPENROUTER_API_KEYwas renamed toSOLIS_OPENROUTER_API_KEYto avoid ambiguity across projects (ReckonFi, Sipher, NanuqFi all have their own keys now).What needs to change
Update all references from
OPENROUTER_API_KEYtoSOLIS_OPENROUTER_API_KEY:packages/agent/src/config.ts— envalid schemapackages/agent/src/analysis/openrouter.ts— API key referencepackages/agent/tests/eval/llm-compare.test.ts— test env.env.example— templatedocker-compose.yml— env passthrough.github/workflows/generate-report.yml— CI secret nameCLAUDE.md— documentationREADME.md— documentation.agent-env— production env fileCI Secret
GitHub repo secret
OPENROUTER_API_KEYneeds to be renamed toSOLIS_OPENROUTER_API_KEYin repo settings.VPS
Update
/home/solis/solis/.agent-envon the VPS to useSOLIS_OPENROUTER_API_KEY.