@compass-ai/nova 1.0.99 → 1.0.100
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 +13 -0
- package/dist/cli.js +800 -781
- package/dist/index.js +556 -537
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -279,6 +279,19 @@ nova reset --force
|
|
|
279
279
|
COMPASS_DEBUG=true nova
|
|
280
280
|
```
|
|
281
281
|
|
|
282
|
+
### Slow performance in OneDrive / iCloud / Dropbox folders
|
|
283
|
+
Nova detects cloud-synced folders and automatically skips not-yet-downloaded
|
|
284
|
+
placeholder files during bulk searches to avoid triggering mass hydration.
|
|
285
|
+
The codebase indexer is disabled by default inside cloud roots. If you need
|
|
286
|
+
to index anyway (at the cost of downloading every file), set in your config:
|
|
287
|
+
```json
|
|
288
|
+
{ "cloudAware": { "allowIndexing": true } }
|
|
289
|
+
```
|
|
290
|
+
Other keys: `cloudAware.enabled`, `cloudAware.skipPlaceholdersInWalks`,
|
|
291
|
+
`cloudAware.allowBackupInTree`, `cloudAware.allowArchivalInTree`,
|
|
292
|
+
`cloudAware.warnOnHydration`. Full matrix in
|
|
293
|
+
[ADR 026](docs/adr/adr026-cloud-aware-io.md).
|
|
294
|
+
|
|
282
295
|
## Uninstalling
|
|
283
296
|
|
|
284
297
|
To uninstall Nova:
|