inboxd 1.0.4 → 1.0.5

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.
Files changed (2) hide show
  1. package/README.md +22 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -141,6 +141,28 @@ Or use the `analyze` command for structured output:
141
141
  inbox analyze --count 20
142
142
  ```
143
143
 
144
+ ## Uninstalling
145
+
146
+ To remove the package:
147
+
148
+ ```bash
149
+ npm uninstall -g inboxd
150
+ ```
151
+
152
+ To also remove all account data and tokens:
153
+
154
+ ```bash
155
+ inbox logout --all
156
+ ```
157
+
158
+ To completely remove all data including credentials:
159
+
160
+ ```bash
161
+ rm -rf ~/.config/inboxd
162
+ ```
163
+
164
+ **Note:** `npm uninstall` only removes the package itself. Your OAuth credentials and account data in `~/.config/inboxd/` are preserved so you can reinstall without reconfiguring. Use the commands above if you want to remove that data.
165
+
144
166
  ## Troubleshooting
145
167
 
146
168
  **"credentials.json not found"**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inboxd",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "CLI assistant for Gmail monitoring with multi-account support and AI-ready JSON output",
5
5
  "main": "src/cli.js",
6
6
  "bin": {