Assist in constructing algorithm correctness proofs
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill proof-assistant --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Proof Assistant?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-proof-assistant-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: proof-assistant
description: Assist in constructing algorithm correctness proofs
allowed-tools:
- Read
- Write
- Grep
- Glob
graph:
domains: [domain:computer-science]
specializations: [specialization:algorithms-optimization]
skillAreas: [skill-area:mathematical-reasoning, skill-area:dynamic-programming]
roles: [role:backend-engineer, role:computational-scientist]
---
# 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
```json
{
"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
```json
{
"type": "object",
"properties": {
"success": { "type": "boolean" },
"proof": { "type": "string" },
"structure": { "type": "array" },
"gaps": { "type": "array" },
"suggestions": { "type": "array" }
},
"required": ["success"]
}
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!