A principal-engineer-grade repository audit, tuned for Claude's latest models running inside Claude Code.
It maps the repo, fans out parallel subagents (one per audit dimension, plus git-history mining for churn × complexity hotspots), adversarially verifies every Critical/High finding against the actual code before reporting it, runs the repo's own lint/type-check/test commands instead of guessing at health, and writes a single AUDIT.md containing:
- Executive Summary — health grade A–F, top 3 risks, top 3 opportunities
- Repo Map
- Severity-rated findings (file:line cited, facts separated from judgments)
- Improvement strategy — the 3–5 themes behind the findings, with measurable "done" signals
| name | deslop |
|---|---|
| description | Run a multi-agent review-readiness pass on a nearly finished change before commit; fan out parallel review agents across rule conformance, type safety, and overengineering, then synthesize and apply the worthwhile fixes. |
Use this skill after the change is functionally correct and before commit. The PR should be describing already-deslopped code, not code that still needs cleanup.
Render markdown files as beautifully styled HTML in your browser — using pandoc with a custom Typewriter dark theme (inspired by the Obsidian Typewriter theme).
Warm sepia palette · Clean typography · JetBrains Mono code · No animations
| Feature | Details |
|---|
| #!/usr/bin/env bash | |
| # oc-cleanup — Find and kill orphaned opencode processes (no TTY) | |
| # Usage: | |
| # oc-cleanup → list orphans only (dry run) | |
| # oc-cleanup kill → kill them all | |
| # oc-cleanup watch → show live opencode resource usage | |
| # oc-cleanup guard → continuous watchdog (default: 1024MB threshold, 60s interval) | |
| # oc-cleanup guard 512 → custom RAM threshold in MB | |
| # oc-cleanup guard 512 30 → custom threshold + check interval in seconds |
| #!/bin/bash | |
| # Free Download Manager Installer for Fedora | |
| # Extracts .deb directly (avoids alien dependency issues) | |
| set -e | |
| FDM_URL="https://files2.freedownloadmanager.org/6/latest/freedownloadmanager.deb" | |
| WORK_DIR=$(mktemp -d) | |
| cd "$WORK_DIR" |
These rules define how an AI coding agent should plan, execute, verify, communicate, and recover when working in a real codebase. Optimize for correctness, minimalism, and developer experience.
- Correctness over cleverness: Prefer boring, readable solutions that are easy to maintain.
- Smallest change that works: Minimize blast radius; don't refactor adjacent code unless it meaningfully reduces risk or complexity.