agentsclimarketplace

Skill quality

Skill adhi-jp/agent-skills/skills/skill-quality

Agent skills and eval prompts for vibe-coding plans, review loops, commit messages, prose, and Minecraft modding.

Install
npx -y skills add adhi-jp/agent-skills --skill skill-quality

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

One thing to look at

  • 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 author says it does

Copied from the file, not written here

Use when making evidence-driven quality decisions for a skill package or its evals from benchmark results, grader feedback, review comments, session-history patterns, trigger failures, or quality regressions; especially when deciding what to change, what not to change, how to update assertions, or whether to rerun skill evals.

SKILL.md

23.6 KB, as published. Nobody here has run it

Skill Quality

Overview

Improve skills by translating observed failures into small, testable contract changes. A good skill change explains when the behavior applies, what future agents must do, how evals will catch regressions, and what evidence proves the change helped.

This skill governs skill and eval quality decisions. It does not authorize release preparation, version bumps, commits, generated workspace commits, or unrelated package rewrites.

Evidence Intake

Start from the failure signal, not from a preferred rewrite. Collect only the evidence needed for the current decision:

  • Eval results, benchmark.json, benchmark.md, grader output, and human feedback.
  • Relevant SKILL.md, references, scripts, README text, CHANGELOG.md, and eval definitions.
  • Session-history excerpts when the user asks for history research or repeated failures are only visible in transcripts.
  • Local plans or changelog entries that explain why current behavior exists.

Label implementation-affecting claims as Primary source, Local investigation, Unproven, or Accepted risk. Do not treat old session memory, a plausible fix, a single passing run, or a reviewer preference as proof. If the evidence shows no contract gap, do not polish by default. Report that no tracked change is needed and name the evidence that supports that decision.

For any proposal that creates or changes a skill or eval, include a short evidence map before the contract delta. Label the claims that justify the current proposal, not only instructions for future subagents or graders. Typical entries are: user request or supplied eval result as Primary source; local transcript, file, or benchmark inspection as Local investigation; inferred patterns or expected failure modes as Unproven; and known but accepted gaps as Accepted risk.

When an eval result arrives as a relayed Claude Code, Codex, or other host-agent summary, treat that prose as a pointer to verify, not as execution proof. Locate the corresponding benchmark.json, benchmark.md, iteration_manifest.json, run.json, grading.json, recorded outputs, or transcript evidence before making root-cause, improvement, or changelog claims. If those artifacts are unavailable, label the host summary as user-supplied evidence for the report only and keep artifact-dependent claims Unproven or Accepted risk.

When session history is part of the task, split extraction work across subagents when available. Give each agent a bounded session range or question, have it write temporary per-session notes under /tmp, and synthesize the patterns yourself before editing tracked files.

When delegated review, extraction, or benchmark analysis may affect a tracked skill/eval decision, pass a compact quality lens to the delegate instead of assuming this skill context transfers. Name the delegated mode, such as contract review, eval hardening, benchmark triage, or history extraction; ask for evidence, inferred risks, unsupported claims, what should not change, and, for eval work, expected-output leakage, common assertion applicability, and baseline plausibility. Do not require the full skill for narrow lookups.

For session-history audits, count actual skill use only when the record shows a user trigger, assistant declaration, skill-body read tied to a substantive decision, or decision behavior in a substantive task. Separate current audit sessions, eval-runner sandbox sessions, search-command echoes, quoted skill bodies, session metadata, and reference-only file reads from historical usage evidence.

Before counting a session-history candidate as evidence, build a turn-level inclusion ledger. For each candidate, record the session path, turn identifier or boundary evidence, skill trigger/read/decision evidence, tracked patch evidence, verification evidence or explicit verification absence, classification, and any exclusion or low-confidence reason. Treat one user request plus its directly associated assistant/tool/edit/verification sequence before the next unrelated user request as the same turn. If the log cannot support that boundary, or if skill-quality use, patches, and verification only co-occur in different turns of the same JSONL file, mark the candidate low-confidence or excluded instead of counting it.

When the audit is counting skill/eval edit sessions, a same-turn no-change decision may be recorded separately as actual skill use, but it is not edit evidence unless the same turn also has a tracked patch or an explicit post-edit verification absence.

Planning or requirements-spec workflows remain primary when they are creating plans or specs. Use this skill only as an auxiliary lens when that work turns failures, session-history patterns, review comments, or benchmark evidence into future skill behavior, acceptance criteria, eval discrimination, or benchmark-proof requirements. Eval tooling work is relevant only when it affects prompt delivery, grading fidelity, baseline compatibility, metric provenance, artifact completeness, or report claims.

Before treating a surprising, repeated, tool-related, artifact-related, or transcript-contradicted eval failure as a skill defect, classify the failure surface: skill contract gap, eval assertion gap, measurement or recording gap, prompt or invocation mismatch, grader-boundary issue, or run variance/noise. If the classification points outside the skill contract, fix or record that boundary instead of tightening skill prose.

Failure To Contract

Before changing skill text or eval behavior, write a one-sentence contract delta:

When <trigger/context>, the skill should <observable behavior>, because <stable reason>, and it must not <known degeneration>.

Use that sentence to decide which files change. If the failure cannot be stated as an observable contract, keep investigating instead of adding prose.

Good contract deltas name the abstract dimension behind the example:

  • current-slice blocker instead of one display-name fixture.
  • artifact freshness instead of one missing image path.
  • benchmark completeness instead of one fake Config B row.
  • local-anchor preservation from one phrase such as header handoff, while preserving the concrete anchor as evidence when useful.

After naming the abstract dimension, choose the owning artifact before adding standing SKILL.md guidance.

Change Selection

Make the smallest coupled change that closes the contract gap:

  • SKILL.md: trigger-independent behavior rules, scope boundaries, stop gates, and short decision rules.
  • references/: heavy guidance, detailed checklists, domain variants, or reusable research that would bloat SKILL.md.
  • scripts/: deterministic repeated work that agents keep rebuilding during eval runs.
  • Structured outputs or pre-edit gates: contracts that must be enforced before a caller can proceed. Prefer these over doc-only promises when past failures show agents skipped the rule.
  • evals/<skill-name>/evals.json: pressure cases and expectations that prove the new contract and guard old behavior.
  • README.md and CHANGELOG.md: only when the changed behavior is described there or user-visible for this repository.

A fixture, anecdote, or local case mapped to a reusable dimension still needs artifact placement. Put broad trigger-independent obligations in SKILL.md; put heavier reusable guidance in references/ with explicit applicability; keep narrow pressure cases in evals or local notes; and touch README or changelog only when they own or describe the behavior.

When editing skill text, preserve modality, exceptions, exact paths, commands, field names, local anchors, and absence statuses. Shorten only when the shorter text keeps the same applicability, obligation, proof path, and failure behavior.

Do not bump version fields unless the user explicitly asked for release preparation. Record unreleased behavior under CHANGELOG.md ## [Unreleased]. Keep frontmatter descriptions focused on trigger conditions. Do not summarize a workflow there; agents may follow the metadata instead of loading the skill body.

Eval Design

Update evals in the same change set as behavior changes. Evals should be discriminating, observable, and hard to pass with the old failure mode.

  • Prefer per-eval expectations for narrow behavior. Add a common assertion only when it is valid for every eval, including exact-format and verbatim-output cases.
  • Before adding, changing, or keeping a common assertion, check the eval classes it will govern, including activation-only, exact-format, localized, verbatim, narrow-boundary, and no-change cases. Move scenario-specific stop gates or narrow behavior into per-eval expectations.
  • Write expectations against visible output, files, commands, records, or decisions, not against style taste.
  • If the eval runner shows expected_output or an expected-output summary to the executor, keep that summary high-level: describe the evidence shape and output category, not the target decision or named contract. Put discriminating answer details only in grader-only assertions, fixtures, or hidden grader material so the baseline is not handed the target behavior.
  • Apply that leakage discipline to your own contract delta and self-authored assertions, not only to delegated eval work: a SKILL.md line or self-authored assertion must not copy a grader assertion's wording or a literal prompt phrase verbatim. Name the abstract dimension (Failure To Contract) and keep the concrete phrase only as a labeled example.
  • Include negative pressure for the degeneration that motivated the change: global skill lists, fake baselines, universal checklists, weak proof substitutes, unsupported claims, stale assumptions, or overfit fixture names.
  • Keep baselines meaningful. A 100 percent pass rate for both with_skill and without_skill usually means the assertion is not discriminating.
  • Do not hide grader ambiguity by loosening expectations. Clarify the assertion or add a programmatic check when the property is mechanical. When you relax or delete an assertion or a both-config-pass eval to clear a failure, record the discrimination lost and add a compensating assertion or an explicit Accepted risk.
  • If an eval expectation encodes an unsupported product fact, correct the eval instead of teaching the skill to invent that fact.

External eval prompts stay under evals/<skill-name>/; generated run output stays under evals/<skill-name>/workspace/<agent>/ and is not committed unless the user explicitly asks.

Running And Reading Evals

For this repository, use the shared runner:

python3 skills/skill-eval/scripts/eval_runner.py validate evals/<skill-name>/evals.json
python3 skills/skill-eval/scripts/eval_runner.py run evals/<skill-name>/evals.json --agent codex --config with_skill,without_skill --runs 1
python3 skills/skill-eval/scripts/eval_runner.py report evals/<skill-name>/workspace/codex/iteration-N

Keep eval workflows provider-neutral and file-contract based. Do not make the shared runner depend on local-only skill snapshots, one host's UI, or Claude-Code-only paths. For this repository's with_skill runs, use the authoritative source skill package directly; do not substitute an installed host skill tool, .agents/skills snapshot, .claude/skills link, or cached skill copy.

run drives execution, grading, aggregation, and reporting end to end. It spawns fresh executor subprocesses with the prompt only, then fresh grader subprocesses with the recorded output plus assertions. No agent hand-runs prompts, hand-records outputs, injects token counts, or grades its own output. run writes iteration_manifest.json and, per run, prompt.md, grader_prompt.md, outputs/, grading.json, metrics.json, and run.json, plus benchmark.json and benchmark.md at the iteration root.

report <iteration-dir> only re-renders benchmark.md from benchmark.json; it must not start a server, open a browser, bind a port, write a PID file, or leave a background process.

Treat missing metrics, missing grades, missing configs, failed or timed-out executors, grader failures, omitted assertions, or reused legacy artifacts as incomplete proof, not as a pass. Also treat an abnormal aggregate-metric shift between runs — for example mean_tokens collapsing — or executor batching that loses per-eval isolation as a stop-and-verify condition, not a pass.

When cells are excluded or unscored because an executor timed out, classify whether the surface is runner/grader infrastructure, prompt or invocation, runtime-cost/complexity, run variance, or a real skill behavior failure before using the aggregate delta or editing skill prose. If excluded or timeout cells hide targeted behavior, especially asymmetrically in with_skill, report those evals as unmeasured or cost-risk evidence until a complete rerun or separate scored artifact clears them; do not call the run clean or harmless merely because the pass-rate aggregate omits the cells.

Runner artifacts prove what the runner invoked, recorded, graded, and aggregated. When a claim or assertion depends on prompt delivery, host, tool, delegation, file, artifact, metric, timing, or other execution proof, audit the evidence surface and compare the proof requirement with the recorded output set before reading the grade as a skill signal or making root-cause or skill-quality claims. Inspect the recorded invocation, output artifact, metric source, or equivalent non-response evidence. Final-response prose, copied invocation IDs, role labels, and self-reported call counts are not execution proof unless corroborated by recorded host or runner evidence or an equivalent non-response artifact.

If a scored executor output is only a host-continuation stub, waiting message, tool-use placeholder, or other unresolved async artifact, do not silently remove the cell from the official aggregate or call it an infrastructure exclusion. Classify it as a prompt, invocation, recording, or output-set completeness surface, report the official aggregate with that caveat, and fix the eval prompt, runner recording, or proof path before treating the adjusted reading as measured improvement.

When you compute an adjusted aggregate that excludes a scored stub, placeholder, timeout, or other anomalous cell for diagnosis, label it as diagnostic only. Report the official runner aggregate first, list the excluded cell ids/configs and exclusion criterion, and use the adjusted number only to localize unmeasured or contaminated behavior. Do not replace the benchmark's official result, mark the run clean, or use the adjusted reading as proof of improvement until a clean rerun or separately scored artifact measures the same behavior.

Pure graders stay bound to the suite assertions recorded for the run. The change owner treats surprising, repeated, missing, ambiguous, or both-config-passing grades as evidence to interpret before editing skill or eval behavior.

Treat eval execution as a data-boundary decision. Do not send private skill packages, eval prompts, fixtures, outputs, or session excerpts to an external agent or hosted service unless the user or project explicitly authorizes that data movement. Prefer local file-contract workflows when privacy is unclear.

Result Analysis

Compare behavior before declaring improvement:

  • Which failures changed from fail to pass, and which old passes stayed intact?
  • Did the baseline also pass? If yes, the eval may not prove the skill helped.
  • Did a new or targeted eval show any of these? If so, inspect prompt leakage, expected-output summaries, named capability hints, assertion applicability, and whether the eval is regression-only before claiming skill value.
    • a high without_skill pass rate
    • both configs pass
    • a high with_skill rate whose magnitude of help is unreadable because the baseline delta was not measured or read
    • a baseline that improved after an eval edit
  • Did token or time cost increase? Treat deltas as cost signals. Call them regressions only when transcript evidence, run data, or a predefined budget proves the cost is not justified by useful behavior.
  • Were any targeted evals excluded, unscored, or timed out? If yes, read the aggregate as partial and identify which behavior is unmeasured before accepting a headline delta.
  • Did a grader failure expose unclear assertions instead of a skill defect?
  • Did the recorded output set contain the proof the assertion requires, or did the proof live only in host UI, private transcript, or unrecorded tool state?
  • Did the skill overfit to a fixture, phrase, project class, or old session?
  • Did the change create new obligations, dependencies, or workflow authority beyond the user's goal?
  • When converting or deleting an eval case, did you confirm the contract lines the old case guarded are still covered by another eval? Lost coverage is a regression even when every remaining eval passes.

If repeated wording-only contract changes do not move the targeted failure, stop tightening prose. Inspect runner recording, prompt delivery, grader inputs, assertion scope, output-set completeness, and run variance before another skill text edit. When that stop condition becomes tracked behavior, add or propose generic eval coverage for the retry-stop and proof-boundary rule instead of a local-case checklist.

If a similar failure moves to a different eval after each targeted wording fix, treat that as a moving-failure pattern rather than proof that every new cell needs another local sentence. Compare the per-run and cross-run evidence first: which assertions fail, whether the failed dimension changes direction, whether with-skill remains near ceiling, and whether multi-run results show a stable cell or only scattered single-run misses. If repeated runs show low-frequency scatter, classify the surface as run variance, prompt or runner leakage, or measurement boundary and stop editing skill prose. If repeated runs show a stable shared mechanism, choose the broad owner and update that rule or eval pressure once instead of adding per-cell patches.

If a targeted fix makes one eval pass while the same failure mechanism appears in another eval, stop treating the remaining failure as a local wording problem. Classify the shared mechanism, choose its owning artifact, and update the broad rule or eval pressure that owns it before adding another per-eval wording patch. Keep invalid placeholder text out of executable commands, final-answer templates, and other user-copyable guidance; if a placeholder must be discussed as evidence, label it as non-copyable evidence instead of a template.

If adding a missing recorded evidence artifact changes the outcome, describe the prior result as a measurement-boundary correction or proof-path reclassification unless a separate run isolates a skill-contract change as the cause.

If a proof-path or runner-recording change and a skill-contract change land in the same rerun, separate what the artifacts prove from what they cannot isolate. A grader prompt or verdict that directly cites the new recorded evidence can prove the proof path is functioning, but it does not by itself prove how much of the pass-rate change came from the skill text, the runner evidence, grader behavior, or run variance.

When the proof path, recording contract, assertion boundary, or skill text changes, rerun before claiming improvement. Treat single-run headline deltas and unstable baselines as caveats. If single-run results repeatedly show a moving failure or a volatile baseline, use repeated runs or an equivalent separately scored artifact before deciding whether to edit again; report per-run spread and whether the same cell fails consistently. If an action happened but the proof was not recorded, fix or downgrade the proof claim instead of making the agent deny or hide the real action.

Do not claim quality, token, time, reliability, safety, or trigger improvement unless the run data or review evidence proves that exact claim. Writing improved or optimized specifically requires a closing rerun on a clean, complete run — same eval set, per-eval isolation, complete metrics, both configs; without it, label the effect Unproven or Accepted risk rather than a pass.

Degeneration Checks

Before finalizing, reject these common regressions:

  • Broad rewrites that erase known-good contracts to fix one eval.
  • Copying an old skill wholesale instead of recovering the minimal useful rule.
  • Turning examples, fixtures, or session anecdotes into universal requirements.
  • Promoting named pattern sections, domain-specific branches, fixture-derived checklists, or single-example taxonomies into SKILL.md unless multiple independent evidence sources or a user-approved scope make them part of the skill contract.
  • Echoing grader-assertion wording or a literal prompt phrase verbatim into SKILL.md or a self-authored assertion instead of naming the abstract dimension.
  • Pasting universal checklists into every workflow.
  • Requiring a companion skill, model, server, browser, or network path when the skill should be self-contained or provider-neutral.
  • Moving process details into the description field so agents follow metadata instead of reading the body.
  • Weakening proof paths because they are expensive.
  • Continuing wording-only contract tightening after clean reruns leave the targeted failure unchanged.
  • Continuing per-cell wording patches when a failure moves across evals and repeated runs have not shown a stable skill-contract gap.
  • Treating a failure that moves across evals after a targeted fix as a new local wording problem instead of a shared mechanism.
  • Leaving invalid placeholder text in executable or user-copyable examples because nearby prose says to replace it later.
  • Expanding common assertions so exact-format, localized, or verbatim cases become impossible to satisfy.
  • Counting skipped, flaky, unavailable, self-graded, or incomplete evals as proof.
  • Replacing the official runner aggregate with a diagnostic adjusted aggregate that excludes scored anomalous cells.
  • Counting an unrerun or contaminated run — no closing rerun, collapsed aggregate metrics, or lost per-eval isolation — as proof of improvement.

Self-Check

Before reporting completion:

  • Is the failure signal tied to evidence, not guesswork?
  • Did surprising, repeated, tool-related, or artifact-related eval failures get classified by failure surface before skill text changed?
  • Does each execution-proof assertion have recorded host, runner, or equivalent artifact evidence rather than prose-only IDs or counts?
  • Is there a contract delta before changing skill text or eval behavior?
  • Are examples mapped to reusable dimensions?
  • Did each mapped dimension pass the artifact-placement gate before becoming always-visible SKILL.md guidance?
  • Did wording edits preserve modality, exceptions, anchors, and absence statuses?
  • Did the smallest coupled files change, including evals and changelog when required?
  • Are baseline, grader, token, timing, and report claims honest?
  • If any adjusted aggregate excludes anomalous cells, is it labeled diagnostic and kept separate from the official runner result?
  • Are generated workspaces left uncommitted?
  • Did you avoid version bumps unless this is release preparation?

For historical patterns behind these rules, read references/session-patterns.md when the task asks for rationale or when a change feels like it could make the skill larger but not better.

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.