vibeeval/channel-capacity
Problem-solving strategies for channel capacity in information theory
npx skills add https://github.com/vibeeval/vibecosystem --skill channel-capacity
Use this skill when working on channel-capacity problems in information theory.
scipy.stats.entropy(p) + scipy.stats.entropy(q) - joint_entropy| Channel | Capacity |
|---------|----------|
| Binary Symmetric (BSC) | 1 - H(p) where p = crossover prob |
| Binary Erasure (BEC) | 1 - epsilon where epsilon = erasure prob |
| AWGN | 0.5 * log2(1 + SNR) |
z3_solve.py prove "capacity_upper_bound"uv run python -c "from scipy.stats import entropy; p = [0.5, 0.5]; q = [0.6, 0.4]; H_X = entropy(p, base=2); H_Y = entropy(q, base=2); print('H(X)=', H_X, 'H(Y)=', H_Y)"
uv run python -m runtime.harness scripts/sympy_compute.py simplify "1 + p*log(p, 2) + (1-p)*log(1-p, 2)"
uv run python -m runtime.harness scripts/z3_solve.py prove "I(X;Y) <= H(X)"
*From indexed textbooks:*
See .claude/skills/math-mode/SKILL.md for full tool documentation.
Take vibeeval/channel-capacity from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.