スキル一覧に戻る
Arthur742Ramos

sorry-checker

by Arthur742Ramos

1🍴 0📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: sorry-checker description: Check that no sorry placeholders exist in the codebase. Use after making changes or when asked to verify proof completeness.

Verify No Sorry

This skill checks that the codebase contains no sorry placeholders, which is a critical requirement for this project.

Quick Check

Run this command to find any sorries:

grep -r "sorry" Metatheory/ --include="*.lean"

Expected output: No matches (empty output).

Full Verification

Build the project to verify all proofs compile:

lake build

A successful build with no warnings about sorry confirms the codebase is complete.

What to Do If Sorries Are Found

Option 1: Complete the Proof Manually

Look at similar proofs nearby and mirror their style.

Option 2: Use Aristotle

For difficult proofs, use the aristotle skill to get automated proof suggestions.

Option 3: Extract Helper Lemmas

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

Project Policy

sorry is NEVER acceptable in commits to this codebase.

All theorems must be fully proven before merging.

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です