@sunerpy/kiro-provider 0.6.0 → 0.7.0

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 (3) hide show
  1. package/README.md +3 -4
  2. package/dist/cli.js +89 -177
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -41,7 +41,7 @@
41
41
  separate canonical completion/event IR before protocol-specific encoding.
42
42
  - Encrypted reasoning replay for complete native Kiro envelopes: opaque `kr1_...` tokens, AES-256-GCM storage, tenant/model/account/conversation/output binding, TTL/LRU cleanup, and account-locked replay.
43
43
  - Multi-account rotation with automatic token refresh and failover. Exhausted accounts are hard-excluded from model attempts, then automatically rejoin only after a bounded, deduplicated Kiro usage probe confirms a new quota window. A provider-owned maintenance loop also refreshes near-expiry tokens and stale usage while the service is idle.
44
- - `kiro-provider login` and `accounts import` write directly to the provider-owned local authentication store. `auth_source: "opencode-shared"` remains an explicit compatibility option, but it is not the production default and is not required after import.
44
+ - `kiro-provider login` and `accounts import` write directly to the provider-owned local authentication store. The former `auth_source: "opencode-shared"` compatibility mode was removed in 0.7.0; a configuration that still selects it fails at startup with migration instructions (import once, then use `local`).
45
45
  - A single global `proxy_url` that, when set, routes all upstream egress (model requests, token refresh, quota probes, device-code login) through one HTTP(S) proxy.
46
46
  - Ships as a self-contained compiled binary via `bun build --compile` — no runtime install required on the target machine.
47
47
 
@@ -338,8 +338,7 @@ systemctl --user enable --now kiro-provider.service
338
338
 
339
339
  If the binary or config is elsewhere, replace `ExecStart` with those absolute
340
340
  paths. For a custom `XDG_CONFIG_HOME`, also add an explicit
341
- `Environment=XDG_CONFIG_HOME=/absolute/path` line or configure
342
- `opencode_auth_db_path`.
341
+ `Environment=XDG_CONFIG_HOME=/absolute/path` line.
343
342
 
344
343
  Operate and inspect the service:
345
344
 
@@ -506,7 +505,7 @@ Config is loaded from `~/.config/kiro-provider/config.json` (or `$XDG_CONFIG_HOM
506
505
  | `protocol_projection_mode` | `safe` | `KIRO_PROVIDER_PROTOCOL_PROJECTION_MODE` |
507
506
  | `session_affinity_mode` | `explicit-only` | `KIRO_PROVIDER_SESSION_AFFINITY_MODE` |
508
507
  | `auth_source` | `local` | `KIRO_PROVIDER_AUTH_SOURCE` |
509
- | `opencode_auth_db_path` | `null` (uses the OpenCode default) | `KIRO_PROVIDER_OPENCODE_AUTH_DB_PATH` |
508
+ | `opencode_auth_db_path` | `null` (deprecated since 0.7.0, ignored) | `KIRO_PROVIDER_OPENCODE_AUTH_DB_PATH` |
510
509
  | `proxy_url` | `null` | `KIRO_PROVIDER_PROXY_URL` |
511
510
  | `default_region` | `us-east-1` | `KIRO_PROVIDER_DEFAULT_REGION` |
512
511
  | `sdk_http_keep_alive` | `false` | `KIRO_PROVIDER_SDK_HTTP_KEEP_ALIVE` |