@jarkkojs/goosedump 0.5.2 → 0.6.1
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 +31 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -6,10 +6,40 @@ Crush, Gemini, Goose, OpenCode, and Pi. It builds on top of the ideas of
|
|
|
6
6
|
|
|
7
7
|
Features:
|
|
8
8
|
|
|
9
|
-
*
|
|
9
|
+
* Native-format output on stdout, in each coding agent's own session shape.
|
|
10
|
+
* Format conversion: re-render any context in another provider's native format.
|
|
10
11
|
* BM25 keyword ranking for natural queries.
|
|
11
12
|
* Glob matching for filtering messages.
|
|
12
13
|
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```sh
|
|
17
|
+
# List contexts across all providers (optionally filtered by a glob).
|
|
18
|
+
goosedump list
|
|
19
|
+
goosedump list goose:*
|
|
20
|
+
|
|
21
|
+
# Show a full transcript in the source provider's native format.
|
|
22
|
+
goosedump show goose:abc123
|
|
23
|
+
|
|
24
|
+
# Convert it to another provider's native format by appending a target format.
|
|
25
|
+
# JSONL backends (claude, codex, pi) emit the exact native session file;
|
|
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
|
|
32
|
+
goosedump search claude:abc123 "race condition" -p2
|
|
33
|
+
|
|
34
|
+
# Produce a compaction summary (always emitted in its own fixed schema).
|
|
35
|
+
goosedump compact goose:abc123
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
A converted context round-trips: the output re-reads through the target
|
|
39
|
+
provider's reader to the same internal representation. Session metadata the
|
|
40
|
+
internal representation does not carry (per-message timestamps, model names) is
|
|
41
|
+
omitted or synthesized.
|
|
42
|
+
|
|
13
43
|
## Build
|
|
14
44
|
|
|
15
45
|
```sh
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jarkkojs/goosedump",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.1",
|
|
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.
|
|
25
|
-
"@jarkkojs/goosedump-linux-x64": "0.
|
|
26
|
-
"@jarkkojs/goosedump-win32-x64": "0.
|
|
24
|
+
"@jarkkojs/goosedump-darwin-arm64": "0.6.1",
|
|
25
|
+
"@jarkkojs/goosedump-linux-x64": "0.6.1",
|
|
26
|
+
"@jarkkojs/goosedump-win32-x64": "0.6.1"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|