@jarkkojs/goosedump 0.6.2 → 0.6.4

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 +14 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -10,6 +10,7 @@ Features:
10
10
  * BM25 keyword ranking (with scores) for natural queries.
11
11
  * Glob matching for filtering messages.
12
12
  * Format conversion: re-render any context in another provider's native format.
13
+ * Import contexts into another provider's store (with `delete`, a "move").
13
14
 
14
15
  ## Usage
15
16
 
@@ -28,6 +29,19 @@ goosedump search claude:abc123 "race condition" -p2
28
29
  # Produce a compaction summary (always emitted in its own fixed schema).
29
30
  goosedump compact goose:abc123
30
31
 
32
+ # Delete contexts matching a glob (same matching as list); --dry-run previews.
33
+ goosedump delete goose:abc123
34
+ goosedump delete 'goose:*'
35
+ goosedump delete '*' --dry-run
36
+
37
+ # Import contexts matching a glob (same matching as list) into a provider,
38
+ # converting each to the destination's native on-disk shape. A fresh
39
+ # destination-native id is assigned; sessions already present in the
40
+ # destination (same provider, or matching content) are silently skipped, so
41
+ # re-running is a no-op. Import then delete moves a session between providers.
42
+ goosedump import goose 'claude:*' # copy every Claude session into Goose
43
+ goosedump import goose 'claude:*' && goosedump delete 'claude:*' # move them
44
+
31
45
  # Convert a context to another provider's native format with --output-format.
32
46
  # JSONL backends (claude, codex, pi) emit the exact native session file;
33
47
  # SQLite backends (crush, goose, opencode) emit a row-oriented JSON projection
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jarkkojs/goosedump",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "description": "Coding agent context data browser",
5
5
  "license": "Apache-2.0 AND LGPL-2.1-or-later",
6
6
  "homepage": "https://github.com/jarkkojs/goosedump#readme",
@@ -21,9 +21,9 @@
21
21
  "LICENSE-LGPL-2.1"
22
22
  ],
23
23
  "optionalDependencies": {
24
- "@jarkkojs/goosedump-darwin-arm64": "0.6.2",
25
- "@jarkkojs/goosedump-linux-x64": "0.6.2",
26
- "@jarkkojs/goosedump-win32-x64": "0.6.2"
24
+ "@jarkkojs/goosedump-darwin-arm64": "0.6.4",
25
+ "@jarkkojs/goosedump-linux-x64": "0.6.4",
26
+ "@jarkkojs/goosedump-win32-x64": "0.6.4"
27
27
  },
28
28
  "publishConfig": {
29
29
  "access": "public"