@brandry/claude-jsonl-compressor 1.0.0-rc.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/CHANGELOG.md +27 -0
- package/LICENSE +674 -0
- package/NOTICE +8 -0
- package/README.md +593 -0
- package/SKILL.md +340 -0
- package/agents/openai.yaml +7 -0
- package/bin/claude-jsonl-compressor.cjs +4 -0
- package/bin/claude-jsonl-repair-read-pages.cjs +4 -0
- package/bin/run-python.cjs +77 -0
- package/config/importance_words.json +863 -0
- package/config/topic_patterns.json +608 -0
- package/package.json +60 -0
- package/references/claude-jsonl-compression-format.md +500 -0
- package/scripts/claude_session_tools.py +215 -0
- package/scripts/compress_claude_jsonl.py +7652 -0
- package/scripts/repair_claude_jsonl.py +605 -0
- package/templates/summary_template_en.md +78 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
Notable public changes are recorded here. This project follows Semantic Versioning.
|
|
4
|
+
|
|
5
|
+
## [1.0.0-rc.1] - 2026-07-28
|
|
6
|
+
|
|
7
|
+
Initial public release candidate.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Source-anchored, model-assisted semantic compression for one Claude Code JSONL session.
|
|
12
|
+
- Strict active-chain isolation that excludes rewound and inactive branches.
|
|
13
|
+
- Recent raw conversation retention and correlated file-history snapshots for rewind.
|
|
14
|
+
- Repeated compression, including explicit prior-summary verbatim preservation.
|
|
15
|
+
- Transactional live-session backup, replacement, validation, and recovery handling.
|
|
16
|
+
- Independent byte-preserving repair for historical `Read.pages` compatibility failures.
|
|
17
|
+
- Scoped npm packaging with two zero-dependency command wrappers.
|
|
18
|
+
- Anonymous regression coverage for topology, semantic evidence, transactions, repair, and packaging.
|
|
19
|
+
|
|
20
|
+
### Release Notes
|
|
21
|
+
|
|
22
|
+
- Internal engine: `v10`; model-pack schema: `v11`.
|
|
23
|
+
- The JSONL rules are based on observed Claude Code behavior, not a stable Anthropic storage API.
|
|
24
|
+
- Live replacement handles one closed session at a time and requires Python 3.10 or newer.
|
|
25
|
+
- Parent-directory durability is best effort where the platform does not support directory fsync.
|
|
26
|
+
|
|
27
|
+
[1.0.0-rc.1]: https://github.com/brandrylabs/claude-jsonl-compressor/releases/tag/v1.0.0-rc.1
|