@asframe/opencode-iflow-auth 1.0.2 → 1.0.3

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/README.md CHANGED
@@ -250,8 +250,8 @@ Edit `~/.config/opencode/iflow.json`:
250
250
  |----------|-------------|
251
251
  | `IFLOW_AUTH_DEBUG` | Enable debug logging for auth plugin (`true`/`false`) |
252
252
  | `IFLOW_PROXY_DEBUG` | Enable debug logging for proxy plugin (`true`/`false`) |
253
- | `IFLOW_AUTO_INSTALL_CLI` | Auto-install iflow CLI if not installed (`true`/`false`) |
254
- | `IFLOW_AUTO_LOGIN` | Auto-trigger iflow login if not logged in (`true`/`false`) |
253
+ | `IFLOW_AUTO_INSTALL_CLI` | Auto-install iflow CLI if not installed (default: `true`, set `false` to disable) |
254
+ | `IFLOW_AUTO_LOGIN` | Auto-trigger iflow login if not logged in (default: `true`, set `false` to disable) |
255
255
  | `IFLOW_DEFAULT_AUTH_METHOD` | Override default auth method |
256
256
  | `IFLOW_ACCOUNT_SELECTION_STRATEGY` | Override account selection strategy |
257
257
  | `IFLOW_AUTH_SERVER_PORT_START` | Override OAuth server port |
@@ -6,7 +6,8 @@ const IFLOW_PROXY_HOST = '127.0.0.1';
6
6
  const IFLOW_API_BASE = 'https://apis.iflow.cn';
7
7
  const CLI_REQUIRED_MODELS = ['glm-5', 'glm-5-free', 'glm-5-thinking'];
8
8
  const DEBUG = process.env.IFLOW_PROXY_DEBUG === 'true';
9
- const AUTO_INSTALL_CLI = process.env.IFLOW_AUTO_INSTALL_CLI === 'true';
9
+ const AUTO_INSTALL_CLI = process.env.IFLOW_AUTO_INSTALL_CLI !== 'false';
10
+ const AUTO_LOGIN = process.env.IFLOW_AUTO_LOGIN !== 'false';
10
11
  function log(...args) {
11
12
  if (DEBUG) {
12
13
  console.error('[IFlowProxy]', ...args);
@@ -140,10 +141,10 @@ export class IFlowCLIProxy {
140
141
  console.error('[IFlowProxy]');
141
142
  console.error('[IFlowProxy] iflow login');
142
143
  console.error('[IFlowProxy]');
143
- console.error('[IFlowProxy] Or set IFLOW_AUTO_LOGIN=true to auto-trigger login');
144
+ console.error('[IFlowProxy] Or set IFLOW_AUTO_LOGIN=false to disable auto-login');
144
145
  console.error('[IFlowProxy] ══════════════════════════════════════════════════════════');
145
146
  console.error('');
146
- if (process.env.IFLOW_AUTO_LOGIN === 'true') {
147
+ if (AUTO_LOGIN) {
147
148
  const loginResult = await triggerIFlowLogin();
148
149
  if (loginResult.success) {
149
150
  this.cliLoggedIn = true;
@@ -165,7 +166,7 @@ export class IFlowCLIProxy {
165
166
  console.error('[IFlowProxy] npm install -g iflow-cli');
166
167
  console.error('[IFlowProxy] iflow login');
167
168
  console.error('[IFlowProxy]');
168
- console.error('[IFlowProxy] Or set IFLOW_AUTO_INSTALL_CLI=true to auto-install');
169
+ console.error('[IFlowProxy] Or set IFLOW_AUTO_INSTALL_CLI=false to disable auto-install');
169
170
  console.error('[IFlowProxy] ══════════════════════════════════════════════════════════');
170
171
  console.error('');
171
172
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asframe/opencode-iflow-auth",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "OpenCode plugin for iFlow.cn - Access Qwen, DeepSeek, Kimi, GLM-5 models with OAuth 2.0, API Key, and CLI Proxy support",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",