@simonyea/holysheep-cli 1.7.121 → 1.7.123

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simonyea/holysheep-cli",
3
- "version": "1.7.121",
3
+ "version": "1.7.123",
4
4
  "description": "Claude Code/Cursor/Cline API relay for China — ¥1=$1, WeChat/Alipay payment, no credit card, no VPN. One command setup for all AI coding tools.",
5
5
  "keywords": [
6
6
  "openai-china",
@@ -31,11 +31,6 @@ async function webui(opts) {
31
31
  } catch {}
32
32
  }
33
33
 
34
- // 后台拉起 OpenClaw Bridge + Claude Proxy
35
- const { bootstrapBackgroundServices } = require('../webui/server')
36
- bootstrapBackgroundServices().then(() => {
37
- console.log(chalk.gray(' 后台服务已就绪'))
38
- }).catch(() => {})
39
34
 
40
35
  // Keep alive
41
36
  await new Promise(() => {})
@@ -65,7 +65,8 @@ function stripManagedTomlConfig(content) {
65
65
 
66
66
  if (!currentSection) {
67
67
  if (/^model\s*=\s*"[^"]*"\s*$/.test(trimmed)) continue
68
- if (/^model_provider\s*=\s*"holysheep"\s*$/.test(trimmed)) continue
68
+ if (/^model_provider\s*=/.test(trimmed)) continue
69
+ if (/^preferred_auth_method\s*=/.test(trimmed)) continue
69
70
  }
70
71
 
71
72
  output.push(line)