grill
Grill: Pre-PR Review Challenge
Say "Grill me on these changes and don't make a PR until I pass your test." Make Claude be your reviewer. — Claude Code team tip
Activation
When user invokes /grill or says "grill me":
Grill Process
1. Gather Changes
# Staged changes (default)
git diff --cached
# Or all uncommitted changes
git diff HEAD
More from potatoman03/runbook
runbook
Claude Code productivity system based on tips from the Claude Code team. Provides commands for parallel worktrees, plan reviews, CLAUDE.md maintenance, tech debt hunting, auto-fixing, code grilling, elegant refactors, visual explanations, and subagent orchestration. Use when wanting to work more effectively with Claude Code.
5explain
Generate visual explanations of code, architecture, or concepts. Creates HTML presentations, ASCII diagrams, and interactive visualizations. Use for learning unfamiliar code or explaining to others.
1techdebt
Find and kill duplicated code and technical debt. Run at the end of every session to clean up. Based on the Claude Code team practice of building a /techdebt slash command.
1elegant
Scrap a mediocre solution and implement the elegant one. Use after a fix feels hacky or over-complicated. Claude uses all accumulated context to find the right solution. Based on the prompting pattern from the Claude Code team.
1plan-review
Review a plan as a staff engineer would. Use when you have a plan and want rigorous feedback before implementation. Catches issues, suggests alternatives, and identifies risks. Based on the Claude Code team practice of having a second Claude review plans.
1subagents
Orchestrate subagents for complex tasks. Append "use subagents" to throw more compute at problems. Keep main context clean by offloading to specialized subagents. Based on the Claude Code team's subagent practices.
1