@jarkkojs/goosedump 0.6.6 → 0.7.0
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 +8 -50
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
# goosedump
|
|
2
2
|
|
|
3
|
-
`goosedump` is a coding agent context data browser. It
|
|
4
|
-
|
|
5
|
-
[`lllyasviel/VCC`](https://github.com/lllyasviel/VCC).
|
|
3
|
+
`goosedump` is a coding agent context data browser. It builds on top of the
|
|
4
|
+
ideas of [`lllyasviel/VCC`](https://github.com/lllyasviel/VCC).
|
|
6
5
|
|
|
7
6
|
Features:
|
|
8
7
|
|
|
@@ -14,56 +13,15 @@ Features:
|
|
|
14
13
|
|
|
15
14
|
## Usage
|
|
16
15
|
|
|
17
|
-
|
|
18
|
-
# List contexts across all providers (optionally filtered by a glob).
|
|
19
|
-
goosedump list
|
|
20
|
-
goosedump list goose:*
|
|
21
|
-
|
|
22
|
-
# Show a full transcript as structured goosedump JSON (default).
|
|
23
|
-
goosedump show goose:abc123
|
|
24
|
-
|
|
25
|
-
# Rank or filter messages; search hits carry BM25 scores.
|
|
26
|
-
goosedump grep claude:abc123 "TODO"
|
|
27
|
-
goosedump search claude:abc123 "race condition" -p2
|
|
28
|
-
|
|
29
|
-
# Produce a compaction summary (always emitted in its own fixed schema).
|
|
30
|
-
goosedump compact goose:abc123
|
|
31
|
-
|
|
32
|
-
# Delete contexts matching a glob (same matching as list); --dry-run previews.
|
|
33
|
-
goosedump delete goose:abc123
|
|
34
|
-
goosedump delete 'goose:*'
|
|
35
|
-
goosedump delete '*' --dry-run
|
|
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
|
-
|
|
45
|
-
# Convert a context to another provider's native format with --output-format.
|
|
46
|
-
# JSONL backends (claude, codex, pi) emit the exact native session file;
|
|
47
|
-
# SQLite backends (crush, goose, opencode) emit a row-oriented JSON projection
|
|
48
|
-
# of their tables that is straightforward to insert into the live store.
|
|
49
|
-
goosedump show claude:abc123 --output-format goose
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
A natively converted context round-trips: the output re-reads through the
|
|
53
|
-
target provider's reader to the same internal representation. Session metadata
|
|
54
|
-
the internal representation does not carry (per-message timestamps, model
|
|
55
|
-
names) is omitted or synthesized.
|
|
16
|
+
The user guide is available at [`man/man1/goosedump.1`](man/man1/goosedump.1)
|
|
56
17
|
|
|
57
18
|
## Build
|
|
58
19
|
|
|
59
|
-
|
|
60
|
-
cargo
|
|
61
|
-
cargo test
|
|
62
|
-
```
|
|
20
|
+
cargo build
|
|
21
|
+
cargo test
|
|
63
22
|
|
|
64
23
|
## Licensing
|
|
65
24
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
GitHub repository tag that matches the package version.
|
|
25
|
+
`goosedump` is licensed under `LGPL-2.1-or-later`.
|
|
26
|
+
|
|
27
|
+
The npm wrapper is licensed under `Apache-2.0`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jarkkojs/goosedump",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
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.7.0",
|
|
25
|
+
"@jarkkojs/goosedump-linux-x64": "0.7.0",
|
|
26
|
+
"@jarkkojs/goosedump-win32-x64": "0.7.0"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|