在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
$ git log --oneline --stat
stars:3,717
forks:286
updated:2026年1月13日 21:44
SKILL.md
[HINT] 下载包含 SKILL.md 和所有相关文件的完整技能目录
| name | proof-theory |
| description | Problem-solving strategies for proof theory in mathematical logic |
| allowed-tools | ["Bash","Read"] |
Use this skill when working on proof-theory problems in mathematical logic.
Proof Strategy Selection
Structural Induction
z3_solve.py prove "induction_principle"Cut Elimination
Completeness/Soundness Check
z3_solve.py prove "soundness_theorem"Proof Verification
math_scratchpad.py verify "proof_steps"uv run python -m runtime.harness scripts/cc_math/z3_solve.py prove "P(0)"
uv run python -m runtime.harness scripts/cc_math/z3_solve.py prove "ForAll([n], Implies(P(n), P(n+1)))"
uv run python -m runtime.harness scripts/cc_math/z3_solve.py prove "Implies(derivable(phi), valid(phi))"
uv run python -m runtime.harness scripts/cc_math/math_scratchpad.py verify "proof_structure"
See .claude/skills/math-mode/SKILL.md for full tool documentation.