Claude-skill-registry logic

Master formal and informal logic - valid reasoning, fallacies, paradoxes. Use for: argument analysis, validity, soundness, logical form, fallacies, paradoxes. Triggers: 'valid', 'validity', 'fallacy', 'premise', 'conclusion', 'modus ponens', 'modus tollens', 'paradox', 'logical', 'syllogism', 'deduction', 'induction', 'inference', 'argument form', 'soundness', 'entailment', 'contradiction'.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/logic" ~/.claude/skills/majiayu000-claude-skill-registry-logic && rm -rf "$T"
manifest: skills/data/logic/SKILL.md
source content

Logic Skill

Master the principles of valid reasoning: formal logic, informal logic, fallacy detection, and paradox analysis.

Fundamentals

Basic Concepts

TermDefinition
ArgumentPremises + Conclusion
PremiseStatement offered as support
ConclusionStatement being supported
ValidConclusion follows from premises
SoundValid + true premises
CogentStrong inductive + true premises

Validity vs. Soundness

VALIDITY: If premises true, conclusion must be true
          (Logical form preserves truth)

SOUNDNESS: Valid + Actually true premises
           (Guarantees true conclusion)

EXAMPLE:
All cats are mammals.     (True)
All mammals are animals.  (True)
∴ All cats are animals.   (True) → SOUND

All fish are mammals.     (False)
All mammals can fly.      (False)
∴ All fish can fly.       (False) → VALID but not SOUND

Propositional Logic

Connectives

SymbolNameMeaning
¬NegationNot P
ConjunctionP and Q
DisjunctionP or Q
ConditionalIf P then Q
BiconditionalP iff Q

Valid Argument Forms

MODUS PONENS               MODUS TOLLENS
P → Q                      P → Q
P                          ¬Q
─────                      ─────
∴ Q                        ∴ ¬P

HYPOTHETICAL SYLLOGISM     DISJUNCTIVE SYLLOGISM
P → Q                      P ∨ Q
Q → R                      ¬P
─────                      ─────
∴ P → R                    ∴ Q

CONSTRUCTIVE DILEMMA       REDUCTIO AD ABSURDUM
P → Q                      Assume P
R → S                      ...
P ∨ R                      Derive contradiction
─────                      ─────
∴ Q ∨ S                    ∴ ¬P

Invalid Forms (Fallacies)

AFFIRMING THE CONSEQUENT   DENYING THE ANTECEDENT
P → Q                      P → Q
Q                          ¬P
─────                      ─────
∴ P ✗ INVALID              ∴ ¬Q ✗ INVALID

Predicate Logic

Quantifiers

SymbolNameMeaning
∀xUniversalFor all x
∃xExistentialThere exists x

Valid Inferences

UNIVERSAL INSTANTIATION    EXISTENTIAL GENERALIZATION
∀x(Fx)                     Fa
─────                      ─────
∴ Fa                       ∴ ∃x(Fx)

UNIVERSAL GENERALIZATION   EXISTENTIAL INSTANTIATION
(arbitrary a) Fa           ∃x(Fx)
─────                      ─────
∴ ∀x(Fx)                   ∴ Fa (for new constant a)

Informal Fallacies

Fallacies of Relevance

FallacyDescriptionExample
Ad hominemAttack the person"You're wrong because you're stupid"
Appeal to authorityIrrelevant authority"A celebrity says X"
Appeal to emotionManipulate feelingsFear-mongering
Red herringChange subjectDiverting attention
Straw manMisrepresent argumentAttack weaker version

Fallacies of Presumption

FallacyDescriptionExample
Begging the questionAssume conclusionCircular reasoning
False dilemmaOnly two options"With us or against us"
Hasty generalizationSmall sample"Two Xs did Y, so all Xs"
Slippery slopeUnsupported chain"A leads to Z inevitably"

Fallacies of Ambiguity

FallacyDescriptionExample
EquivocationShifting meaning"Light" (weight/illumination)
AmphibolyGrammatical ambiguityHeadlines
CompositionParts → whole"Atoms invisible ∴ tables invisible"
DivisionWhole → parts"Team good ∴ each player good"

Paradoxes

Liar Paradox

"This sentence is false"

If true → It says it's false → False
If false → It says it's false, which is true → True

RESPONSES:
├── Tarskian hierarchy: No self-reference
├── Paraconsistent logic: Accept contradiction
├── Gapping: Sentence is neither true nor false
└── Contextualism: Truth conditions shift

Sorites Paradox (Heap)

1 grain is not a heap.
If n grains is not a heap, n+1 grains is not a heap.
∴ 1,000,000 grains is not a heap. ✗

RESPONSES:
├── Epistemicism: Sharp boundary, we don't know where
├── Supervaluationism: True under all precisifications
├── Degree theory: "Heap" admits degrees
└── Contextualism: Boundary shifts with context

Russell's Paradox

R = {x : x ∉ x} (Set of all sets not members of themselves)

Is R ∈ R?
If yes → By definition, R ∉ R
If no → By definition, R ∈ R

RESPONSE: Type theory, set-theoretic axioms preventing
          unrestricted comprehension

Modal Logic

Basic Modal Operators

SymbolMeaning
□PNecessarily P
◊PPossibly P

Relations

□P ↔ ¬◊¬P   (Necessary = not possibly not)
◊P ↔ ¬□¬P   (Possible = not necessarily not)

Systems

SystemCharacteristic Axiom
KBasic modal logic
T□P → P (Necessity implies truth)
S4□P → □□P (Iterated necessity)
S5◊P → □◊P (Possibility is necessary)

Argument Analysis Protocol

ANALYZING ARGUMENTS
═══════════════════

1. IDENTIFY CONCLUSION
   What is being argued for?

2. IDENTIFY PREMISES
   What reasons are given?

3. SUPPLY HIDDEN PREMISES
   What's assumed but not stated?

4. EVALUATE VALIDITY
   Does conclusion follow?

5. EVALUATE SOUNDNESS
   Are premises true?

6. CHECK FOR FALLACIES
   Any reasoning errors?

Key Vocabulary

TermMeaning
EntailmentP logically implies Q
TautologyTrue under all interpretations
ContradictionFalse under all interpretations
ContingentNeither tautology nor contradiction
ConsistentCan all be true together
InferenceMoving from premises to conclusion
DeductionConclusion follows necessarily
InductionConclusion follows probably

Integration with Repository

Related Skills

  • argument-mapping
    : Visualizing argument structure
  • thought-experiments
    : Logical analysis of scenarios