mirror of
https://github.com/SeriousBug/dotfiles
synced 2026-07-27 12:35:37 -05:00
Vendored the caveman-compress skill from JuliusBrussee/caveman and renamed it to compact-file. Compresses natural language memory files (CLAUDE.md, todos) to save input tokens; preserves code, URLs, paths, and structure, with a verified out-of-tree backup. Claude-Session: https://claude.ai/code/session_01B8oPygSSYuomdr8pKxLwko
10 lines
224 B
Python
10 lines
224 B
Python
"""Caveman compress scripts.
|
|
|
|
This package provides tools to compress natural language markdown files
|
|
into caveman format to save input tokens.
|
|
"""
|
|
|
|
__all__ = ["cli", "compress", "detect", "validate"]
|
|
|
|
__version__ = "1.0.0"
|