@jarkkojs/goosedump 0.6.3 → 0.6.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 +9 -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
 
@@ -33,6 +34,14 @@ goosedump delete goose:abc123
33
34
  goosedump delete 'goose:*'
34
35
  goosedump delete '*' --dry-run
35
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
+
36
45
  # Convert a context to another provider's native format with --output-format.
37
46
  # JSONL backends (claude, codex, pi) emit the exact native session file;
38
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.3",
3
+ "version": "0.6.5",
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.3",
25
- "@jarkkojs/goosedump-linux-x64": "0.6.3",
26
- "@jarkkojs/goosedump-win32-x64": "0.6.3"
24
+ "@jarkkojs/goosedump-darwin-arm64": "0.6.5",
25
+ "@jarkkojs/goosedump-linux-x64": "0.6.5",
26
+ "@jarkkojs/goosedump-win32-x64": "0.6.5"
27
27
  },
28
28
  "publishConfig": {
29
29
  "access": "public"