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-with-docs <path-to-plan> — Start a docs-anchored grilling session. Pre-flights CONTEXT.md + docs/adr/ linters, then interrogates the plan one decision at a time, updating glossary + writing ADRs inline as they crystallise.
$ 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-with-docsContext preview
What this command does when you run it.
/cs:grill-with-docs <path-to-plan> — Start a docs-anchored grilling session. Pre-flights CONTEXT.md + docs/adr/ linters, then interrogates the plan one decision at a time, updating glossary + writing ADRs inline as they crystallise.
name: "cs-grill-with-docs" description: "/cs:grill-with-docs <path-to-plan> — Start a docs-anchored grilling session. Pre-flights CONTEXT.md + docs/adr/ linters, then interrogates the plan one decision at a time, updating glossary + writing ADRs inline as they crystallise."
**Command:** `/cs:grill-with-docs <path-to-plan>`
The `cs-grill-with-docs` persona pre-flights the project's documented language and decisions, then walks the plan one branch at a time — challenging fuzzy terms against `CONTEXT.md`, surfacing code-vs-glossary contradictions, and writing ADRs only when the 3-criteria gate is met.
1. **Glossary conflict:** "CONTEXT.md defines '{term}' as X. You just used it to mean Y. Which is it — or are these two concepts?" 2. **ADR contradiction:** "ADR-{nnnn} locked in {choice}. Your plan implies {opposite}. Are we superseding, or did the plan drift?" 3. **Undefined term:** "You said '{term}'. CONTEXT.md doesn't define it. Do you mean {candidate-1}, {candidate-2}, or something new?" 4. **Code vs claim:** "Your code says X. You just said Y. Which is current state — and which are we changing?" 5. **ADR 3-criteria gate:** "This decision is reversible in an afternoon. Why does it need an ADR? If 'it doesn't' — skip it." 6. **Boundary check:** "Which bounded context owns this concept? If two contexts both touch it, what's the contract between them?"
# 1. Pre-flight — snapshot the docs state python ../skills/grill-with-docs/scripts/context_md_linter.py CONTEXT.md python ../skills/grill-with-docs/scripts/adr_scanner.py docs/adr/ python ../skills/grill-with-docs/scripts/glossary_code_consistency.py \ --context CONTEXT.md --code src/ # 2. Read the plan # Use the linter findings as opening question seeds. # 3. Walk one question at a time: # Persona asks Q1 with recommendation (anchored to docs/code). # User answers. # Apply edits inline if the answer changes the glossary or warrants an ADR. # 4. Re-lint after any structural CONTEXT.md edit: python ../skills/grill-with-docs/scripts/context_md_linter.py CONTEXT.md # 5. Re-scan after any new ADR: python ../skills/grill-with-docs/scripts/adr_scanner.py docs/adr/ # 6. At close — final consistency sweep: python ../skills/grill-with-docs/scripts/glossary_code_consistency.py \ --context CONTEXT.md --code src/
Produce a "glossary changes + ADRs + open items" summary at close.
Q[i]/[total] (anchor: CONTEXT.md§Language | ADR-0003 | code:src/orders/cancel.ts:42 | plan:L18): [question] Recommended: [position] because [rationale grounded in the anchor]
---
**Version:** 1.0.0 **Derived:** Matt Pocock's grill-with-docs (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…