kolmogorov-compression
Kolmogorov complexity as the ultimate intelligence measure. Shortest
npx skills add majiayu000/claude-skill-registry --skill kolmogorov-compression --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Kolmogorov Compression Skill > *"The Kolmogorov complexity of x is the length of the shortest program that outputs x."* > — Andrey Kolmogorov ## Overview **Kolmogorov complexity** K(x) = length of shortest program P where P() = x. **Intelligence = Compression**: Finding short descriptions of data. ## Core Concept ```latex K(x) = min { |P| : U(P) = x } Where: U = Universal Turing Machine P = program (binary string) |P| = length of P Properties: - K(x) ≤ |x| + O(1) (trivial: print x) - K(x) is uncomputable (halting problem) - K(x|y) = conditional complexity given y ``` ## The KoLMogorov-Test (2025) Use LLMs to approximate Kolmogorov complexity: ```python class KolmogorovCompressor: """ Approximate K(x) via code generation. """ def __init__(self, llm): self.llm = llm def compress(self, data: str) -> str: """Generate shortest program that outputs data.""" prompt = f""" Generate the shortest Python program that prints exactly: {data[:100]}... The program must output EXACTLY this string. Make it as SHORT as possible. """ program = self.llm.generate(prompt) return self.extract_code(program) def complexity(self, data: str) -> int: """Estimate K(data).""" program = self.compress(data) ret
- Overview
- Core Concept
- The KoLMogorov-Test (2025)
- Connection to Theorem Proving
- End-of-Skill Interface
- Integration with Sutskever's Thesis
- GF(3) Triads
- References
- r2con Speaker Resources
- SDF Interleaving
- Primary Chapter: 5. Evaluation
- GF(3) Balanced Triad
- Connection Pattern
What does the kolmogorov-compression skill do?
Kolmogorov complexity as the ultimate intelligence measure. Shortest
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill kolmogorov-compression --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
