├── .claude-plugin └── marketplace.json ├── .gitignore ├── INSTALLATION.md ├── LICENSE ├── README.md ├── TESTING.md └── plugins ├── lean4-memories ├── .claude-plugin │ └── plugin.json ├── README.md └── skills │ └── lean4-memories │ ├── SKILL.md │ ├── references │ └── memory-patterns.md │ └── scripts │ └── memory_helper.py ├── lean4-subagents ├── .claude-plugin │ └── plugin.json ├── README.md └── agents │ ├── lean4-axiom-eliminator.md │ ├── lean4-proof-golfer.md │ ├── lean4-proof-repair.md │ ├── lean4-sorry-filler-deep.md │ └── lean4-sorry-filler.md └── lean4-theorem-proving ├── .claude-plugin └── plugin.json ├── COMMANDS.md ├── FUTURE-FEATURES.md ├── README.md ├── commands ├── analyze-sorries.md ├── build-lean.md ├── check-axioms.md ├── clean-warnings.md ├── fill-sorry.md ├── golf-proofs.md ├── repair-file.md ├── repair-goal.md ├── repair-interactive.md └── search-mathlib.md ├── config └── errorStrategies.yaml ├── docs └── lean4-memories-integration.md ├── hooks ├── bootstrap.sh └── hooks.json ├── scripts ├── README.md ├── TESTING.md ├── analyzeRepairLogs.py ├── analyze_let_usage.py ├── build_profile.sh ├── check_axioms.sh ├── check_axioms_inline.sh ├── count_tokens.py ├── dependency_graph.sh ├── find_golfable.py ├── find_instances.sh ├── find_usages.sh ├── minimize_imports.py ├── parseLeanErrors.py ├── pre_commit_hook.sh ├── proof_complexity.sh ├── proof_templates.sh ├── proposePatch.py ├── repairLoop.sh ├── search_mathlib.sh ├── simp_lemma_tester.sh ├── smart_search.sh ├── solverCascade.py ├── sorry_analyzer.py ├── suggest_tactics.sh └── unused_declarations.sh ├── skills └── lean4-theorem-proving │ ├── SKILL.md │ └── references │ ├── axiom-elimination.md │ ├── calc-patterns.md │ ├── compilation-errors.md │ ├── compiler-guided-repair.md │ ├── domain-patterns.md │ ├── instance-pollution.md │ ├── lean-lsp-server.md │ ├── lean-lsp-tools-api.md │ ├── lean-phrasebook.md │ ├── mathlib-guide.md │ ├── mathlib-style.md │ ├── measure-theory.md │ ├── performance-optimization.md │ ├── proof-golfing.md │ ├── proof-refactoring.md │ ├── sorry-filling.md │ ├── subagent-workflows.md │ └── tactics-reference.md └── tests └── repair-integration-test.sh /.claude-plugin/marketplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/.claude-plugin/marketplace.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/TESTING.md -------------------------------------------------------------------------------- /plugins/lean4-memories/.claude-plugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-memories/.claude-plugin/plugin.json -------------------------------------------------------------------------------- /plugins/lean4-memories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-memories/README.md -------------------------------------------------------------------------------- /plugins/lean4-memories/skills/lean4-memories/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-memories/skills/lean4-memories/SKILL.md -------------------------------------------------------------------------------- /plugins/lean4-memories/skills/lean4-memories/references/memory-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-memories/skills/lean4-memories/references/memory-patterns.md -------------------------------------------------------------------------------- /plugins/lean4-memories/skills/lean4-memories/scripts/memory_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-memories/skills/lean4-memories/scripts/memory_helper.py -------------------------------------------------------------------------------- /plugins/lean4-subagents/.claude-plugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-subagents/.claude-plugin/plugin.json -------------------------------------------------------------------------------- /plugins/lean4-subagents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-subagents/README.md -------------------------------------------------------------------------------- /plugins/lean4-subagents/agents/lean4-axiom-eliminator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-subagents/agents/lean4-axiom-eliminator.md -------------------------------------------------------------------------------- /plugins/lean4-subagents/agents/lean4-proof-golfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-subagents/agents/lean4-proof-golfer.md -------------------------------------------------------------------------------- /plugins/lean4-subagents/agents/lean4-proof-repair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-subagents/agents/lean4-proof-repair.md -------------------------------------------------------------------------------- /plugins/lean4-subagents/agents/lean4-sorry-filler-deep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-subagents/agents/lean4-sorry-filler-deep.md -------------------------------------------------------------------------------- /plugins/lean4-subagents/agents/lean4-sorry-filler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-subagents/agents/lean4-sorry-filler.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/.claude-plugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/.claude-plugin/plugin.json -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/COMMANDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/COMMANDS.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/FUTURE-FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/FUTURE-FEATURES.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/README.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/commands/analyze-sorries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/commands/analyze-sorries.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/commands/build-lean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/commands/build-lean.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/commands/check-axioms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/commands/check-axioms.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/commands/clean-warnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/commands/clean-warnings.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/commands/fill-sorry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/commands/fill-sorry.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/commands/golf-proofs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/commands/golf-proofs.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/commands/repair-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/commands/repair-file.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/commands/repair-goal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/commands/repair-goal.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/commands/repair-interactive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/commands/repair-interactive.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/commands/search-mathlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/commands/search-mathlib.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/config/errorStrategies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/config/errorStrategies.yaml -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/docs/lean4-memories-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/docs/lean4-memories-integration.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/hooks/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/hooks/bootstrap.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/hooks/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/hooks/hooks.json -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/README.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/TESTING.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/analyzeRepairLogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/analyzeRepairLogs.py -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/analyze_let_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/analyze_let_usage.py -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/build_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/build_profile.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/check_axioms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/check_axioms.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/check_axioms_inline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/check_axioms_inline.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/count_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/count_tokens.py -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/dependency_graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/dependency_graph.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/find_golfable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/find_golfable.py -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/find_instances.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/find_instances.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/find_usages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/find_usages.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/minimize_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/minimize_imports.py -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/parseLeanErrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/parseLeanErrors.py -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/pre_commit_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/pre_commit_hook.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/proof_complexity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/proof_complexity.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/proof_templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/proof_templates.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/proposePatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/proposePatch.py -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/repairLoop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/repairLoop.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/search_mathlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/search_mathlib.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/simp_lemma_tester.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/simp_lemma_tester.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/smart_search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/smart_search.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/solverCascade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/solverCascade.py -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/sorry_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/sorry_analyzer.py -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/suggest_tactics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/suggest_tactics.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/scripts/unused_declarations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/scripts/unused_declarations.sh -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/SKILL.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/axiom-elimination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/axiom-elimination.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/calc-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/calc-patterns.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/compilation-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/compilation-errors.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/compiler-guided-repair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/compiler-guided-repair.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/domain-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/domain-patterns.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/instance-pollution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/instance-pollution.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/lean-lsp-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/lean-lsp-server.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/lean-lsp-tools-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/lean-lsp-tools-api.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/lean-phrasebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/lean-phrasebook.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/mathlib-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/mathlib-guide.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/mathlib-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/mathlib-style.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/measure-theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/measure-theory.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/performance-optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/performance-optimization.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/proof-golfing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/proof-golfing.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/proof-refactoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/proof-refactoring.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/sorry-filling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/sorry-filling.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/subagent-workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/subagent-workflows.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/tactics-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/skills/lean4-theorem-proving/references/tactics-reference.md -------------------------------------------------------------------------------- /plugins/lean4-theorem-proving/tests/repair-integration-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cameronfreer/lean4-skills/HEAD/plugins/lean4-theorem-proving/tests/repair-integration-test.sh --------------------------------------------------------------------------------