Skip to content

Instantly share code, notes, and snippets.

@stevenwu
stevenwu / EXAMPLES.md
Created April 8, 2026 05:49
Unslopify - Claude Code skill for tactical code cleanup (type strictness, SRP, fail-fast, DRY)

Unslopify Examples

Example 1: API Route Handler

Input (git diff)

// app/api/users/route.ts (changed)
+ import { db } from '@/lib/db';
+
@stevenwu
stevenwu / EXAMPLES.md
Created April 7, 2026 06:52
Decomplect: Architectural code analysis skill for Claude Code — Rich Hickey simplicity, FCIS, coupling (TypeScript/JavaScript)

Decomplect Skill Examples

Quick Start

Ask Claude to analyze your code changes:

"Review my staged changes for decomplection"
"Would Rich Hickey approve of this code?"
"Check my PR for simplicity issues"

Keybase proof

I hereby claim:

  • I am stevenwu on github.
  • I am stevenwu (https://keybase.io/stevenwu) on keybase.
  • I have a public key ASBtKROF2NFKyXVtvIDWopa6_yB8lux-y-j4F2VIU6-i1Qo

To claim this, I am signing this object:

I use:

git init --bare $HOME/.myconf
alias config='/usr/bin/git --git-dir=$HOME/.myconf/ --work-tree=$HOME'
config config status.showUntrackedFiles no

where my ~/.myconf directory is a git bare repository. Then any file within the home folder can be versioned with normal commands like:

config status

config add .vimrc