Agent skill

kolmogorov-compression

Kolmogorov complexity as the ultimate intelligence measure. Shortest

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill kolmogorov-compression --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Version: 1.0.0
Path: skills/ai-ml/kolmogorov-compression/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. Core Concept
  3. The KoLMogorov-Test (2025)
  4. Connection to Theorem Proving
  5. End-of-Skill Interface
  6. Integration with Sutskever's Thesis
  7. GF(3) Triads
  8. References
  9. r2con Speaker Resources
  10. SDF Interleaving
  11. Primary Chapter: 5. Evaluation
  12. GF(3) Balanced Triad
  13. Connection Pattern
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going