@compass-ai/nova 1.0.70 → 1.0.72

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
@@ -263,7 +263,42 @@ nova reset --force
263
263
  COMPASS_DEBUG=true nova
264
264
  ```
265
265
 
266
- ## Contributing
266
+ ## Uninstalling
267
+
268
+ To uninstall Nova:
269
+
270
+ ```bash
271
+ npm uninstall -g @compass-ai/nova
272
+ ```
273
+
274
+ During uninstall, you'll be prompted to optionally remove your user data stored in `~/.compass/`. This directory contains:
275
+
276
+ - Configuration settings
277
+ - API credentials (encrypted)
278
+ - Conversation history and saved sessions
279
+ - Project memories
280
+ - Custom commands, agents, and skills
281
+ - Token usage tracking
282
+
283
+ **By default, this data is preserved** so you can reinstall Nova later without losing your settings.
284
+
285
+ ### Complete Removal
286
+
287
+ To remove Nova and all user data in one step:
288
+
289
+ ```bash
290
+ # The uninstall prompt will ask if you want to delete ~/.compass
291
+ npm uninstall -g @compass-ai/nova
292
+ # Answer 'y' when prompted
293
+ ```
294
+
295
+ Or manually remove data after uninstalling:
296
+
297
+ ```bash
298
+ rm -rf ~/.compass
299
+ ```
300
+
301
+ ## Contributing
267
302
 
268
303
  Contributions are welcome! Please read our contributing guidelines before submitting pull requests.
269
304