@jarkkojs/goosedump 0.6.0 → 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 +32 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -6,9 +6,39 @@ Crush, Gemini, Goose, OpenCode, and Pi. It builds on top of the ideas of
6
6
 
7
7
  Features:
8
8
 
9
- * JSON output on stdout, so you can render it however you like.
10
- * 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.
11
11
  * Glob matching for filtering messages.
12
+ * Format conversion: re-render any context in another provider's native format.
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 as structured goosedump JSON (default).
22
+ goosedump show goose:abc123
23
+
24
+ # Rank or filter messages; search hits carry BM25 scores.
25
+ goosedump grep claude:abc123 "TODO"
26
+ goosedump search claude:abc123 "race condition" -p2
27
+
28
+ # Produce a compaction summary (always emitted in its own fixed schema).
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
+ ```
37
+
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.
12
42
 
13
43
  ## Build
14
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jarkkojs/goosedump",
3
- "version": "0.6.0",
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.0",
25
- "@jarkkojs/goosedump-linux-x64": "0.6.0",
26
- "@jarkkojs/goosedump-win32-x64": "0.6.0"
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"