inboxctl 0.4.0 → 0.5.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 +5 -2
- package/dist/{chunk-2PN3TSVQ.js → chunk-5RC6TQRY.js} +2950 -2598
- package/dist/chunk-5RC6TQRY.js.map +1 -0
- package/dist/cli.js +7 -2
- package/dist/cli.js.map +1 -1
- package/dist/mcp.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-2PN3TSVQ.js.map +0 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ Emails are never deleted. The tool can label, archive, mark read, and forward, b
|
|
|
18
18
|
|
|
19
19
|
| | Count | Examples |
|
|
20
20
|
|---|---|---|
|
|
21
|
-
| **Tools** |
|
|
21
|
+
| **Tools** | 34 | `search_emails`, `get_uncategorized_senders`, `batch_apply_actions`, `query_emails`, `get_noise_senders`, `get_unsubscribe_suggestions`, `deploy_rule`, `create_filter`, `undo_run`, `undo_filters`, `cleanup_labels`, `review_categorized` |
|
|
22
22
|
| **Resources** | 8 | `inbox://recent`, `inbox://summary`, `inbox://action-log`, `schema://query-fields`, `rules://deployed`, `rules://history`, `stats://senders`, `stats://overview` |
|
|
23
23
|
| **Prompts** | 6 | `summarize-inbox`, `review-senders`, `find-newsletters`, `suggest-rules`, `triage-inbox`, `categorize-emails` |
|
|
24
24
|
|
|
@@ -109,7 +109,8 @@ inboxctl demo # launch the seeded demo mailbox
|
|
|
109
109
|
- **Local-first analytics** on top senders, unread rates, newsletter detection, uncategorized senders, noise scoring, unsubscribe impact, anomaly review, labels, and volume trends.
|
|
110
110
|
- **Structured inbox queries** for fixed filters, aggregations, and grouping across the local cache.
|
|
111
111
|
- **Gmail filter management** for always-on server-side rules on future incoming mail.
|
|
112
|
-
- **Full audit trail** with before/after state snapshots for reversible actions.
|
|
112
|
+
- **Full audit trail** with before/after state snapshots for reversible actions, tracked Gmail filter creation/deletion, and empty-label cleanup after session undo.
|
|
113
|
+
- **Safer rule undo** that auto-disables the originating YAML rule after `undo_run` so the same rule does not immediately re-apply.
|
|
113
114
|
- **Interactive TUI** for inbox triage, email detail, expanded stats dashboards, rules, and search.
|
|
114
115
|
- **Guided setup wizard** for Google Cloud and local OAuth configuration.
|
|
115
116
|
- **Demo mode** with realistic seeded data for screenshots, recordings, and safe exploration.
|
|
@@ -258,6 +259,8 @@ Native dependency note:
|
|
|
258
259
|
|
|
259
260
|
- No deletion. There is no code path that calls `messages.delete` or `messages.trash`.
|
|
260
261
|
- Minimal OAuth scopes: `gmail.modify`, `gmail.labels`, `gmail.settings.basic`, and `userinfo.email`.
|
|
262
|
+
- `undo_run` restores recorded label snapshots and auto-disables the originating rule when the run came from a YAML rule.
|
|
263
|
+
- `undo_filters` removes inboxctl-created Gmail filters for a run or session, and `cleanup_labels` removes empty `inboxctl/*` labels left behind after undo.
|
|
261
264
|
- Dry-run by default for rules.
|
|
262
265
|
- Audit trail for every reversible mutation.
|
|
263
266
|
- Undo support for reversible actions.
|