ccs-cloner 0.3.2 → 0.3.4
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 +6 -2
- package/dist/cli.js +17450 -26531
- package/package.json +8 -10
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ ccs-cloner creates a lean copy of a session by:
|
|
|
10
10
|
|
|
11
11
|
1. Removing tool calls from old turns while preserving recent ones
|
|
12
12
|
2. Truncating tool content in intermediate turns for gradual context reduction
|
|
13
|
-
3. Automatically removing thinking blocks when tools
|
|
13
|
+
3. Automatically removing thinking blocks when `--strip-tools` is used
|
|
14
14
|
|
|
15
15
|
The cloned session appears in `claude --resume` and can be continued with reduced context.
|
|
16
16
|
|
|
@@ -29,7 +29,7 @@ cd ccs-cloner
|
|
|
29
29
|
bun install && bun link
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
-
Requires Bun 1.0+ or Node.js
|
|
32
|
+
Requires Bun 1.0+ or Node.js 18+.
|
|
33
33
|
|
|
34
34
|
## Quick Start
|
|
35
35
|
|
|
@@ -456,6 +456,10 @@ src/
|
|
|
456
456
|
errors/ # Custom error classes
|
|
457
457
|
```
|
|
458
458
|
|
|
459
|
+
## Changelog
|
|
460
|
+
|
|
461
|
+
See [CHANGELOG.md](CHANGELOG.md) for version history.
|
|
462
|
+
|
|
459
463
|
## License
|
|
460
464
|
|
|
461
465
|
MIT
|