スキル一覧に戻る
shanev

unslopify

by shanev

unslopify, decomplect, and friends.

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

SKILL.md


name: unslopify description: Tactical code cleanup focusing on type strictness, single responsibility, fail-fast patterns, and DRY. Detects sloppy code, workarounds, silent failures, god classes, and duplication. Use for quick code quality checks before committing or during code review.

Unslopify

Tactical code cleanup focused on immediate quality issues.

Usage

/unslopify                # Run all 4 analyzers in parallel
/unslopify --types        # Type strictness only
/unslopify --srp          # Single responsibility only
/unslopify --fail-fast    # Fail-fast only
/unslopify --dry          # DRY only

Analyzers

AnalyzerQuestion
type-strictness-analyzerAre types as strong as possible?
srp-analyzerDoes each unit have one job?
fail-fast-analyzerDo errors surface immediately?
dry-analyzerIs there duplicated code?

What's "Sloppy"?

SloppyClean
any, interface{}, unwrap()Strong domain types
God classes, 500-line functionsFocused, single-purpose
catch (e) { } swallowedExplicit error handling
// HACK: commentsFix the root cause
Silent fallbacksFail fast, fail loud
Copy-pasted code blocksExtracted helpers/utilities

When to Use

  • Quick code review
  • Before committing
  • Cleaning up tech debt
  • Checking for obvious issues

Supported Languages

  • TypeScript / JavaScript
  • Go
  • Rust

Reference Documentation

スコア

総合スコア

55/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
言語

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

0/5
タグ

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

0/5

レビュー

💬

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