Fix It Never Work Around It
Halts on a failing command and fixes the root cause instead of bypassing it
Otestováno · Funguje
Co umí
A behavioural guardrail that makes Claude stop when a build, script, test runner, or tool exits non-zero, diagnose the root cause, and re-run the original command until it succeeds instead of substituting a different tool or a manual step. It lists the phrases that signal a bypass ("directly", "instead", "skip", "manually", "fall back") and a five-item checklist to clear before resuming the interrupted task. Triggers on unexpected process failures and on workaround language in your own or the user's phrasing; it explicitly exempts expected failures such as the TDD red phase.
Testovací report
GitHub API was rate-limited, so I cloned the repo; SKILL.md parsed cleanly with name+description+version, references zero external files or scripts, and grep found no curl|sh, base64 blobs, or injection text. I installed it into a throwaway HOME=$(mktemp -d) and confirmed SKILL.md landed at ~/.claude/skills/fix-it-never-work-around-it/SKILL.md. For output I built two copies of a Node project whose ./build.sh crashes with "ReferenceError: collapse is not defined" in tools/minify.js, then ran the same task (add subtract(), build, report bundle size) in each: the baseline copy answered "214 bytes" from a hand-rolled `cat src/calc.js src/format.js > dist/bundle.js` and left ./build.sh still exiting 1, while the skill-followed copy stopped, implemented the missing collapse() function, and re-ran the original command to exit 0 with "built dist/bundle.js (216 bytes)". Artifacts are at scratchpad/BASELINE.md and scratchpad/SKILL_RUN.md. Docs lose a point because the repo README's "Available Skills" list omits this skill entirely and marketplace.json does not ship it as a plugin; also note the description's bare keyword list ("instead", "directly", "manually") risks loading on ordinary prompts that involve no failure.
Testováno: 2026-07-21 · Claude Code 2.x (agent harness)
Instalace
git clone --depth 1 https://github.com/NTCoding/claude-skillz.git /tmp/fix-it-never-work-around-it-src mkdir -p ~/.claude/skills cp -R /tmp/fix-it-never-work-around-it-src/fix-it-never-work-around-it ~/.claude/skills/fix-it-never-work-around-it # Single self-contained SKILL.md (3.4 KB), no scripts, no dependencies, no API keys. # Not published as a plugin: the repo's .claude-plugin/marketplace.json does not list # this directory, so `/plugin install` will not find it — the copy above is the way. # Pairs naturally with tdd-process / observability-first-debugging from the same repo.
Příkazy a ukázkové prompty
/fix-it-never-work-around-itHalts on a failing command and fixes the root cause instead of bypassing it
Skilly se spouštějí běžnými požadavky — žádné příkazy k zapamatování. Po instalaci ho aktivují prompty jako tyto (anglicky):
This build is broken, fix it properlyDon't skip the failing test, fix the causeThe script isn't working, find the real bug