agentsclimarketplace

Production bar

Skill TargiX/agent-skills/skills/production-bar

Honest production-readiness check of a feature or system against top-tier production patterns. Outputs ONE overall production score N/10 (distance to peer-grade), per-axis scores, and a separate fix-importance 1–10 on every gap. Use when the user asks if something is production-grade, matches best-in-class, is "на курам на смех", wants a production bar, tier check, importance ranking of remaining work, or comparison to Stripe/Linear/Vercel/Netflix-class implementations.From its SKILL.md

Install
npx -y skills add TargiX/agent-skills --skill production-bar

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

  • 29 days oldThe repository was created 29 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 0 stars0 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 file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

7.4 KB, ~1.7k tokens by cl100k_base, as published. Nobody here has run it

Production Bar

Judge the named feature/system against best-in-class production, not against "works on my machine" or this repo's average. Be blunt. Flattery is a failure mode.

Leading words: production bar, peer set, production score, gap, fix-importance.

Two scales — never conflate them

This skill uses two different 1–10 numbers. They measure different things and both are mandatory in the report:

ScaleQuestion it answersWhere it appears
Production score N/10"How close is this to top-tier production?" 10 = peer-grade, 1 = toy.One overall score in the Verdict, one per axis.
Fix-importance N/10"How much does closing this specific gap matter for respected production?"On every listed gap (and every win).

A feature can be 4/10 overall while its biggest gap is only fix-importance 6 (many medium gaps), or 8/10 overall with one fix-importance 9 gap (one ship-blocker away from great). The overall score is a judgment of the whole, not an average of importances and not the importance of the top gap. If you output only one of the two scales, the report is wrong.

For an already-at-the-bar win, fix-importance means the production importance of retaining that capability. Keep the label unchanged so the report schema remains stable.

Process

1. Pin the subject

Identify exactly what is under review (feature, flow, subsystem). If unclear, ask once. Prefer reading the code over asking.

State the evidence boundary under Subject using the stable label **Evidence boundary:**: name the entrypoints/files inspected, runtime evidence observed, and any evidence that was unavailable. Distinguish absent from not verified.

If neither implementation nor runtime evidence is available, do not invent a score from plans or claims. Output only this blocker shape and stop:

## Evidence blocker
- **Subject:** …
- **Missing:** …
- **Needed:** …

Done when: subject, entrypoints, and evidence boundary are named.

2. Pick the peer set

Choose 2–4 real top players in this domain (e.g. billing → Stripe; realtime collab → Figma/Linear; feed ranking → TikTok/Netflix; DX → Vercel). Name them. Do not invent a vague "industry best practice" fog — name peers and what they are known for on this axis.

Compare against publicly documented or observable product behavior. Do not claim knowledge of a peer's private implementation.

Done when: peer set is listed with one line each on why they set the bar here.

3. Legwork

Read the actual implementation, tests, configs, and failure paths. Score only what exists in the tree (and observed runtime if evidence is present). No credit for intended-but-unbuilt work.

Check these axes (skip only if truly N/A, and say so):

AxisProduction bar means
CorrectnessEdge cases, invariants, idempotency, concurrency
Algorithms / dataRight structure/complexity for the load; not accidental O(n²)
Failure modesTimeouts, retries, partial failure, poison inputs, rollback
ObservabilitySignals that catch real breakage (not vanity logs)
UX / API shapeClear contract; no footguns; matches how top products feel
Security / tenancyAuthz boundaries, injection, secret handling where relevant
OperabilityDeploy, migrate, kill-switch, backfill, cost under load
TestsProtect the real risks; not theater coverage

Done when: every non-N/A axis has evidence cited (file/symbol, observed runtime, "absent", or "not verified").

4. Score

Production score — assign one overall N/10 and one N/10 per axis (or n/a):

ScoreTierMeaning
9–10top-tierWould not embarrass the peer set on the core path
7–8solidProduction-credible; clear gaps vs peers, none fatal
4–6juniorShips, but patterns/algorithms/ops lag serious production
1–3toyDemo / happy-path; would fail under real load, abuse, or ops

Use domain-weighted judgment, not an arithmetic average. Identify which axes gate the subject's core promise. Any unresolved fix-importance 9–10 gap caps the overall production score at 6/10 because such a gap is, by definition, a ship-blocker or trust-killer.

Fix-importance — for every gap (and every "already at the bar" win worth calling out), assign 1–10: how much this matters for a normal, respected production system in this domain — not for a research demo, not for perfectionism:

ScoreMeaning
9–10Without this, you are not serious production. Ship-blocker / trust-killer.
7–8Expected of any respected production; gap is visibly amateur under real use.
5–6Solid teams have this; absence is noticeable but survivable short-term.
3–4Nice polish / peer-grade nicety; deferrable if the core path holds.
1–2Prestige / gold-plating relative to the current stage.

Rules:

  • Default skeptical. "Looks fine" is not a finding.
  • Separately call out what is already peer-grade — honesty cuts both ways.
  • If the product stage is early, still use the same scores; add one line on acceptable for stage vs bar, never inflate the score or deflate importance for comfort.
  • Fix-importance is about respected production, not about how hard the fix is. Hard ≠ important; easy ≠ unimportant.
  • Sort Below the bar by fix-importance descending.

Done when: overall + per-axis production scores are set, and every listed item has a fix-importance score.

5. Report

Output exactly this shape:

## Subject
…
**Evidence boundary:** inspected …; runtime …; unavailable …

## Peer set
- …

## Production score: N/10 (<tier>)
One blunt paragraph: why this score, not one point higher.

| Axis | Score |
|------|-------|
| Correctness | N/10 |
| … | … or n/a |

## Already at the bar
- **[fix-importance N/10]** …
Or: none

## Below the bar
- **[fix-importance N/10] [axis]** … — evidence → what peers do instead

## Must-fix for respectable production
- **[fix-importance N/10] [axis]** …
Include every gap with fix-importance ≥ 7, ordered high → low. If none, say "none — already at respectable bar."

## Smallest gap to +1 point
3 or fewer concrete moves that would raise the overall production score by one point (prefer highest-importance gaps). No roadmap theater.

Example line, to make the two scales unmistakable:

[fix-importance 8/10] [Failure modes] Webhook handler has no retry/idempotency — server/api/payments/webhook.post.ts processes once, drops on 500 → Stripe-class systems dedupe by event id and retry with backoff.

Do not soften the verdict in a closing pep talk. Stop after the report unless the user asks to fix the gaps.

What ships with it: 1 file

239 B alongside SKILL.md

agents/

Keep looking

Skills are one crate of 326,144. 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.