用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/parcadei/Continuous-Claude-v3 --skill channel-capacity命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | channel-capacity |
| description | Problem-solving strategies for channel capacity in information theory |
| allowed-tools | ["Bash","Read"] |
Use this skill when working on channel-capacity problems in information theory.
Mutual Information
scipy.stats.entropy(p) + scipy.stats.entropy(q) - joint_entropyChannel Model
Channel Capacity
Common Channels
| 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) |
Blahut-Arimoto Algorithm
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.