@compass-ai/nova 1.0.99 → 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 +18 -2
- package/dist/cli.js +981 -990
- package/dist/index.js +748 -744
- package/package.json +24 -4
package/README.md
CHANGED
|
@@ -248,13 +248,16 @@ Nova supports multiple AI models — switch anytime with `/model`:
|
|
|
248
248
|
| **Z.AI GLM 5.1** | `glm-5.1`, `g` | Cloud-hosted, open-source alternative |
|
|
249
249
|
| **Z.AI GLM 5** | `glm-5` | Cloud-hosted, open-source |
|
|
250
250
|
| **MiniMax M2.7** | `minimax-m2.7`, `m` | Versatile cloud alternative |
|
|
251
|
-
| **Kimi K2.
|
|
251
|
+
| **Kimi K2.6** | `kimi-k2.6`, `k` | Deep reasoning alternative |
|
|
252
252
|
| **Gemini 3 Pro** | `gemini-3-pro`, `p` | Creative cloud alternative |
|
|
253
|
+
| **DeepSeek V4 Pro** | `deepseek-v4-pro` | High-context reasoning alternative |
|
|
254
|
+
| **GPT-5.5** | `gpt-5.5` | Advanced OpenAI reasoning, vision, and structured output |
|
|
255
|
+
| **GPT-5.4** | `gpt-5.4` | OpenAI reasoning, vision, and structured output |
|
|
253
256
|
|
|
254
257
|
All models support:
|
|
255
258
|
- 200K token context window
|
|
256
259
|
- Streaming responses
|
|
257
|
-
-
|
|
260
|
+
- Tool use
|
|
258
261
|
|
|
259
262
|
## Requirements
|
|
260
263
|
|
|
@@ -279,6 +282,19 @@ nova reset --force
|
|
|
279
282
|
COMPASS_DEBUG=true nova
|
|
280
283
|
```
|
|
281
284
|
|
|
285
|
+
### Slow performance in OneDrive / iCloud / Dropbox folders
|
|
286
|
+
Nova detects cloud-synced folders and automatically skips not-yet-downloaded
|
|
287
|
+
placeholder files during bulk searches to avoid triggering mass hydration.
|
|
288
|
+
The codebase indexer is disabled by default inside cloud roots. If you need
|
|
289
|
+
to index anyway (at the cost of downloading every file), set in your config:
|
|
290
|
+
```json
|
|
291
|
+
{ "cloudAware": { "allowIndexing": true } }
|
|
292
|
+
```
|
|
293
|
+
Other keys: `cloudAware.enabled`, `cloudAware.skipPlaceholdersInWalks`,
|
|
294
|
+
`cloudAware.allowBackupInTree`, `cloudAware.allowArchivalInTree`,
|
|
295
|
+
`cloudAware.warnOnHydration`. Full matrix in
|
|
296
|
+
[ADR 026](docs/adr/adr026-cloud-aware-io.md).
|
|
297
|
+
|
|
282
298
|
## Uninstalling
|
|
283
299
|
|
|
284
300
|
To uninstall Nova:
|