Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기propositional-logic
Problem-solving strategies for propositional logic in mathematical logic
스타3,803
포크296
업데이트2026년 1월 10일 01:54
SKILL.md
readonly메뉴
Problem-solving strategies for propositional logic in mathematical logic
Create git commits with user approval and no Claude attribution
Create or update continuity ledger for state preservation across clears
Create handoff document for transferring work to another session
Generate comprehensive PR descriptions following repository templates
Deep interview process to transform vague ideas into detailed specs. Works for technical and non-technical users.
Search Mathlib for lemmas by type signature pattern
| name | propositional-logic |
| description | Problem-solving strategies for propositional logic in mathematical logic |
| allowed-tools | ["Bash","Read"] |
Use this skill when working on propositional-logic problems in mathematical logic.
Identify Formula Structure
z3_solve.py sat "formula" to check satisfiabilityTruth Table Method
sympy_compute.py truthtable "p & (p -> q) -> q"Natural Deduction
z3_solve.py prove "Implies(And(p, Implies(p,q)), q)"Semantic Tableaux
uv run python -m runtime.harness scripts/z3_solve.py sat "And(p, Implies(p, q), Not(q))"
uv run python -m runtime.harness scripts/z3_solve.py prove "Implies(And(p, Implies(p, q)), q)"
uv run python -m runtime.harness scripts/sympy_compute.py truthtable "p & (p >> q) >> q"
uv run python -m runtime.harness scripts/z3_solve.py prove "Implies(And(p, Implies(p,q)), q)"
See .claude/skills/math-mode/SKILL.md for full tool documentation.