Skip to main content

resilience-wiring-for-load-once-deps

The general retry/backoff/circuit-breaker canon is solved by [[circuit-breakers-and-retries]] — defer to it for jitter formulas, retry budgets, and the breaker state machine. THIS skill is only the load-once-dependency delta: wiring a breaker + backoff around a MEMOIZED lazily-loaded resource (native lib, ML model, connection pool, embedder) so a permanent failure is not cached as a rejected promise and re-awaited every tick. Use when a load-once dep can fail permanently, when you see a getX() memoizing a promise, or when a failing dependency floods logs/disk. Keywords: gated loader, poison-pill promise, memoized rejection, load-once, tryGet, optional enrichment, coalesce in-flight load, dead resilience code. NOT for general retry policy, the breaker math, or request-level retries — that is [[circuit-breakers-and-retries]].

Jump to install

Source facts

Repository
curiositech/port-daddy
Last source activity
July 23, 2026 at 06:28
Detected SKILL.md language
English
Stars
2
Forks
0

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.