← スキル一覧に戻る

deslop
by dtbuchholz
⭐ 0🍴 0📅 2026年1月22日
SKILL.md
name: deslop description: Remove AI-generated code slop from recent changes. Checks the diff against main and removes unnecessary comments, defensive code, type hacks, and other patterns inconsistent with human-written code.
Remove AI Code Slop
Check the diff against main and remove all AI-generated slop introduced in this branch.
What to Remove
Unnecessary Comments
- Comments explaining obvious code that a human wouldn't add
- Comments inconsistent with the rest of the file's style
- Inline comments that just restate what the code does
- Section dividers or decorative comments not used elsewhere in the codebase
Over-Defensive Code
- Extra try/catch blocks that are abnormal for that area of the codebase
- Defensive null/undefined checks on trusted/validated codepaths
- Redundant validation that's already handled upstream
- Error handling that swallows errors silently
Type Hacks
- Casts to
anyto work around type issues - Type assertions (
as Type) that hide real problems @ts-ignoreor@ts-expect-errorcomments- Overly permissive types (
any,unknown,object) where specific types exist
Style Inconsistencies
- Naming conventions that don't match the file
- Different formatting patterns
- Abstractions or patterns not used elsewhere in the codebase
- Over-engineered solutions for simple problems
Process
- Get the diff:
git diff main...HEAD - For each changed file, compare the new code against:
- The rest of that same file
- Similar files in the codebase
- Remove patterns that don't match the existing style
- Keep changes minimal—only remove clear slop
Output
Report with only a 1-3 sentence summary of what you changed. No lengthy explanations.
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です