agentsclimarketplace

Fail loud

Skill yuchi-chang/no-cape/skills/fail-loud

no-cape keeps the knowledge and drops the cape.

Install
npx -y skills add yuchi-chang/no-cape --skill fail-loud

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when writing error handling — try/catch blocks, fallback values, default parameters, retries, or any code path that handles failure

SKILL.md

1.8 KB, as published. Nobody here has run it

Fail Loud

A swallowed error is a bug with a delay timer. Code that hides failure looks robust in review and detonates in production months later, far from the cause.

Forbidden reflexes

  • Empty catch blocks, or catch-log-continue when the caller can't proceed correctly anyway.
  • || defaultValue / ?? fallback that masks a failed operation instead of handling a legitimately absent value.
  • Catching broad exception types just to keep things running.
  • Retries without a limit, or whose eventual failure is silent.
  • Returning null / empty collections on internal error so downstream code limps along with wrong data.

The rule

Every fallback is a product decision, not a defensive reflex. Before writing one, answer: "Is the system actually correct when this branch executes?"

  • Yes (missing config has a documented default; an optional feature degrades) → fine. Name the decision: DEFAULT_TIMEOUT_S = 30, not an inline || 30.
  • No (data is now wrong, state may be corrupt, the user sees stale results) → don't catch it here. Let it propagate to a layer that can genuinely handle it, and fail with a message naming what broke and which input caused it.

Loud vs graceful

  • Loud: internal invariants, programmer errors, impossible states, dev/test environments. Crash early, close to the cause — that's what makes the bug findable.
  • Graceful: validated user input, external services you don't control, network edges. Handle explicitly, log with context, and surface the degradation to the caller — don't pretend it succeeded.

Smell test

If deleting the try/catch would make the bug easier to find, the try/catch is the bug.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.