一键导入
sorry-checker
Check that no sorry placeholders exist in the codebase. Use after making changes or when asked to verify proof completeness.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check that no sorry placeholders exist in the codebase. Use after making changes or when asked to verify proof completeness.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run Aristotle automated theorem prover on Lean files to fill sorry placeholders. Use when you have a file with sorries that needs automated proof search. Handles API setup and result verification.
Guide for proving confluence of a rewriting system. Use when asked to prove Church-Rosser or confluence properties.
| name | sorry-checker |
| description | Check that no sorry placeholders exist in the codebase. Use after making changes or when asked to verify proof completeness. |
This skill checks that the codebase contains no sorry placeholders, which is a critical requirement for this project.
Run this command to find any sorries:
grep -r "sorry" Metatheory/ --include="*.lean"
Expected output: No matches (empty output).
Build the project to verify all proofs compile:
lake build
A successful build with no warnings about sorry confirms the codebase is complete.
Look at similar proofs nearby and mirror their style.
For difficult proofs, use the aristotle skill to get automated proof suggestions.
If a proof is stuck, break it into smaller pieces:
-- Instead of one complex proof
theorem big_theorem : ... := by
sorry
-- Extract helpers
lemma helper1 : ... := by
...
lemma helper2 : ... := by
...
theorem big_theorem : ... := by
apply helper1
apply helper2
sorry is NEVER acceptable in commits to this codebase.
All theorems must be fully proven before merging.