prove
SolidFormal theorem proving with research, testing, and verification phases
AI & Automation 3,811 stars
295 forks Updated 4 months ago MIT
Install
Quality Score: 89/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# /prove - Machine-Verified Proofs (5-Phase Workflow)
**For mathematicians who want verified proofs without learning Lean syntax.**
## Prerequisites
Before using this skill, check Lean4 is installed:
```bash
# Check if lake is available
command -v lake &>/dev/null && echo "Lean4 installed" || echo "Lean4 NOT installed"
```
**If not installed:**
```bash
# Install elan (Lean version manager)
curl https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh -sSf | sh
# Restart shell, then verify
lake --version
```
First run of `/prove` will download Mathlib (~2GB) via `lake build`.
## Usage
```
/prove every group homomorphism preserves identity
/prove Monsky's theorem
/prove continuous functions on compact sets are uniformly continuous
```
## The 5-Phase Workflow
```
┌─────────────────────────────────────────────────────────────┐
│ 📚 RESEARCH → 🏗️ DESIGN → 🧪 TEST → ⚙️ IMPLEMENT → ✅ VERIFY │
└─────────────────────────────────────────────────────────────┘
```
### Phase 1: RESEARCH (before any Lean)
**Goal:** Understand if/how this can be formalized.
1. **Search Mathlib with Loogle** (PRIMARY - type-aware search)
```bash
# Use loogle for type signature search - finds lemmas by shape
loogle-search "pattern_here"
# Examples:
loogle-search "Nontrivial _ ↔ _" # Find Nontrivial lemmas
loogle-search "(?a → ?b) → List ?a → List ?b" # Map-like functions
loogle-search "IsCyclic, center" # Multiple concepts
```
**Q...
Details
- Author
- parcadei
- Repository
- parcadei/Continuous-Claude-v3
- Created
- 5 months ago
- Last Updated
- 4 months ago
- Language
- Python
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
prove
Formal theorem proving with research, testing, and verification phases
501 Updated 2 days ago
vibeeval AI & Automation Solid
lean-proof-assistant
Interface with Lean 4 proof assistant for formal theorem verification
1,319 Updated today
a5c-ai AI & Automation Listed
proof-theory
Problem-solving strategies for proof theory in mathematical logic
3,811 Updated 4 months ago
parcadei