@jarkkojs/goosedump 0.6.1 → 0.6.3
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 +21 -16
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -6,10 +6,10 @@ Crush, Gemini, Goose, OpenCode, and Pi. It builds on top of the ideas of
|
|
|
6
6
|
|
|
7
7
|
Features:
|
|
8
8
|
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* BM25 keyword ranking for natural queries.
|
|
9
|
+
* Structured JSON output on stdout, so you can render it however you like.
|
|
10
|
+
* BM25 keyword ranking (with scores) for natural queries.
|
|
12
11
|
* Glob matching for filtering messages.
|
|
12
|
+
* Format conversion: re-render any context in another provider's native format.
|
|
13
13
|
|
|
14
14
|
## Usage
|
|
15
15
|
|
|
@@ -18,27 +18,32 @@ Features:
|
|
|
18
18
|
goosedump list
|
|
19
19
|
goosedump list goose:*
|
|
20
20
|
|
|
21
|
-
# Show a full transcript
|
|
21
|
+
# Show a full transcript as structured goosedump JSON (default).
|
|
22
22
|
goosedump show goose:abc123
|
|
23
23
|
|
|
24
|
-
#
|
|
25
|
-
|
|
26
|
-
# SQLite backends (crush, goose, opencode) emit a row-oriented JSON projection
|
|
27
|
-
# of their tables that is straightforward to insert into the live store.
|
|
28
|
-
goosedump show claude:abc123 goose
|
|
29
|
-
|
|
30
|
-
# Filter or rank messages, optionally converting the matches too.
|
|
31
|
-
goosedump grep claude:abc123 "TODO" goose
|
|
24
|
+
# Rank or filter messages; search hits carry BM25 scores.
|
|
25
|
+
goosedump grep claude:abc123 "TODO"
|
|
32
26
|
goosedump search claude:abc123 "race condition" -p2
|
|
33
27
|
|
|
34
28
|
# Produce a compaction summary (always emitted in its own fixed schema).
|
|
35
29
|
goosedump compact goose:abc123
|
|
30
|
+
|
|
31
|
+
# Delete contexts matching a glob (same matching as list); --dry-run previews.
|
|
32
|
+
goosedump delete goose:abc123
|
|
33
|
+
goosedump delete 'goose:*'
|
|
34
|
+
goosedump delete '*' --dry-run
|
|
35
|
+
|
|
36
|
+
# Convert a context to another provider's native format with --output-format.
|
|
37
|
+
# JSONL backends (claude, codex, pi) emit the exact native session file;
|
|
38
|
+
# SQLite backends (crush, goose, opencode) emit a row-oriented JSON projection
|
|
39
|
+
# of their tables that is straightforward to insert into the live store.
|
|
40
|
+
goosedump show claude:abc123 --output-format goose
|
|
36
41
|
```
|
|
37
42
|
|
|
38
|
-
A converted context round-trips: the output re-reads through the
|
|
39
|
-
provider's reader to the same internal representation. Session metadata
|
|
40
|
-
internal representation does not carry (per-message timestamps, model
|
|
41
|
-
omitted or synthesized.
|
|
43
|
+
A natively converted context round-trips: the output re-reads through the
|
|
44
|
+
target provider's reader to the same internal representation. Session metadata
|
|
45
|
+
the internal representation does not carry (per-message timestamps, model
|
|
46
|
+
names) is omitted or synthesized.
|
|
42
47
|
|
|
43
48
|
## Build
|
|
44
49
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jarkkojs/goosedump",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
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.
|
|
25
|
-
"@jarkkojs/goosedump-linux-x64": "0.6.
|
|
26
|
-
"@jarkkojs/goosedump-win32-x64": "0.6.
|
|
24
|
+
"@jarkkojs/goosedump-darwin-arm64": "0.6.3",
|
|
25
|
+
"@jarkkojs/goosedump-linux-x64": "0.6.3",
|
|
26
|
+
"@jarkkojs/goosedump-win32-x64": "0.6.3"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|