@rtrvr-ai/rover 1.2.0 → 1.3.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.
package/README.md CHANGED
@@ -109,6 +109,7 @@ const RoverWidget = dynamic(() => import('./RoverWidget'), { ssr: false });
109
109
  | `allowedDomains` | `string[]` | `[]` | Hostnames where Rover may operate |
110
110
  | `domainScopeMode` | `'registrable_domain' \| 'host_only'` | `'registrable_domain'` | Domain matching strategy |
111
111
  | `externalNavigationPolicy` | `'open_new_tab_notice' \| 'block' \| 'allow'` | `'open_new_tab_notice'` | External navigation policy |
112
+ | `navigation.crossHostPolicy` | `'same_tab' \| 'open_new_tab'` | `'same_tab'` | Behavior for in-scope host changes (for example, `app.example.com` to `www.example.com`) |
112
113
  | `mode` | `'full' \| 'safe'` | `'full'` | Runtime mode |
113
114
  | `allowActions` | `boolean` | `true` | Enable or disable action tools |
114
115
  | `openOnInit` | `boolean` | `false` | Open panel immediately on boot |
@@ -122,10 +123,10 @@ const RoverWidget = dynamic(() => import('./RoverWidget'), { ssr: false });
122
123
  | `checkpointing.onStateChange` | `(payload) => void` | — | Checkpoint lifecycle updates (`active`, `paused_auth`) |
123
124
  | `checkpointing.onError` | `(payload) => void` | — | Checkpoint request error callback |
124
125
  | `telemetry.enabled` | `boolean` | `true` | Enable runtime telemetry batching |
125
- | `telemetry.sampleRate` | `number` | `1` | Event sampling ratio (0..1) |
126
- | `telemetry.flushIntervalMs` | `number` | `12000` | Telemetry flush cadence |
127
- | `telemetry.maxBatchSize` | `number` | `30` | Max events per telemetry request |
128
- | `telemetry.includePayloads` | `boolean` | `false` | Include richer event payloads |
126
+ | `telemetry.sampleRate` | `number` | `1` | Sampling ratio (`1` = all events, `0.1` ≈ 10%) |
127
+ | `telemetry.flushIntervalMs` | `number` | `12000` | Flush cadence for buffered telemetry events |
128
+ | `telemetry.maxBatchSize` | `number` | `30` | Maximum number of telemetry events sent per flush request |
129
+ | `telemetry.includePayloads` | `boolean` | `false` | Include richer per-event payload details (debug/tool context). Increases telemetry volume and may include sensitive runtime content. |
129
130
  | `apiMode` | `boolean` | auto (`true` when `apiKey` exists) | Force API execution mode |
130
131
  | `apiToolsConfig.mode` | `'allowlist' \| 'profile' \| 'none'` | `'none'` | API additional tool exposure mode |
131
132
  | `tools.web.enableExternalWebContext` | `boolean` | `false` | External tab cloud context fallback |