mirror of
https://github.com/JuliusBrussee/caveman.git
synced 2026-08-11 13:21:09 +02:00
Gemini CLI fails to load skills through symlinks. Replace symlinks in skills/compress/ with actual file copies and update CI to keep them in sync. Remove redundant root compress/ directory.
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"
|