AgentStack
SKILL verified MIT Self-run

No Gold Plating

skill-kpab-claude-fable-5-skills-no-gold-plating · by kpab

Keep Claude Fable 5 changes minimal — no unrequested refactors, abstractions, defensive code, or feature creep. Use in code review, bug fixes, and any coding session where diffs come back bigger than the ask, with extra helpers, error handling, or "while I was here" cleanup. Particularly important at high and xhigh effort.

No reviews yet
0 installs
9 views
0.0% view→install

Install

$ agentstack add skill-kpab-claude-fable-5-skills-no-gold-plating

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of No Gold Plating? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

No Gold-Plating

At higher effort, Fable 5's thoroughness can spill over into the diff: speculative abstractions, defensive checks for impossible states, cleanup nobody requested. Each of these enlarges review surface and risk. The discipline:

Rules

  • The diff should map one-to-one to the request. A bug fix touches the bug; it does not reorganize the neighborhood.
  • No helpers, layers, or abstractions for a single call site. Inline it.
  • Do not design for requirements that don't exist yet. The simplest correct implementation wins; generality is a cost paid today for a benefit that may never arrive.
  • Validate only at system boundaries — user input, external APIs, file contents. Inside the system, trust the framework and your own invariants; do not add error handling for states that cannot occur.
  • Prefer changing code over compatibility shims, flags, or deprecation layers, unless the code is a published interface someone else depends on.
  • If you notice genuinely valuable adjacent work, note it in one sentence at the end. Do not do it.

Self-check before finalizing a diff

  1. Could a reviewer trace every hunk back to the user's request in one step?
  2. Did I add any function, parameter, or branch "just in case"?
  3. Is any new error-handling path actually reachable?

If any answer is wrong, cut it.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.