agentsclimarketplace

Proof assistant

Skill a5c-ai/babysitter/library/specializations/algorithms-optimization/skills/proof-assistant

Assist in constructing algorithm correctness proofsFrom its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill proof-assistant

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.9 KB, 388 tokens by cl100k_base, as published. Nobody here has run it

Proof Assistant Skill

Purpose

Assist in constructing formal correctness proofs for algorithms using standard proof techniques.

Capabilities

  • Proof structure templates (induction, contradiction, etc.)
  • Step-by-step proof guidance
  • Termination argument generation
  • Proof review and validation
  • Identify proof gaps

Target Processes

  • correctness-proof-testing
  • algorithm-implementation

Proof Techniques

Mathematical Induction

  • Base case identification
  • Inductive hypothesis formulation
  • Inductive step construction

Proof by Contradiction

  • Assumption negation
  • Logical derivation
  • Contradiction identification

Loop Invariant Proofs

  • Invariant specification
  • Three-part proof (init, maintenance, termination)

Structural Induction

  • For recursive data structures
  • Base case (leaf/empty)
  • Inductive case (composite)

Input Schema

{
  "type": "object",
  "properties": {
    "algorithm": { "type": "string" },
    "code": { "type": "string" },
    "proofType": {
      "type": "string",
      "enum": ["induction", "contradiction", "invariant", "structural"]
    },
    "claim": { "type": "string" },
    "partialProof": { "type": "string" }
  },
  "required": ["algorithm", "claim"]
}

Output Schema

{
  "type": "object",
  "properties": {
    "success": { "type": "boolean" },
    "proof": { "type": "string" },
    "structure": { "type": "array" },
    "gaps": { "type": "array" },
    "suggestions": { "type": "array" }
  },
  "required": ["success"]
}

What ships with it: 1 file

553 B alongside SKILL.md

Keep looking

Skills are one crate of 326,059. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.