Skip to content

Instantly share code, notes, and snippets.

@cschuman
cschuman / rigor-skill.md
Created April 15, 2026 12:20
Multi-agent code audit skill for Claude Code — dispatches four parallel specialists (performance, database, duplication, over-engineering) with strict lane separation, then cross-corroborates findings into a severity-ranked report.
name rigor
description Run a rigorous multi-agent comprehensive code audit across four axes (runtime performance, database query quality, duplication/dead code, over-engineering) by dispatching four parallel specialist subagents with strict lane separation, then cross-corroborating findings into a severity-ranked report. Use this skill when the user asks for a comprehensive audit, rigorous review, performance audit, code quality sweep, dead code hunt, or wants to sniff out redundant/duplicative/performative code. Produces an AUDIT-YYYY-MM-DD.md artifact at the project root.

Rigor — Multi-Agent Comprehensive Code Audit

Dispatch four parallel specialist agents to audit a codebase across four orthogonal axes, cross-corroborate their findings, and produce a single severity-ranked report written to <project-root>/AUDIT-<YYYY-MM-DD>.md.

The value comes from three things in combination:

# go away
User-agent: *
Disallow: /
@cschuman
cschuman / mysql-new-user-db
Created April 2, 2015 14:56
MySql New User and Database
mysql -u root mysql -p
CREATE DATABASE ideside;
CREATE USER 'ideuser'@'localhost' IDENTIFIED BY 'yourpassword';
GRANT ALL PRIVILEGES ON ideside.* TO 'ideuser'@'localhost';
FLUSH PRIVILEGES;
@cschuman
cschuman / wordpress_install.sh
Last active August 29, 2015 14:09
Bash script for installing Wordpress on Ubuntu
#!/bin/bash
#
# Install WordPress on a Ubuntu 13+ VPS
#
# run as root
if [[ $UID != 0 ]]; then
echo "Please run this script with sudo:"
echo "sudo $0 $*"
exit 1