用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/majiayu000/claude-skill-registry --skill kolmogorov-compression命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
LLM token logprobs and calibration. Per-decision confidence, ECE, Brier, reliability diagrams, low-confidence triage.
Analyze LLM token logprobs and calibration. Use for per-decision confidence, ECE, Brier scores, reliability diagrams, and low-confidence triage.
回顾最近 N 天的 Claude Code 使用记录——扫描原始会话数据,按主题分组汇总"我都做了什么",并从个人操作系统视角输出模式、风险与增删建议。当用户说 /recap、"看看我这几天做了什么"、"回顾一下我最近的会话"、"这两天我用 claude 干了啥"、"活动回顾" 时使用。
基于 SOC 职业分类
正在显示 SKILL.md
| name | kolmogorov-compression |
| description | Kolmogorov complexity as the ultimate intelligence measure. Shortest |
| version | 1.0.0 |
"The Kolmogorov complexity of x is the length of the shortest program that outputs x." — Andrey Kolmogorov
Kolmogorov complexity K(x) = length of shortest program P where P() = x.
Intelligence = Compression: Finding short descriptions of data.
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
Use LLMs to approximate Kolmogorov complexity:
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)
return len(program.encode())
def intelligence_score(self, model, data: str) -> float:
"""
KoLMogorov-Test score.
Higher = better compression = more intelligent.
"""
program = model.compress(data)
ratio = len(program) / len(data)
return 1 - ratio # Higher = better
For proof P of theorem T:
K(T) ≈ min |P| over all proofs P
Short proofs = Simple theorems
Long proofs = Complex theorems (but still provable)
Gödel: Some true statements have K(T) = ∞ (unprovable)
Sutskever's Insight:
Compression = Prediction = Understanding = Intelligence
If you can compress x to K(x) bits:
- You understand x's structure
- You can predict x from the program
- You have a model of x
kolmogorov-compression (-1) ⊗ cognitive-superposition (0) ⊗ godel-machine (+1) = 0 ✓
kolmogorov-compression (-1) ⊗ turing-chemputer (0) ⊗ dna-origami (+1) = 0 ✓
kolmogorov-compression (-1) ⊗ solomonoff-induction (0) ⊗ information-capacity (+1) = 0 ✓
As Validator (-1), kolmogorov-compression:
| Speaker | Handle | Repository | Relevance |
|---|---|---|---|
| mr_phrazer | mrphrazer | msynth | MBA deobfuscation via program synthesis (compression-as-deobfuscation) |
| mr_phrazer | mrphrazer | Monocle | LLM-assisted binary analysis for complexity reduction |
| oddcoder | oddcoder | rair-core | RAIR - Radare in Rust for minimal description programs |
| condret | condret | r2ghidra | Decompilation as compression (binary → source) |
This skill connects to Software Design for Flexibility (Hanson & Sussman, 2021):
Concepts: eval, apply, interpreter, environment
kolmogorov-compression (○) + SDF.Ch5 (−) + [balancer] (+) = 0
Skill Trit: 0 (ERGODIC - coordination)
Evaluation interprets expressions. This skill processes or generates evaluable forms.