focused-fix
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
/cs:grill-me <path-to-plan> — Start a relentless interrogation of a plan or design. Walks decision tree one branch at a time. One question per turn with recommended answer. Explores codebase before asking.
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/cs-grill-meContext preview
What this command does when you run it.
/cs:grill-me <path-to-plan> — Start a relentless interrogation of a plan or design. Walks decision tree one branch at a time. One question per turn with recommended answer. Explores codebase before asking.
name: "cs-grill-me" description: "/cs:grill-me <path-to-plan> — Start a relentless interrogation of a plan or design. Walks decision tree one branch at a time. One question per turn with recommended answer. Explores codebase before asking."
**Command:** `/cs:grill-me <path-to-plan>`
The grill-master persona interrogates a plan one decision branch at a time.
1. **Intent:** "Why X and not Y?" (names the alternative) 2. **Choice:** "Which side, and what's the deciding constraint?" 3. **Open:** "What's blocking this decision, and when does the blocker resolve?" 4. **Tradeoff:** "Which side are you optimizing for, and what's the kill criterion?" 5. **Dependency:** "Is the upstream decision locked in? If not, that comes first." 6. **Uncertainty:** "Even at 60% confidence — what's your best guess?"
# 1. Extract decision branches from the plan python ../skills/grill-me/scripts/decision_tree_extractor.py path/to/plan.md # 2. Generate forcing questions with recommendations python ../skills/grill-me/scripts/question_generator.py path/to/plan.md # 3. Start session python ../skills/grill-me/scripts/grill_session_tracker.py --action start --session NAME --plan path/to/plan.md # 4. Walk one question at a time: # Persona asks Q1 with recommendation. # User answers. # Record: python ../skills/grill-me/scripts/grill_session_tracker.py --action record --session NAME --question-id 1 --answer "..." # 5. When complete: python ../skills/grill-me/scripts/grill_session_tracker.py --action close --session NAME
Produce a "decisions locked" summary at close.
Q[i]/[total] (L[line]): [question] Recommended: [position] because [1-sentence rationale] (or: I explored — found [evidence]. Confirm?)
---
**Version:** 1.0.0 **Derived:** Matt Pocock's grill-me (MIT) + this repo's wrapper
388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
Clean up merged branches locally and on remote, keeping only main, dev, and gh-pages.
Stage, commit, and push the current branch following git governance rules.
Comprehensive audit pipeline for skills, plugins, agents, and commands. Validates structure, quality, security, marketplace compliance, cross-platform…