mirror of
https://github.com/JuliusBrussee/caveman.git
synced 2026-08-11 13:21:09 +02:00
- Move caveman-compress/ source (SKILL.md, scripts/, README.md, SECURITY.md) to skills/caveman-compress/. - Delete skills/compress/ — the CI-generated rename mirror that caused dual-source confusion. - Move plugins/caveman/skills/compress/ to plugins/caveman/skills/caveman-compress/. Plugin keeps the consolidated name; CI no longer rewrites the frontmatter. - Replace the two sed-heavy CI sync steps with one verbatim cp -r from source to plugin. - Update verify_repo.py, test_compress_safety.py, test_validate_inline.py, GEMINI.md, AGENTS.md, CONTRIBUTING.md, README.md, and the workflow paths to reference the new location. - Use Path.resolve().parents[N] for the benchmark.py repo-root walk now that the directory depth changed. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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"
|