goosedump-0.6.5 is not a library.
goosedump
goosedump is a coding agent context data browser. It supports Claude, Codex,
Crush, Gemini, Goose, OpenCode, and Pi. It builds on top of the ideas of
lllyasviel/VCC.
Features:
- Structured JSON output on stdout, so you can render it however you like.
- BM25 keyword ranking (with scores) for natural queries.
- Glob matching for filtering messages.
- Format conversion: re-render any context in another provider's native format.
- Import contexts into another provider's store (with
delete, a "move").
Usage
# List contexts across all providers (optionally filtered by a glob).
# Show a full transcript as structured goosedump JSON (default).
# Rank or filter messages; search hits carry BM25 scores.
# Produce a compaction summary (always emitted in its own fixed schema).
# Delete contexts matching a glob (same matching as list); --dry-run previews.
# Import contexts matching a glob (same matching as list) into a provider,
# converting each to the destination's native on-disk shape. A fresh
# destination-native id is assigned; sessions already present in the
# destination (same provider, or matching content) are silently skipped, so
# re-running is a no-op. Import then delete moves a session between providers.
&&
# Convert a context to another provider's native format with --output-format.
# JSONL backends (claude, codex, pi) emit the exact native session file;
# SQLite backends (crush, goose, opencode) emit a row-oriented JSON projection
# of their tables that is straightforward to insert into the live store.
A natively converted context round-trips: the output re-reads through the target provider's reader to the same internal representation. Session metadata the internal representation does not carry (per-message timestamps, model names) is omitted or synthesized.
Build
Licensing
The JavaScript npm wrapper is licensed under Apache-2.0. The Rust source and
native binaries are licensed under LGPL-2.1-or-later.
Corresponding source for each published native binary is available from the
GitHub repository tag that matches the package version.