@jarkkojs/goosedump 0.6.1 → 0.6.2

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 +16 -16
  2. 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
- * 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.
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,27 @@ Features:
18
18
  goosedump list
19
19
  goosedump list goose:*
20
20
 
21
- # Show a full transcript in the source provider's native format.
21
+ # Show a full transcript as structured goosedump JSON (default).
22
22
  goosedump show goose:abc123
23
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
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
+ # Convert a context to another provider's native format with --output-format.
32
+ # JSONL backends (claude, codex, pi) emit the exact native session file;
33
+ # SQLite backends (crush, goose, opencode) emit a row-oriented JSON projection
34
+ # of their tables that is straightforward to insert into the live store.
35
+ goosedump show claude:abc123 --output-format goose
36
36
  ```
37
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.
38
+ A natively converted context round-trips: the output re-reads through the
39
+ target provider's reader to the same internal representation. Session metadata
40
+ the internal representation does not carry (per-message timestamps, model
41
+ names) is omitted or synthesized.
42
42
 
43
43
  ## Build
44
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jarkkojs/goosedump",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
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.1",
25
- "@jarkkojs/goosedump-linux-x64": "0.6.1",
26
- "@jarkkojs/goosedump-win32-x64": "0.6.1"
24
+ "@jarkkojs/goosedump-darwin-arm64": "0.6.2",
25
+ "@jarkkojs/goosedump-linux-x64": "0.6.2",
26
+ "@jarkkojs/goosedump-win32-x64": "0.6.2"
27
27
  },
28
28
  "publishConfig": {
29
29
  "access": "public"