@rtrvr-ai/rover 1.0.2 → 1.1.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
@@ -104,15 +104,24 @@ const RoverWidget = dynamic(() => import('./RoverWidget'), { ssr: false });
104
104
  | `apiKey` | `string` | *required* | API key from Rover Workspace |
105
105
  | `allowedDomains` | `string[]` | `[]` | Hostnames where Rover may operate |
106
106
  | `domainScopeMode` | `'registrable_domain' \| 'host_only'` | `'registrable_domain'` | Domain matching strategy |
107
+ | `crossDomainPolicy` | `'block_new_tab' \| 'allow' \| 'block'` | `'block_new_tab'` | Policy for cross-subdomain navigation |
107
108
  | `openOnInit` | `boolean` | `false` | Open panel immediately on boot |
108
109
  | `taskRouting` | `object` | `{ mode: 'act' }` | Task routing strategy |
109
110
  | `externalNavigationPolicy` | `string` | `'open_new_tab_notice'` | Policy for out-of-scope links |
111
+ | `tools.web.enableExternalWebContext` | `boolean` | `false` | Best-effort cloud context for external tabs |
112
+ | `tools.web.scrapeMode` | `'off' \| 'on_demand'` | `'off'` | In `on_demand`, only the active external tab attempts cloud page fetch |
113
+ | `tools.web.allowDomains` | `string[]` | `[]` | Optional allowlist for external cloud context fetch |
114
+ | `tools.web.denyDomains` | `string[]` | `[]` | Optional denylist for external cloud context fetch |
115
+ | `taskContext.*` | `object` | — | Task boundaries are completion-driven; Rover starts a fresh task only after the current task completes (or manual `newTask()` / `endTask()`). |
110
116
  | `workerUrl` | `string` | auto | Custom worker URL for self-hosting |
111
117
  | `ui.muted` | `boolean` | `false` | Start with audio muted (user can toggle via UI) |
118
+ | `ui.agent.name` | `string` | `'Rover'` | Custom assistant name shown in UI and runtime context |
112
119
  | `ui.mascot.disabled` | `boolean` | `false` | Disable mascot video (removes `media-src` CSP need) |
113
120
  | `visitorId` | `string` | auto | Stable visitor identifier |
114
121
  | `sessionScope` | `'shared_site' \| 'tab'` | `'shared_site'` | Session sharing across tabs |
115
122
 
123
+ If you enable `tools.web.scrapeMode: 'on_demand'`, use a site key capability profile that includes cloud scrape support.
124
+
116
125
  See [full configuration reference](https://github.com/rtrvr-ai/rover/blob/main/docs/INTEGRATION.md#configuration-reference).
117
126
 
118
127
  ## API Methods