focused-fix
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
/cs:dl-diagnose — Diagnose a training run against Chapter 11's decision tree: read training error before deciding anything, and never diagnose a NaN as overfitting. Returns a ranked cause, the specific next action, and the chapter that justifies it.
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/cs-dl-diagnoseContext preview
What this command does when you run it.
/cs:dl-diagnose — Diagnose a training run against Chapter 11's decision tree: read training error before deciding anything, and never diagnose a NaN as overfitting. Returns a ranked cause, the specific next action, and the chapter that justifies it.
name: "cs-dl-diagnose" description: "/cs:dl-diagnose — Diagnose a training run against Chapter 11's decision tree: read training error before deciding anything, and never diagnose a NaN as overfitting. Returns a ranked cause, the specific next action, and the chapter that justifies it." argument-hint: "[what the run is doing — losses, gradient norm, or a description]"
**Command:** `/cs:dl-diagnose [symptoms]`
Chapter 11's rule, which most teams have backwards: **read training error first.** High training error means the model or the optimizer is the bottleneck, and more data cannot help.
1. **Collect the instruments.** Ask for what is missing, in this order:
(without it, underfitting cannot be distinguished from convergence)
a bug from a hard problem) 2. **Run the tool:**
python3 engineering/deep-learning-book/skills/deep-learning-book/scripts/training_diagnostics.py \
--train-loss <x> --val-loss <y> --target-loss <z> --grad-norm <g> \
--tiny-subset-fits yes|no|unknownExit 4 means not enough instruments — ask for one of the named measurements rather than guessing. 3. **Act on finding [1] first.** Rules fire in priority order for a reason: a non-finite loss is a numerics failure, not a modelling one, and a model that cannot overfit 20 examples has a bug that no hyperparameter will fix. 4. **On an OVERFIT verdict**, follow up with the capacity planner, which ranks the regularization ladder and applies the double-descent correction:
python3 .../capacity_planner.py --params <n> --train-examples <m> \
--train-error <x> --val-error <y> --applied early-stopping5. **On a memory or throughput question**, run `model_arithmetic.py --spec <file>` — it reports parameters, FLOPs and activation memory per example, and refuses a stack whose shapes do not connect. 6. **Close with the discipline, not just the fix:** change one thing per experiment, log it, re-measure the gap.
`skills/deep-learning-book/references/book_to_2026_delta.md`.
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…