claudish 3.7.4 → 3.7.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +3 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -62360,6 +62360,7 @@ ENVIRONMENT VARIABLES:
62360
62360
  GLM_API_KEY Alias for ZHIPU_API_KEY
62361
62361
  OLLAMA_API_KEY OllamaCloud API key (for oc/ prefix)
62362
62362
  ANTHROPIC_API_KEY Placeholder (prevents Claude Code dialog)
62363
+ ANTHROPIC_AUTH_TOKEN Placeholder (prevents Claude Code login screen)
62363
62364
 
62364
62365
  Custom endpoints:
62365
62366
  GEMINI_BASE_URL Custom Gemini endpoint
@@ -63165,8 +63166,10 @@ async function runClaudeWithProxy(config3, proxyUrl) {
63165
63166
  };
63166
63167
  if (config3.monitor) {
63167
63168
  delete env.ANTHROPIC_API_KEY;
63169
+ delete env.ANTHROPIC_AUTH_TOKEN;
63168
63170
  } else {
63169
63171
  env.ANTHROPIC_API_KEY = process.env.ANTHROPIC_API_KEY || "sk-ant-api03-placeholder-not-used-proxy-handles-auth-with-openrouter-key-xxxxxxxxxxxxxxxxxxxxx";
63172
+ env.ANTHROPIC_AUTH_TOKEN = process.env.ANTHROPIC_AUTH_TOKEN || "placeholder-token-not-used-proxy-handles-auth";
63170
63173
  }
63171
63174
  const log2 = (message) => {
63172
63175
  if (!config3.quiet) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudish",
3
- "version": "3.7.4",
3
+ "version": "3.7.5",
4
4
  "description": "Run Claude Code with any model - OpenRouter, Ollama, LM Studio & local models",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",